Using Console Write Line Like Java Print Ln C# with Example



Using Console Write Line Like Java Print Ln C# with Example

 using System;

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

0 Comment's

Comment Form