csharp How to display text in console

Code Example - csharp How to display text in console

                
                        // Display text onto the screen			
			
			//Just a Text line
            Console.WriteLine("The Text");

            // Integrating Variables to Text lines
            string Name = "Kirils";

            Console.WriteLine("His name is {0}", Name);