Using system;
Namespace consoleapplication5 {class helloworld {public void show () {console.writeLine ("Hello World!");}}
/// /// Class1 summary description. /// summary> class class1 {/// /// The primary entry point of the application. /// summary> [stathread] static void main (string [] args) {helloworld h = new helloworld (); h.show (); // // Todo: Add code to start the application / /}}}