Advertisement
KodingKid

3 facts about C# in C#

Apr 17th, 2021
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 KB | None | 0 0
  1. //Facts about C# in C#
  2. using System;
  3. using System.Threading;
  4. class Program
  5. {
  6.   static void Main()
  7.   {    
  8.       var milliseconds = 1000;
  9.     Thread.Sleep(milliseconds);
  10.       Console.WriteLine("The name of the C Sharp language is stimulated by the musical notation. Here sharp, represent the written note which should be made a semitone higher in pitch!")
  11.       var milliseconds = 1000;
  12.     Thread.Sleep(milliseconds);
  13.       Console.WriteLine("Microsoft first time uses the name C# in 1988.")
  14.        var milliseconds = 1000;
  15.     Thread.Sleep(milliseconds);
  16.       Console.WriteLine("The syntax of C# language is similar to the C-style family such as Java, C, C++")
  17.   }
  18. }
  19. //See also:
  20. //https://pastebin.com/UeQ4i06y
  21. //https://pastebin.com/9tkC0U63
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement