C# types

  • Thread starter Thread starter Steph
  • Start date Start date
S

Steph

Hello,

I'm searching for getting all C# types (string, int, etc...). Is there a
class to get them ?

thanks
 
Steph said:
I'm searching for getting all C# types (string, int, etc...). Is there a
class to get them ?

What exactly do you mean by "C# types"? string is just a shorthand for
System.String, etc.
 
I'm searching for a method like getShortHand to have an Array of C# types
- int
- string
....
Thanks
 
Steph said:
I'm searching for a method like getShortHand to have an Array of C# types
- int
- string

I don't believe there is such a thing, but it's very easy to populate
an array or hashmap of them.
 
Check in help for the TypeCode enumeration. Maybe this will help you.

Hope this helps
Leon Lambert
 
Back
Top