Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Facts about C# in C#
- using System;
- using System.Threading;
- class Program
- {
- static void Main()
- {
- var milliseconds = 1000;
- Thread.Sleep(milliseconds);
- 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!")
- var milliseconds = 1000;
- Thread.Sleep(milliseconds);
- Console.WriteLine("Microsoft first time uses the name C# in 1988.")
- var milliseconds = 1000;
- Thread.Sleep(milliseconds);
- Console.WriteLine("The syntax of C# language is similar to the C-style family such as Java, C, C++")
- }
- }
- //See also:
- //https://pastebin.com/UeQ4i06y
- //https://pastebin.com/9tkC0U63
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement