December 21, 2015 HomeC# QuestionsHow to Get Current Time in C#/CSharp How to Get Current Time in C#/CSharp By Krishnaa C# Questions 0 Comments using System; namespace Hello_World { class Program { static void Main(string[] args) { DateTime time = DateTime.Now; Console.WriteLine(time.ToShortTimeString()); } } } ; You May Also Like: How to Get Current Date in C#/CSharp How to Get Current Year in C#/CSharp How to Get Current Month in String Format in C#/CSharp How to Convert Datetime to DD/MM/YYYY Format in C#/CSharp How to Sort An Array in C#/CSharp