DarkAtom77

Hello world C#

May 27th, 2020
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. // Hello world program
  2. /* Language:
  3.     - C# (all versions)
  4.  * Library:
  5.     - .NET Framework (all versions)
  6.     - .NET Core (all versions)
  7.     - .NET Standard (version 1.3 or later)
  8. */
  9.  
  10. using System;
  11.  
  12. class HelloWorld
  13. {
  14.     static void Main()
  15.     {
  16.         Console.WriteLine("Hello world!");
  17.     }
  18. }
Add Comment
Please, Sign In to add comment