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

1 Answer

0 votes
using System;

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




/*
run:

0
4294967295

*/

 



answered Jun 9, 2021 by avibootz

Related questions

1 answer 149 views
1 answer 141 views
1 answer 182 views
1 answer 133 views
133 views asked Jun 9, 2021 by avibootz
1 answer 139 views
...