From owner-FreeBSD-users-jp@jp.FreeBSD.org Wed Apr 14 20:14:07 2004
Received: (from daemon@localhost)
	by castle.jp.FreeBSD.org (8.11.6p2+3.4W/8.11.3) id i3EBE7138810;
	Wed, 14 Apr 2004 20:14:07 +0900 (JST)
	(envelope-from owner-FreeBSD-users-jp@jp.FreeBSD.org)
Received: from t-mta7.odn.ne.jp (mfep7.odn.ne.jp [143.90.131.185])
	by castle.jp.FreeBSD.org (8.11.6p2+3.4W/8.11.3) with ESMTP/inet id i3EBE7938805
	for <FreeBSD-users-jp@jp.FreeBSD.org>; Wed, 14 Apr 2004 20:14:07 +0900 (JST)
	(envelope-from sugitk@rio.odn.ne.jp)
Received: from localhost ([218.218.53.167]) by t-mta7.odn.ne.jp with ESMTP
          id <20040414111401734.YOBM.515606.t-mta7.odn.ne.jp@mta7.odn.ne.jp>
          for <FreeBSD-users-jp@jp.FreeBSD.org>;
          Wed, 14 Apr 2004 20:14:01 +0900
Message-Id: <20040414.201359.45159208.sugitk@rio.odn.ne.jp>
To: FreeBSD-users-jp@jp.FreeBSD.org
From: SUGIMURA Takashi =?iso-2022-jp?B?GyRCP3lCPBsoQiAbJEI1LjtOGyhC?=
 <sugitk@rio.odn.ne.jp>
In-Reply-To: <20040414155354.BB49.ENDO_T@nifty.com>
References: <20040414155354.BB49.ENDO_T@nifty.com>
X-Mailer: Mew version 4.0.63 on Emacs 21.3.1 / Mule 5.0 (SAKAKI)
Mime-Version: 1.0
Content-Type: Multipart/Mixed;
 boundary="--Next_Part(Wed_Apr_14_20_13_59_2004_030)--"
Content-Transfer-Encoding: 7bit
Reply-To: FreeBSD-users-jp@jp.FreeBSD.org
Precedence: list
Date: Wed, 14 Apr 2004 20:13:59 +0900
X-Sequence: FreeBSD-users-jp 78934
Subject: [FreeBSD-users-jp 78934] Re: =?ISO-2022-JP?B?GyRCJTQlXxsoQg==?=
 =?ISO-2022-JP?B?GyRCJF8kPyQkJEpPQ0JqIUojQyF0JEglKyE8JUobKEI=?=
 =?ISO-2022-JP?B?GyRCJVMhSxsoQg==?=
Sender: owner-FreeBSD-users-jp@jp.FreeBSD.org
X-Originator: sugitk@rio.odn.ne.jp
X-Distribute: distribute version 2.1 (Alpha) patchlevel 24e+040413

----Next_Part(Wed_Apr_14_20_13_59_2004_030)--
Content-Type: Text/Plain; charset=iso-2022-jp
Content-Transfer-Encoding: 7bit

$B$9$.$`$i$G$9!#(B

$B%+!<%J%S$O$o$+$i$J$$$G$9!#(B
$B@NK?;o$K(B SSCLI $B$N5-;v$r=q$$$?$N$r;W$$=P$7$^$9!#(B

> $B$H$3$m$G!"(B
> http://pcweb.mycom.co.jp/news/2001/07/03/14.html
> $B$NOC$O?J$s$G$k$s$G$7$g$&$+!)(B
> 
> $B:G6aA4A3$3$NJU$N>pJs$,L5$$$J$!!#!#!#EXNOITB-$G$9!#(B
> Delphi8 $B$bF~<j$7$?$N$G!"$=$m$=$m(B .Net $B$/$i$$$+$8$m$&$H;W$C$F$k$s(B
> $B$G$9$,!"$=$&$$$($P!"$3$s$JOC$b$"$C$?$J$!!#!#!#$C$F;W$$=P$7$^$7$?!#(B
> $B$b$&!"#3G/A0$K$b$J$k$s$G$9$M!&!&!&!&(B(^^;
> 

C# $B$N<B9T4D6-$H$$$&$3$H$G$O!"(BMono $B$H$$$&$N$b$"$j$^$9!#(B
http://www.go-mono.com/ $B$G$9!#(B

$B0l1~<j85$K%$%s%9%H!<%k$O$7$F$"$j$^$9$,!"(B
Hello World $B0J>e$N$3$H$O$7$F$$$^$;$s!#(B

$BE:IU$9$k$h$&$J4JC1$J%W%m%0%i%`$r<B9T$9$k$K$O(B
$B$3$s$J46$8$G$d$j$^$9!#(B

kei % mcs HelloXML.cs
Compilation succeeded
kei % mono HelloXML.exe
<?xml version="1.0" encoding="utf-16"?>
<msg OS="FreeBSD">Hello world!</msg>

---
$B?yB<(B $B5.;N(B <sugitk@rio.odn.ne.jp>


----Next_Part(Wed_Apr_14_20_13_59_2004_030)--
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: inline; filename="HelloXML.cs"

using System;
using System.IO;
using System.Xml;

class MainApp {
   public static void Main() {

      StringWriter w = new StringWriter();
      XmlTextWriter x = new XmlTextWriter(w);

      x.Formatting = Formatting.Indented;

      x.WriteStartDocument();
      x.WriteStartElement("msg");
      x.WriteStartAttribute("OS", "");
      x.WriteString("FreeBSD");
      x.WriteEndAttribute();
      x.WriteString("Hello world!");
      x.WriteEndElement();
      x.WriteEndDocument();

      x.Flush();

      Console.WriteLine(w.ToString());
   }
}

----Next_Part(Wed_Apr_14_20_13_59_2004_030)----
