Code: Show/Hide int x = 1020; //error uint32 y = 1020; //ok |
Code: Show/Hide for(int x=0;x<=200;x++){ int y = x; //memory waste! sint z = d; //thats a little better } |
msdn wrote: |
The Int32 value type represents signed integers with values ranging from negative 2,147,483,648 through positive 2,147,483,647.
|