How to use unsigned int in C#

1 Answer

0 votes
using System;

public static class Program
{
    public static void Main()
    {
        uint n = 8494754; // unsigned int
        
        Console.WriteLine(n);
    }
}
 
 
 
/*
run:
 
8494754
 
*/

 



answered Nov 16, 2021 by avibootz

Related questions

...