Answers for "convert to time c#"

C#
4

convert timestamp to datetime c# code

public static DateTime UnixTimeStampToDateTime( double unixTimeStamp )
{
    // Unix timestamp is seconds past epoch
    System.DateTime dtDateTime = new DateTime(1970,1,1,0,0,0,0,System.DateTimeKind.Utc);
    dtDateTime = dtDateTime.AddSeconds( unixTimeStamp ).ToLocalTime();
    return dtDateTime;
}
Posted by: Guest on February-19-2020
4

string to datetime c#

DateTime.TryParse(stringDate, out DateTime date);
//date variable type is DateTime
Posted by: Guest on January-12-2021

C# Answers by Framework

Browse Popular Code Answers by Language