int32 Vs Int

  • Thread starter Thread starter garyusenet
  • Start date Start date
G

garyusenet

I saw some code using int32 recently I checked the ECMA doc's and
couldn't find a reference to this type. Am i right in thinking this is
the same as string Vs String and that int is simply a shortened form of
int32 - both of them representing 32 bit signed integers?

TIA.

Gary.
 
I saw some code using int32 recently I checked the ECMA doc's and
couldn't find a reference to this type. Am i right in thinking this is
the same as string Vs String and that int is simply a shortened form
of int32 - both of them representing 32 bit signed integers?

Yes, you are correct.

Best Regards,
Dustin Campbell
Developer Express Inc.
 
Yes, It is a short hand form of Int32 structure

I think all the basic types have the short hand forms....

Thanks
-Cnu
 
Yes, it is short hand form of Int32

Infact all the basic data types are the shorthand forms for the some
structures in System namespace

Thanks
-Cnu
 
Back
Top