Csharp/CSharp Tutorial/I18N Internationalization/Unicode — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 12:14, 26 мая 2010
Create and write a string containing the symbol for Pi
using System;
using System.IO;
using System.Text;
class MainClass
{
public static void Main()
{
using (StreamWriter output = new StreamWriter("output.txt"))
{
string srcString = "Area = \u03A0r^2";
output.WriteLine("Source Text : " + srcString);
}
}
}