How to get the minimum datetime value in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        Console.Write(DateTime.MinValue);
    }
}




/*
run:

1/1/0001 12:00:00 AM

*/

 



answered Aug 21, 2023 by avibootz

Related questions

1 answer 146 views
1 answer 165 views
1 answer 154 views
1 answer 182 views
1 answer 168 views
168 views asked Aug 15, 2018 by avibootz
...