How can I convert from an ASP.NET Unit structure to int in c#? Or reverse?
Probably he need this:
int myInt = 1; uint myUint = (uint)myInt; uint myUint = 1; int myInt = (int)myUint;