I am working on an application that uses a third-party component, and this component returns a value of type UInt32.
I need to save this UInt32 in a Sql Server table. I thought to just use a simple int column and insert a value like this:
int value = (int)(cs - int.MaxValue);
But I'm not sure if this is the best way to do this.
source
share