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 135 views
1 answer 155 views
1 answer 138 views
1 answer 173 views
1 answer 160 views
160 views asked Aug 15, 2018 by avibootz
...