Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. class HelloCSharp
  5. {
  6. static void Main()
  7. {
  8. string hllo = "Hello";
  9. string wrld = "CSharp !";
  10.  
  11. Console.WriteLine("{0} {1}" , hllo, wrld);
  12.  
  13. Console.WriteLine( new string ('-' , 13));
  14.  
  15. Console.WriteLine("Hello World !");
  16.  
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement