Advertisement
kuruku

HelloWorld

Apr 14th, 2014
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. using System;
  2.  
  3. //Create, compile and run a “Hello C#” console application.
  4. //Ensure you have named the application well (e.g. “”HelloCSharp”).
  5.  
  6. class HelloWorld
  7. {
  8.     static void Main()
  9.     {
  10.         Console.WriteLine("Hello World");
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement