Console Read Write C# with Example



Console Read Write C# with Example

 using System;

namespace CSharpFundamentals{
	class ConsoleReadWrite{
		private static void Main(string[] args)
		{
			Console.Write("Enter your Name:");
			Console.WriteLine("Hello! {0}. How are you?", Console.ReadLine()); 
		}
	}
} 

0 Comment's

Comment Form

Submit Comment