int, uint??

dannyres

Well-known member
Joined
Aug 29, 2003
Messages
67
Ive been doing alot of P/Invoke stuff lately including converting some structures and stuff from C++. Alot of the time i see stuff like unsigned long and I just put it as int in C#. But recently i discovered the uint type and im wondering if it actually matters if I use int or uint and what are their differences. :)


Thanks, Dan
 
So from what im reading, it does actually matter weather i use int and uint. Like if the number is really high int wont be able to handle it but uint can?

Dan
 
Back
Top