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 177 views
1 answer 200 views
1 answer 183 views
1 answer 213 views
1 answer 174 views
1 answer 187 views
...