Advertisement
Felanpro

Basic stuff

Aug 9th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. /*Youtube tutorial stuff.*/
  2.  
  3.             Console.WriteLine("Hello"); //Print out to the screen.
  4.  
  5.             //Read user input.
  6.             Console.Write("What is your name?: ");
  7.             string name = Console.ReadLine();
  8.             Console.WriteLine("Hello " + name);
  9.  
  10.             //Data types. I know about these already :)
  11.             //int
  12.             //string
  13.             //bool
  14.             //double
  15.             //float
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement