Int is aliased to the "native" integer type on the system (Int32 on a 32 bit
system and Int64 on a 64 bit system). Specifying Int32 everywhere means
that any "naked" integer passed as a parameter to these functions on a 64 bit
system results in an error.
Int
is aliased to the "native" integer type on the system (Int32
on a 32 bit system andInt64
on a 64 bit system). SpecifyingInt32
everywhere means that any "naked" integer passed as a parameter to these functions on a 64 bit system results in an error.