What is the string format options for day in DateTime with C#

1 Answer

0 votes
using System;

public class Program
{
    public static void Main()
    {
        DateTime dt = new DateTime(2004, 03, 06);

        string s = String.Format("{0:d dd ddd dddd}", dt);  
        
        Console.WriteLine(s);
    }
}




/*
run:

6 06 Sat Saturday

*/

 



answered Mar 26, 2022 by avibootz

Related questions

1 answer 168 views
1 answer 191 views
1 answer 172 views
1 answer 207 views
1 answer 166 views
1 answer 181 views
...