using System; namespace Example5 { class OneHello { public static void WriteHello() { Console.WriteLine("Hello, world"); } } /// /// Summary description for Class1. /// class Class1 { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { OneHello.WriteHello(); } } }