1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
Tom Lint 940e173334 Added Is* methods to Double
Updated CultureInfo
Added MidpointRounding_t enum
Updated file comments
2013-10-09 11:52:41 +02:00

33 lines
857 B
C++

#ifndef _SYSTEM_GLOBALIZATION_CULTUREINFO_
#define _SYSTEM_GLOBALIZATION_CULTUREINFO_
#include <System/Interfaces.h>
namespace System
{
class String;
namespace Globalization
{
/**
* Provides information about a specific culture (called a "locale" for unmanaged code development). The information includes the names for the culture, the writing system, the calendar used, and formatting for dates and sort strings.
*/
class CultureInfo : public IFormatProvider, public Object
{
public:
static const CultureInfo InvariantCulture;
CultureInfo(int culture);
CultureInfo(int culture, bool useUserOverride);
CultureInfo(const String& name);
CultureInfo(const String& name, bool useUserOverride);
void ClearCacheData();
bool Equals(Object const * const obj) const;
};
}
}
#endif //_SYSTEM_GLOBALIZATION_CULTUREINFO_