Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Sample {
  4. class Program {
  5. static void Main(string[] args) {
  6. Console.WriteLine("Hello, World!");
  7. }
  8. }
  9. }
  10.  
  11. > C:WindowsMicrosoft.NETFrameworkv3.5csc.exe /nologo hello.cs
  12.  
  13. > hello.exe
  14. Hello, World!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement