You can declare and initialize a variable of the type uint like this example:
uint myUint = 4294967290;
When an integer literal has no suffix, its type is the first of these types in which its value can be represented: int, uint, long, ulong. In this example, it is uint:
You can also use the suffix u or U, such as this:
When you use the suffix U or u, the type of the literal is determined to be either uint or ulong according to the numeric value of the literal. For example:
Console.WriteLine(44U.GetType());
Console.WriteLine(323442434344U.GetType());
This code displays System.UInt32, followed by System.UInt64 -- the underlying types for uint and ulong respectively -- because the second literal is too large to be stored by the uint type.