60 likes | 85 Views
786. Reading and Writing to Console. By: sediqi. Agenda. Reading from the console Writing to console 2 ways to write to console Concatenation Place holder syntax-Most preferred. Console.ReadLine(). Reading from the console Console.ReadLine is use for Reading something from the console
E N D
786 Reading and Writing to Console By: sediqi
Agenda • Reading from the console • Writing to console • 2 ways to write to console • Concatenation • Place holder syntax-Most preferred
Console.ReadLine() • Reading from the console • Console.ReadLine is use for Reading something from the console • For e.g: • String UserName=console.ReadLine();
Console.WriteLine() • Writing to the console • Console.WiteLine is use for writing something to the console • For e.g: • console.WriteLine(“Welcome to Maiwand University”); • We can use place holder instead of console.WriteLine();