Advertisement
AnitaN

01.Intro-Programming-Homework/04.Hello-World

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