Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

C# 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);
 
PREVIOUS NEXT
Tagged: #How #display #text #console
ADD COMMENT
Topic
Name
1+8 =