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, that should be true.

FYI there is also an int64 type
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top