Задача: "C# и платформа .NET" Эндрю Троелсен (Andrew Troelsen, "C# and the .NET platform"), листинги, код, примеры из книги, исходники
Исходник: Глава 1 (Chapter 1), TestApp.cs, язык: C# [code #166, hits: 6542]
автор: - [добавлен: 11.09.2006]
  1. // The first C# app of the book...
  2. using System;
  3.  
  4. // Add this!
  5. // using System.Windows.Forms;
  6.  
  7. class TestApp
  8. {
  9. public static void Main()
  10. {
  11. // System.Console.WriteLine("Testing! 1, 2, 3");
  12.  
  13. // Add this!
  14. // MessageBox.Show("Hello...");
  15. HelloMessage h = new HelloMessage();
  16. h.Speak();
  17. }
  18. }
Тестировалось на: MS Visual Studio 2005, .NET Framework 2.0

+добавить реализацию