-1

I am using Int32 when converting from double, but what's the difference ?

Andy
  • 27
  • 2
  • 5

1 Answers1

6

Int16 -> short -> 16-bit Integer

Int32 -> int -> 32-bit Integer

Int64 -> long -> 64-bit Integer

Justin Niessner
  • 242,243
  • 40
  • 408
  • 536