Hi all,
I've got simple programm:
using System;
using System.IO;
public class Server
{
public static int Main (string [] args)
{
System.Console.Write( "КУКУКУ\n" );
return 0;
}
}
that code is supposed to output a string "КУКУКУ\n" to console, but it
outputs "ÐУÐУÐУ".
that's wrong with that stuff?
Slava.