IsCharAlphaA and IsCharAlphaNumeric Win32 API Calls Under C#... is there a .Net substitute for these

T

TC

Hey All,

Just wondering if there is a .Net substitute to the following Win32 APIs:

IsCharAlphaNumeric

IsCharAlphaA

Regards,

TC
 
J

Jochen Kalmbach [MVP]

Hi TC!
Just wondering if there is a .Net substitute to the following Win32 APIs:

IsCharAlphaNumeric
IsCharAlphaA

IsCharAlpha.. uses the "GetStringTypeW" function.
So the question is: Is there an equivalent to "GetStringTypeW" ?

A short answer:
For .NET 1(.1) there is no such an euqivalent!

For .NET 2 there is an CharUnicodeInfo class, which should be capable of
doing everything...

See: CharUnicodeInfo
http://winfx.msdn.microsoft.com/lib...ization/c/charunicodeinfo/charunicodeinfo.asp


PS: A better newsgroup is: microsoft.public.dotnet.internationalization

--
Greetings
Jochen

My blog about Win32 and .NET
http://blog.kalmbachnet.de/
 

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

Top