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

1 Answer

0 votes
using System;

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

        string s = String.Format("{0:M MM MMM MMMM}", dt);  
        
        Console.WriteLine(s);
    }
}




/*
run:

3 03 Mar March

*/

 



answered Mar 26, 2022 by avibootz

Related questions

1 answer 166 views
1 answer 191 views
1 answer 171 views
1 answer 207 views
1 answer 165 views
1 answer 177 views
...