c# date to string yyyy-mm-dd
var date_string = date.ToString("yyyy-MM-dd");
c# date to string yyyy-mm-dd
var date_string = date.ToString("yyyy-MM-dd");
Format DateTime.Now to yyyy-mm-dd c#
var dateString1 = DateTime.Now.ToString("yyyyMMdd");
var dateString2 = DateTime.Now.ToString("yyyy-MM-dd");
Console.WriteLine("yyyyMMdd " + dateString1);
Console.WriteLine("yyyy-MM-dd "+ dateString2);
c# date string format yyyy-mm-dd
public static string FORMAT_PDF = "dd/MM/yyyy";
public static string convertDateTimeFormatByStrDate(string strDate,string format)
{
DateTime temp = Convert.ToDateTime(strDate);
return temp.ToString(format);
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us