How to get min and max unsigned long value in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        Console.WriteLine(ulong.MinValue);
        
        Console.WriteLine(ulong.MaxValue);
    }
}




/*
run:

0
18446744073709551615

*/

 



answered Jun 9, 2021 by avibootz

Related questions

1 answer 155 views
1 answer 138 views
1 answer 232 views
1 answer 173 views
173 views asked Jun 9, 2021 by avibootz
...