static void Main() { Console.WriteLine("Привет!"); HelloMessage v = new HelloMessage(); v.Speak(); }
static void Main() { Console.WriteLine("Hello world"); MessageBox.Show("Hello world"); HelloMessage h = new HelloMessage(); h.Speak(); }
static void Main() { Console.WriteLine("Testing or summat"); /*continuing example * MessageBox.Show("Moooore testing!");*/ HelloMessage h = new HelloMessage(); h.Speak(); }
public static void Main() { // System.Console.WriteLine("Testing! 1, 2, 3"); // Add this! // MessageBox.Show("Hello..."); HelloMessage h = new HelloMessage(); h.Speak(); }
static void Main(string[] args) { Console.WriteLine("testing 1, 2, 3"); /***************************************/ //System.Windows.Forms.MessageBox.Show("Hello..."); HelloMessage h = new HelloMessage(); h.Speak(); }
public static void Main() { Console.WriteLine("Testing! 1, 2, 3"); // Don't need this anymore either. // MessageBox.Show("Hello..."); // Exercise the HelloMessage class! HelloMessage h = new HelloMessage(); h.Speak(); }
static void Main() { Console.WriteLine("Testing! 1, 2, 3"); // Don't need this anymore either. // MessageBox.Show("Hello..."); // Use the HelloMessage class! HelloMessage h = new HelloMessage(); h.Speak(); }
static void Main() { Console.WriteLine("���ԣ� 1, 2, 3"); // ������Ҫ���� // MessageBox.Show("Hello..."); // ʹ�� HelloMessage �� HelloMessage h = new HelloMessage(); h.Speak(); }
static void Main() { Console.WriteLine("Testing! 1, 2, 3"); // Ёта строка тоже больше не нужна: // MessageBox.Show("Hello..."); // »спользовать класс HelloMessage! HelloMessage h = new HelloMessage(); h.Speak(); }
static void Main() { Console.WriteLine("Это тест! Три два раз 1 2 3"); HelloMessage h = new HelloMessage(); h.Speak(); }