GetLocaleInfo for .NET?
-
What's the equivalent of the Win32 API
GetLocaleInfo
for .NET? Thanks, Alvaro
When birds fly in the right formation, they need only exert half the effort. Even in nature, teamwork results in collective laziness. -- despair.com
-
What's the equivalent of the Win32 API
GetLocaleInfo
for .NET? Thanks, Alvaro
When birds fly in the right formation, they need only exert half the effort. Even in nature, teamwork results in collective laziness. -- despair.com
I think the CultureInfo class (from System.Globalization) might be what you're looking for. Chris Jobson
-
I think the CultureInfo class (from System.Globalization) might be what you're looking for. Chris Jobson
Yes, thanks, that's the one. Do you know if there's a mapping of Win32 APIs to their equivalent namespace.class.methods in .NET. Something like that would help a lot of people like me who are porting apps from Win32/MFC to .NET. For example, I just ran into another one. What's the equivalent for VK_DELETE? Well, I had to search for a few minutes before I discovered the System.Forms.Keys enumeration. Thanks again, Alvaro
When birds fly in the right formation, they need only exert half the effort. Even in nature, teamwork results in collective laziness. -- despair.com