Answers for "c# date to string yyyy-mm-dd"

C#
1

c# date to string yyyy-mm-dd

var date_string = date.ToString("yyyy-MM-dd");
Posted by: Guest on October-29-2020
0

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);
Posted by: Guest on June-29-2021
-1

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);
}
Posted by: Guest on January-14-2021

Code answers related to "c# date to string yyyy-mm-dd"

C# Answers by Framework

Browse Popular Code Answers by Language