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
 

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