[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- public abstract class Calendar : ICloneable
+ public abstract partial class Calendar : ICloneable
{
// Number of 100ns (10E-7 second) ticks per time unit
internal const long TicksPerMillisecond = 10000;
{
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- public class CultureNotFoundException : ArgumentException, ISerializable
+ public partial class CultureNotFoundException : ArgumentException, ISerializable
{
private string m_invalidCultureName; // unrecognized culture name
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- public sealed class DateTimeFormatInfo : IFormatProvider, ICloneable
+ public sealed partial class DateTimeFormatInfo : IFormatProvider, ICloneable
{
// cache for the invariant culture.
// invariantInfo is constant irrespective of your current culture.
Contract.Assert(this.dateSeparator != null, "DateTimeFormatInfo.DateSeparator, dateSeparator != null");
return (this.dateSeparator);
}
+ set
+ {
+ throw null;
+ }
}
Contract.Assert(this.timeSeparator != null, "DateTimeFormatInfo.TimeSeparator, timeSeparator != null");
return (timeSeparator);
}
+
+ set
+ {
+ throw null;
+ }
}
// This class represents a starting/ending time for a period of daylight saving time.
[Serializable]
- internal class DaylightTime
+ public partial class DaylightTime
{
internal DateTime m_start;
internal DateTime m_end;
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- public class HebrewCalendar : Calendar
+ public partial class HebrewCalendar : Calendar
{
public static readonly int HebrewEra = 1;
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- sealed public class NumberFormatInfo : IFormatProvider, ICloneable
+ sealed public partial class NumberFormatInfo : IFormatProvider, ICloneable
{
// invariantInfo is constant irrespective of your current culture.
private static volatile NumberFormatInfo invariantInfo;
{
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- public class RegionInfo
+ public partial class RegionInfo
{
//--------------------------------------------------------------------//
// Internal Information //
--- /dev/null
+namespace System.Globalization
+{
+ public abstract partial class Calendar : System.ICloneable
+ {
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public virtual int GetLeapMonth(int year) { throw new NotImplementedException(); }
+ }
+
+ [System.Runtime.InteropServices.ComVisible(true)]
+ public enum CalendarAlgorithmType
+ {
+ Unknown = 0, // This is the default value to return in the Calendar base class.
+ SolarCalendar = 1, // Solar-base calendar, such as GregorianCalendar, jaoaneseCalendar, JulianCalendar, etc.
+ // Solar calendars are based on the solar year and seasons.
+ LunarCalendar = 2, // Lunar-based calendar, such as Hijri and UmAlQuraCalendar.
+ // Lunar calendars are based on the path of the moon. The seasons are not accurately represented.
+ LunisolarCalendar = 3 // Lunisolar-based calendar which use leap month rule, such as HebrewCalendar and Asian Lunisolar calendars.
+ // Lunisolar calendars are based on the cycle of the moon, but consider the seasons as a secondary consideration,
+ // so they align with the seasons as well as lunar events.
+ }
+
+ public static partial class CharUnicodeInfo
+ {
+ public static int GetDecimalDigitValue(char ch) { throw new NotImplementedException(); }
+ public static int GetDecimalDigitValue(string s, int index) { throw new NotImplementedException(); }
+ public static int GetDigitValue(char ch) { throw new NotImplementedException(); }
+ public static int GetDigitValue(string s, int index) { throw new NotImplementedException(); }
+ }
+
+ public partial class CompareInfo : System.Runtime.Serialization.IDeserializationCallback
+ {
+ public int LCID { get { throw new NotImplementedException(); } }
+ public static System.Globalization.CompareInfo GetCompareInfo(int culture) { throw new NotImplementedException(); }
+ public static System.Globalization.CompareInfo GetCompareInfo(int culture, System.Reflection.Assembly assembly) { throw new NotImplementedException(); }
+ public static System.Globalization.CompareInfo GetCompareInfo(string name, System.Reflection.Assembly assembly) { throw new NotImplementedException(); }
+ public virtual System.Globalization.SortKey GetSortKey(string source) { throw new NotImplementedException(); }
+ public virtual System.Globalization.SortKey GetSortKey(string source, System.Globalization.CompareOptions options) { throw new NotImplementedException(); }
+ public virtual int IndexOf(string source, char value, int startIndex) { throw new NotImplementedException(); }
+ public virtual int IndexOf(string source, string value, int startIndex) { throw new NotImplementedException(); }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public static bool IsSortable(char ch) { throw new NotImplementedException(); }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ [System.Security.SecuritySafeCriticalAttribute]
+ public static bool IsSortable(string text) { throw new NotImplementedException(); }
+ public virtual int LastIndexOf(string source, char value, int startIndex) { throw new NotImplementedException(); }
+ public virtual int LastIndexOf(string source, string value, int startIndex) { throw new NotImplementedException(); }
+ }
+
+ public partial class CultureInfo : System.ICloneable, System.IFormatProvider
+ {
+ public CultureInfo(int culture) { throw new NotImplementedException(); }
+ public CultureInfo(int culture, bool useUserOverride) { throw new NotImplementedException(); }
+ public static System.Globalization.CultureInfo InstalledUICulture { get { throw new NotImplementedException(); } }
+ public virtual int LCID { get { throw new NotImplementedException(); } }
+ public virtual string ThreeLetterISOLanguageName { get { throw new NotImplementedException(); } }
+ public virtual string ThreeLetterWindowsLanguageName { get { throw new NotImplementedException(); } }
+ public void ClearCachedData() { throw new NotImplementedException(); }
+ public static System.Globalization.CultureInfo CreateSpecificCulture(string name) { throw new NotImplementedException(); }
+ public static System.Globalization.CultureInfo GetCultureInfo(int culture) { throw new NotImplementedException(); }
+ public static System.Globalization.CultureInfo GetCultureInfo(string name, string altName) { throw new NotImplementedException(); }
+ public static System.Globalization.CultureInfo GetCultureInfoByIetfLanguageTag(string name) { throw new NotImplementedException(); }
+ public static System.Globalization.CultureInfo[] GetCultures(System.Globalization.CultureTypes types) { throw new NotImplementedException(); }
+ }
+
+ public partial class CultureNotFoundException : System.ArgumentException, System.Runtime.Serialization.ISerializable
+ {
+ public CultureNotFoundException(string message, int invalidCultureId, System.Exception innerException) { throw new NotImplementedException(); }
+ public CultureNotFoundException(string paramName, int invalidCultureId, string message) { throw new NotImplementedException(); }
+ public virtual System.Nullable<int> InvalidCultureId { get { throw new NotImplementedException(); } }
+ }
+
+ public enum CultureTypes
+ {
+ AllCultures = 7,
+ [System.ObsoleteAttribute("This value has been deprecated. Please use other values in CultureTypes.")]
+ FrameworkCultures = 64,
+ InstalledWin32Cultures = 4,
+ NeutralCultures = 1,
+ ReplacementCultures = 16,
+ SpecificCultures = 2,
+ UserCustomCulture = 8,
+ [System.ObsoleteAttribute("This value has been deprecated. Please use other values in CultureTypes.")]
+ WindowsOnlyCultures = 32,
+ }
+
+ public sealed partial class DateTimeFormatInfo : System.ICloneable, System.IFormatProvider
+ {
+ // Can't do partial properties so add the setter for DateSeparator and TimeSeparator
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public string NativeCalendarName { get { throw new NotImplementedException(); } }
+ public string[] GetAllDateTimePatterns() { throw new NotImplementedException(); }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public string GetShortestDayName(System.DayOfWeek dayOfWeek) { throw new NotImplementedException(); }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public void SetAllDateTimePatterns(string[] patterns, char format) { throw new NotImplementedException(); }
+ }
+
+ public enum DigitShapes
+ {
+ Context = 0,
+ NativeNational = 2,
+ None = 1,
+ }
+
+ public sealed partial class IdnMapping
+ {
+ public IdnMapping() { }
+ public bool AllowUnassigned { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } }
+ public bool UseStd3AsciiRules { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } }
+ public override bool Equals(object obj) { throw new NotImplementedException(); }
+ public string GetAscii(string unicode) { throw new NotImplementedException(); }
+ public string GetAscii(string unicode, int index) { throw new NotImplementedException(); }
+ public string GetAscii(string unicode, int index, int count) { throw new NotImplementedException(); }
+ public override int GetHashCode() { throw new NotImplementedException(); }
+ public string GetUnicode(string ascii) { throw new NotImplementedException(); }
+ public string GetUnicode(string ascii, int index) { throw new NotImplementedException(); }
+ public string GetUnicode(string ascii, int index, int count) { throw new NotImplementedException(); }
+ }
+
+ public sealed partial class NumberFormatInfo : System.ICloneable, System.IFormatProvider
+ {
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public System.Globalization.DigitShapes DigitSubstitution { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public string[] NativeDigits { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } }
+ }
+
+ public partial class RegionInfo
+ {
+ public RegionInfo(int culture) { throw new NotImplementedException(); }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public virtual string CurrencyEnglishName { get { throw new NotImplementedException(); } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public virtual string CurrencyNativeName { get { throw new NotImplementedException(); } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public virtual int GeoId { get { throw new NotImplementedException(); } }
+ public virtual string ThreeLetterISORegionName { get { throw new NotImplementedException(); } }
+ public virtual string ThreeLetterWindowsRegionName { get { throw new NotImplementedException(); } }
+ }
+
+ public partial class SortKey
+ {
+ internal SortKey() { throw new NotImplementedException(); }
+ public virtual byte[] KeyData { get { throw new NotImplementedException(); } }
+ public virtual string OriginalString { get { throw new NotImplementedException(); } }
+ public static int Compare(System.Globalization.SortKey sortkey1, System.Globalization.SortKey sortkey2) { throw new NotImplementedException(); }
+ public override bool Equals(object value) { throw new NotImplementedException(); }
+ public override int GetHashCode() { throw new NotImplementedException(); }
+ public override string ToString() { throw new NotImplementedException(); }
+ }
+
+ public sealed partial class SortVersion : System.IEquatable<System.Globalization.SortVersion>
+ {
+ public SortVersion(int fullVersion, System.Guid sortId) { throw new NotImplementedException(); }
+ public int FullVersion { get { throw new NotImplementedException(); } }
+ public System.Guid SortId { get { throw new NotImplementedException(); } }
+ public bool Equals(System.Globalization.SortVersion other) { throw new NotImplementedException(); }
+ public override bool Equals(object obj) { throw new NotImplementedException(); }
+ public override int GetHashCode() { throw new NotImplementedException(); }
+ public static bool operator ==(System.Globalization.SortVersion left, System.Globalization.SortVersion right) { throw new NotImplementedException(); }
+ public static bool operator !=(System.Globalization.SortVersion left, System.Globalization.SortVersion right) { throw new NotImplementedException(); }
+ }
+
+ public partial class StringInfo
+ {
+ public string SubstringByTextElements(int startingTextElement) { throw new NotImplementedException(); }
+ public string SubstringByTextElements(int startingTextElement, int lengthInTextElements) { throw new NotImplementedException(); }
+ }
+
+ public partial class TextInfo : System.ICloneable, System.Runtime.Serialization.IDeserializationCallback
+ {
+ public virtual int ANSICodePage { get { throw new NotImplementedException(); } }
+ public virtual int EBCDICCodePage { get { throw new NotImplementedException(); } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public int LCID { get { throw new NotImplementedException(); } }
+ public virtual int MacCodePage { get { throw new NotImplementedException(); } }
+ public virtual int OEMCodePage { get { throw new NotImplementedException(); } }
+ public string ToTitleCase(string str) { throw new NotImplementedException(); }
+ }
+}
\ No newline at end of file
{
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- public class StringInfo
+ public partial class StringInfo
{
[OptionalField(VersionAdded = 2)]
private String m_str;
*/
[Serializable]
- public class UmAlQuraCalendar : Calendar
+ public partial class UmAlQuraCalendar : Calendar
{
internal const int MinCalendarYear = 1318;
internal const int MaxCalendarYear = 1500;
<Member Name="AddSeconds(System.DateTime,System.Int32)" />
<Member Name="AddWeeks(System.DateTime,System.Int32)" />
<Member Name="AddYears(System.DateTime,System.Int32)" />
+ <Member Name="Clone" />
<Member Name="get_Eras" />
<Member Name="get_IsReadOnly" />
<Member Name="get_MaxSupportedDateTime" />
<Member Name="GetDaysInYear(System.Int32,System.Int32)" />
<Member Name="GetEra(System.DateTime)" />
<Member Name="GetHour(System.DateTime)" />
+ <Member Name="GetLeapMonth(System.Int32)" />
<Member Name="GetMilliseconds(System.DateTime)" />
<Member Name="GetMinute(System.DateTime)" />
<Member Name="GetMonth(System.DateTime)" />
<Member Name="IsLeapMonth(System.Int32,System.Int32,System.Int32)" />
<Member Name="IsLeapYear(System.Int32)" />
<Member Name="IsLeapYear(System.Int32,System.Int32)" />
+ <Member Name="ReadOnly(System.Globalization.Calendar)" />
<Member Name="set_TwoDigitYearMax(System.Int32)" />
<Member Name="ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" />
<Member Name="ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" />
<Member Status="ImplRoot" MemberType="Field" Name="CAL_GREGORIAN_XLIT_ENGLISH" Condition="not FEATURE_COREFX_GLOBALIZATION" />
<Member Status="ImplRoot" MemberType="Field" Name="CAL_GREGORIAN_XLIT_FRENCH" Condition="not FEATURE_COREFX_GLOBALIZATION" />
</Type>
+ <Type Name="System.Globalization.CalendarAlgorithmType">
+ <Member MemberType="Field" Name="LunarCalendar" />
+ <Member MemberType="Field" Name="LunisolarCalendar" />
+ <Member MemberType="Field" Name="SolarCalendar" />
+ <Member MemberType="Field" Name="Unknown" />
+ <Member MemberType="Field" Name="value__" />
+ </Type>
<Type Name="System.Globalization.CalendarWeekRule">
<Member MemberType="Field" Name="FirstDay" />
<Member MemberType="Field" Name="FirstFourDayWeek" />
<Member MemberType="Field" Name="value__" />
</Type>
<Type Name="System.Globalization.CharUnicodeInfo">
+ <Member Name="GetDecimalDigitValue(System.Char)" />
+ <Member Name="GetDecimalDigitValue(System.String,System.Int32)" />
+ <Member Name="GetDigitValue(System.Char)" />
+ <Member Name="GetDigitValue(System.String,System.Int32)" />
<Member Name="GetNumericValue(System.Char)" />
<Member Name="GetNumericValue(System.String,System.Int32)" />
<Member Name="GetUnicodeCategory(System.Char)" />
<Member Name="Compare(System.String,System.String)" />
<Member Name="Compare(System.String,System.String,System.Globalization.CompareOptions)" />
<Member Name="Equals(System.Object)" />
+ <Member Name="get_LCID" />
<Member Name="get_Name" />
+ <Member Name="GetCompareInfo(System.Int32)" />
+ <Member Name="GetCompareInfo(System.Int32,System.Reflection.Assembly)" />
<Member Name="GetCompareInfo(System.String)" />
+ <Member Name="GetCompareInfo(System.String,System.Reflection.Assembly)" />
<Member Name="GetHashCode" />
<Member Name="GetHashCode(System.String,System.Globalization.CompareOptions)" />
+ <Member Name="GetSortKey(System.String)" />
+ <Member Name="GetSortKey(System.String,System.Globalization.CompareOptions)" />
<Member Name="IndexOf(System.String,System.Char)" />
<Member Name="IndexOf(System.String,System.Char,System.Globalization.CompareOptions)" />
+ <Member Name="IndexOf(System.String,System.Char,System.Int32)" />
<Member Name="IndexOf(System.String,System.Char,System.Int32,System.Globalization.CompareOptions)" />
<Member Name="IndexOf(System.String,System.Char,System.Int32,System.Int32)" />
<Member Name="IndexOf(System.String,System.Char,System.Int32,System.Int32,System.Globalization.CompareOptions)" />
<Member Name="IndexOf(System.String,System.String)" />
<Member Name="IndexOf(System.String,System.String,System.Globalization.CompareOptions)" />
+ <Member Name="IndexOf(System.String,System.String,System.Int32)" />
<Member Name="IndexOf(System.String,System.String,System.Int32,System.Globalization.CompareOptions)" />
<Member Name="IndexOf(System.String,System.String,System.Int32,System.Int32)" />
<Member Name="IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)" />
<Member Name="IsPrefix(System.String,System.String)" />
<Member Name="IsPrefix(System.String,System.String,System.Globalization.CompareOptions)" />
+ <Member Name="IsSortable(System.Char)" />
+ <Member Name="IsSortable(System.String)" />
<Member Name="IsSuffix(System.String,System.String)" />
<Member Name="IsSuffix(System.String,System.String,System.Globalization.CompareOptions)" />
<Member Name="LastIndexOf(System.String,System.Char)" />
<Member Name="LastIndexOf(System.String,System.Char,System.Globalization.CompareOptions)" />
+ <Member Name="LastIndexOf(System.String,System.Char,System.Int32)" />
<Member Name="LastIndexOf(System.String,System.Char,System.Int32,System.Globalization.CompareOptions)" />
<Member Name="LastIndexOf(System.String,System.Char,System.Int32,System.Int32)" />
<Member Name="LastIndexOf(System.String,System.Char,System.Int32,System.Int32,System.Globalization.CompareOptions)" />
<Member Name="LastIndexOf(System.String,System.String)" />
<Member Name="LastIndexOf(System.String,System.String,System.Globalization.CompareOptions)" />
+ <Member Name="LastIndexOf(System.String,System.String,System.Int32)" />
<Member Name="LastIndexOf(System.String,System.String,System.Int32,System.Globalization.CompareOptions)" />
<Member Name="LastIndexOf(System.String,System.String,System.Int32,System.Int32)" />
<Member Name="LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)" />
<Member Status="ImplRoot" Name="OnDeserialized(System.Runtime.Serialization.StreamingContext)" />
<Member Status="ImplRoot" Name="OnDeserializing(System.Runtime.Serialization.StreamingContext)" />
<Member Status="ImplRoot" Name="OnSerializing(System.Runtime.Serialization.StreamingContext)" />
+ <Member Status="ImplRoot" Name="System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)" />
<Member Name="ToString" />
+ <Member MemberType="Property" Name="LCID" />
<Member MemberType="Property" Name="Name" />
</Type>
<Type Name="System.Globalization.CompareOptions">
<Member MemberType="Field" Name="value__" />
</Type>
<Type Name="System.Globalization.CultureInfo">
+ <Member Name="#ctor(System.Int32)" />
+ <Member Name="#ctor(System.Int32,System.Boolean)" />
<Member Name="#ctor(System.String)" />
+ <Member Name="#ctor(System.String,System.Boolean)" />
+ <Member Name="ClearCachedData" />
<Member Name="Clone" />
+ <Member Name="CreateSpecificCulture(System.String)" />
<Member Name="Equals(System.Object)" />
<Member Name="get_Calendar" />
<Member Name="get_CompareInfo" />
<Member Name="get_DateTimeFormat" />
<Member Name="get_DisplayName" />
<Member Name="get_EnglishName" />
+ <Member Name="get_InstalledUICulture" />
<Member Name="get_InvariantCulture" />
<Member Name="get_IsNeutralCulture" />
<Member Name="get_IsReadOnly" />
+ <Member Name="get_LCID" />
<Member Name="get_Name" />
<Member Name="get_NativeName" />
<Member Name="get_NumberFormat" />
<Member Name="get_OptionalCalendars" />
<Member Name="get_Parent" />
<Member Name="get_TextInfo" />
+ <Member Name="get_ThreeLetterISOLanguageName" />
+ <Member Name="get_ThreeLetterWindowsLanguageName" />
<Member Name="get_TwoLetterISOLanguageName" />
+ <Member Name="get_UseUserOverride" />
+ <Member Name="GetCultureInfo(System.Int32)" />
+ <Member Name="GetCultureInfo(System.String)" />
+ <Member Name="GetCultureInfo(System.String,System.String)" />
+ <Member Name="GetCultureInfoByIetfLanguageTag(System.String)" />
+ <Member Name="GetCultures(System.Globalization.CultureTypes)" />
<Member Name="GetFormat(System.Type)" />
<Member Name="GetHashCode" />
<Member Status="ImplRoot" Name="OnDeserialized(System.Runtime.Serialization.StreamingContext)" />
<Member MemberType="Property" Name="DefaultThreadCurrentUICulture"/>
<Member MemberType="Property" Name="DisplayName" />
<Member MemberType="Property" Name="EnglishName" />
+ <Member MemberType="Property" Name="InstalledUICulture" />
<Member MemberType="Property" Name="InvariantCulture" />
<Member MemberType="Property" Name="IsNeutralCulture" />
<Member MemberType="Property" Name="IsReadOnly" />
+ <Member MemberType="Property" Name="LCID" />
<Member MemberType="Property" Name="Name" />
<Member MemberType="Property" Name="NativeName" />
<Member MemberType="Property" Name="NumberFormat" />
<Member MemberType="Property" Name="OptionalCalendars" />
<Member MemberType="Property" Name="Parent" />
<Member MemberType="Property" Name="TextInfo" />
+ <Member MemberType="Property" Name="ThreeLetterISOLanguageName" />
+ <Member MemberType="Property" Name="ThreeLetterWindowsLanguageName" />
<Member MemberType="Property" Name="TwoLetterISOLanguageName" />
+ <Member MemberType="Property" Name="UseUserOverride" />
<Member Status="ImplRoot" MemberType="Property" Name="SortName" />
<Member Status="ImplRoot" MemberType="Field" Name="m_parent" />
<Member Status="ImplRoot" MemberType="Field" Name="m_useUserOverride" Condition="not FEATURE_COREFX_GLOBALIZATION" />
<Member Name="#ctor(System.String)" />
<Member Name="#ctor(System.String,System.String)" />
<Member Name="#ctor(System.String,System.Exception)" />
+ <Member Name="#ctor(System.String,System.Int32,System.Exception)" />
+ <Member Name="#ctor(System.String,System.Int32,System.String)" />
<Member Name="#ctor(System.String,System.String,System.String)" />
<Member Name="#ctor(System.String,System.String,System.Exception)" />
<Member Name="#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" />
+ <Member Name="get_InvalidCultureId" />
<Member Name="get_InvalidCultureName" />
<Member Name="get_Message" />
+ <Member Name="GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" />
+ <Member MemberType="Property" Name="InvalidCultureId" />
<Member MemberType="Property" Name="InvalidCultureName" />
<Member MemberType="Property" Name="Message" />
</Type>
+ <Type Name="System.Globalization.CultureTypes">
+ <Member MemberType="Field" Name="AllCultures" />
+ <Member MemberType="Field" Name="FrameworkCultures" />
+ <Member MemberType="Field" Name="InstalledWin32Cultures" />
+ <Member MemberType="Field" Name="NeutralCultures" />
+ <Member MemberType="Field" Name="ReplacementCultures" />
+ <Member MemberType="Field" Name="SpecificCultures" />
+ <Member MemberType="Field" Name="UserCustomCulture" />
+ <Member MemberType="Field" Name="value__" />
+ <Member MemberType="Field" Name="WindowsOnlyCultures" />
+ </Type>
<Type Name="System.Globalization.DateTimeFormatInfo">
<Member Name="#ctor" />
<Member Name="Clone" />
<Member Name="get_Calendar" />
<Member Name="get_CalendarWeekRule" />
<Member Name="get_CurrentInfo" />
+ <Member Name="get_DateSeparator" />
<Member Name="get_DayNames" />
<Member Name="get_FirstDayOfWeek" />
<Member Name="get_FullDateTimePattern" />
<Member Name="get_MonthDayPattern" />
<Member Name="get_MonthGenitiveNames" />
<Member Name="get_MonthNames" />
+ <Member Name="get_NativeCalendarName" />
<Member Name="get_PMDesignator" />
<Member Name="get_RFC1123Pattern" />
<Member Name="get_ShortDatePattern" />
<Member Name="get_ShortestDayNames" />
<Member Name="get_ShortTimePattern" />
<Member Name="get_SortableDateTimePattern" />
+ <Member Name="get_TimeSeparator" />
<Member Name="get_UniversalSortableDateTimePattern" />
<Member Name="get_YearMonthPattern" />
<Member Name="GetAbbreviatedDayName(System.DayOfWeek)" />
<Member Name="GetAbbreviatedEraName(System.Int32)" />
<Member Name="GetAbbreviatedMonthName(System.Int32)" />
+ <Member Name="GetAllDateTimePatterns" />
+ <Member Name="GetAllDateTimePatterns(System.Char)" />
<Member Name="GetDayName(System.DayOfWeek)" />
<Member Name="GetEra(System.String)" />
<Member Name="GetEraName(System.Int32)" />
<Member Name="GetFormat(System.Type)" />
<Member Name="GetInstance(System.IFormatProvider)" />
<Member Name="GetMonthName(System.Int32)" />
+ <Member Name="GetShortestDayName(System.DayOfWeek)" />
<Member Status="ImplRoot" Name="OnDeserialized(System.Runtime.Serialization.StreamingContext)" />
<Member Status="ImplRoot" Name="OnSerializing(System.Runtime.Serialization.StreamingContext)" />
<Member Name="ReadOnly(System.Globalization.DateTimeFormatInfo)" />
<Member Name="set_AMDesignator(System.String)" />
<Member Name="set_Calendar(System.Globalization.Calendar)" />
<Member Name="set_CalendarWeekRule(System.Globalization.CalendarWeekRule)" />
+ <Member Name="set_DateSeparator(System.String)" />
<Member Name="set_DayNames(System.String[])" />
<Member Name="set_FirstDayOfWeek(System.DayOfWeek)" />
<Member Name="set_FullDateTimePattern(System.String)" />
<Member Name="set_ShortDatePattern(System.String)" />
<Member Name="set_ShortestDayNames(System.String[])" />
<Member Name="set_ShortTimePattern(System.String)" />
+ <Member Name="set_TimeSeparator(System.String)" />
<Member Name="set_YearMonthPattern(System.String)" />
+ <Member Name="SetAllDateTimePatterns(System.String[],System.Char)" />
<Member MemberType="Property" Name="AbbreviatedDayNames" />
<Member MemberType="Property" Name="AbbreviatedMonthGenitiveNames" />
<Member MemberType="Property" Name="AbbreviatedMonthNames" />
<Member MemberType="Property" Name="Calendar" />
<Member MemberType="Property" Name="CalendarWeekRule" />
<Member MemberType="Property" Name="CurrentInfo" />
+ <Member MemberType="Property" Name="DateSeparator" />
<Member MemberType="Property" Name="DayNames" />
<Member MemberType="Property" Name="FirstDayOfWeek" />
<Member MemberType="Property" Name="FullDateTimePattern" />
<Member MemberType="Property" Name="MonthDayPattern" />
<Member MemberType="Property" Name="MonthGenitiveNames" />
<Member MemberType="Property" Name="MonthNames" />
+ <Member MemberType="Property" Name="NativeCalendarName" />
<Member MemberType="Property" Name="PMDesignator" />
<Member MemberType="Property" Name="RFC1123Pattern" />
<Member MemberType="Property" Name="ShortDatePattern" />
<Member MemberType="Property" Name="ShortestDayNames" />
<Member MemberType="Property" Name="ShortTimePattern" />
<Member MemberType="Property" Name="SortableDateTimePattern" />
+ <Member MemberType="Property" Name="TimeSeparator" />
<Member MemberType="Property" Name="UniversalSortableDateTimePattern" />
<Member MemberType="Property" Name="YearMonthPattern" />
</Type>
<Member MemberType="Field" Name="RoundtripKind" />
<Member MemberType="Field" Name="value__" />
</Type>
-
+ <Type Name="System.Globalization.DaylightTime">
+ <Member Name="#ctor(System.DateTime,System.DateTime,System.TimeSpan)" />
+ <Member Name="get_Delta" />
+ <Member Name="get_End" />
+ <Member Name="get_Start" />
+ <Member MemberType="Property" Name="Delta" />
+ <Member MemberType="Property" Name="End" />
+ <Member MemberType="Property" Name="Start" />
+ </Type>
+ <Type Name="System.Globalization.DigitShapes">
+ <Member MemberType="Field" Name="Context" />
+ <Member MemberType="Field" Name="NativeNational" />
+ <Member MemberType="Field" Name="None" />
+ <Member MemberType="Field" Name="value__" />
+ </Type>
<Type Name="System.Globalization.PersianCalendar">
<Member MemberType="Field" Name="PersianEra" />
<Member Name="#ctor" />
<Member MemberType="Property" Name="TwoDigitYearMax" />
</Type>
<Type Name="System.Globalization.HebrewCalendar">
+ <Member MemberType="Field" Name="HebrewEra" />
<Member Name="#ctor" />
<Member Name="AddMonths(System.DateTime,System.Int32)" />
<Member Name="AddYears(System.DateTime,System.Int32)" />
<Member MemberType="Property" Name="TwoDigitYearMax" />
</Type>
<Type Name="System.Globalization.HijriCalendar">
+ <Member MemberType="Field" Name="HijriEra" />
<Member Name="#ctor" />
<Member Name="AddMonths(System.DateTime,System.Int32)" />
<Member Name="AddYears(System.DateTime,System.Int32)" />
<Member MemberType="Property" Name="MinSupportedDateTime" />
<Member MemberType="Property" Name="TwoDigitYearMax" />
</Type>
+ <Type Name="System.Globalization.IdnMapping">
+ <Member Name="#ctor" />
+ <Member Name="Equals(System.Object)" />
+ <Member Name="get_AllowUnassigned" />
+ <Member Name="get_UseStd3AsciiRules" />
+ <Member Name="GetAscii(System.String)" />
+ <Member Name="GetAscii(System.String,System.Int32)" />
+ <Member Name="GetAscii(System.String,System.Int32,System.Int32)" />
+ <Member Name="GetHashCode" />
+ <Member Name="GetUnicode(System.String)" />
+ <Member Name="GetUnicode(System.String,System.Int32)" />
+ <Member Name="GetUnicode(System.String,System.Int32,System.Int32)" />
+ <Member Name="set_AllowUnassigned(System.Boolean)" />
+ <Member Name="set_UseStd3AsciiRules(System.Boolean)" />
+ <Member MemberType="Property" Name="AllowUnassigned" />
+ <Member MemberType="Property" Name="UseStd3AsciiRules" />
+ </Type>
<Type Name="System.Globalization.KoreanCalendar">
<Member MemberType="Field" Name="KoreanEra" />
<Member Name="#ctor" />
<Member MemberType="Property" Name="MinSupportedDateTime" />
</Type>
<Type Name="System.Globalization.UmAlQuraCalendar">
+ <Member MemberType="Field" Name="UmAlQuraEra" />
<Member Name="#ctor" />
<Member Name="AddMonths(System.DateTime,System.Int32)" />
<Member Name="AddYears(System.DateTime,System.Int32)" />
<Member Name="get_CurrencyPositivePattern" />
<Member Name="get_CurrencySymbol" />
<Member Name="get_CurrentInfo" />
+ <Member Name="get_DigitSubstitution" />
<Member Name="get_InvariantInfo" />
<Member Name="get_IsReadOnly" />
<Member Name="get_NaNSymbol" />
+ <Member Name="get_NativeDigits" />
<Member Name="get_NegativeInfinitySymbol" />
<Member Name="get_NegativeSign" />
<Member Name="get_NumberDecimalDigits" />
<Member Name="set_CurrencyNegativePattern(System.Int32)" />
<Member Name="set_CurrencyPositivePattern(System.Int32)" />
<Member Name="set_CurrencySymbol(System.String)" />
+ <Member Name="set_DigitSubstitution(System.Globalization.DigitShapes)" />
<Member Name="set_NaNSymbol(System.String)" />
+ <Member Name="set_NativeDigits(System.String[])" />
<Member Name="set_NegativeInfinitySymbol(System.String)" />
<Member Name="set_NegativeSign(System.String)" />
<Member Name="set_NumberDecimalDigits(System.Int32)" />
<Member MemberType="Property" Name="CurrencyPositivePattern" />
<Member MemberType="Property" Name="CurrencySymbol" />
<Member MemberType="Property" Name="CurrentInfo" />
+ <Member MemberType="Property" Name="DigitSubstitution" />
<Member MemberType="Property" Name="InvariantInfo" />
<Member MemberType="Property" Name="IsReadOnly" />
<Member MemberType="Property" Name="NaNSymbol" />
+ <Member MemberType="Property" Name="NativeDigits" />
<Member MemberType="Property" Name="NegativeInfinitySymbol" />
<Member MemberType="Property" Name="NegativeSign" />
<Member MemberType="Property" Name="NumberDecimalDigits" />
<Member MemberType="Field" Name="value__" />
</Type>
<Type Name="System.Globalization.RegionInfo">
+ <Member Name="#ctor(System.Int32)" />
<Member Name="#ctor(System.String)" />
<Member Name="Equals(System.Object)" />
<Member Name="get_CurrencySymbol" />
+ <Member Name="get_CurrencyEnglishName" />
+ <Member Name="get_CurrencyNativeName" />
<Member Name="get_CurrentRegion" />
<Member Name="get_DisplayName" />
<Member Name="get_EnglishName" />
+ <Member Name="get_GeoId" />
<Member Name="get_IsMetric" />
<Member Name="get_ISOCurrencySymbol" />
<Member Name="get_Name" />
<Member Name="get_NativeName" />
+ <Member Name="get_ThreeLetterISORegionName" />
+ <Member Name="get_ThreeLetterWindowsRegionName" />
<Member Name="get_TwoLetterISORegionName" />
<Member Name="GetHashCode" />
<Member Status="ImplRoot" Name="OnDeserialized(System.Runtime.Serialization.StreamingContext)" />
<Member Status="ImplRoot" Name="OnSerializing(System.Runtime.Serialization.StreamingContext)" />
<Member Name="ToString" />
<Member MemberType="Property" Name="CurrencySymbol" />
+ <Member MemberType="Property" Name="CurrencyEnglishName" />
+ <Member MemberType="Property" Name="CurrencyNativeName" />
<Member MemberType="Property" Name="CurrentRegion" />
<Member MemberType="Property" Name="DisplayName" />
<Member MemberType="Property" Name="EnglishName" />
+ <Member MemberType="Property" Name="GeoId" />
<Member MemberType="Property" Name="IsMetric" />
<Member MemberType="Property" Name="ISOCurrencySymbol" />
<Member MemberType="Property" Name="Name" />
<Member MemberType="Property" Name="NativeName" />
+ <Member MemberType="Property" Name="ThreeLetterISORegionName" />
+ <Member MemberType="Property" Name="ThreeLetterWindowsRegionName" />
<Member MemberType="Property" Name="TwoLetterISORegionName" />
</Type>
+ <Type Name="System.Globalization.SortKey">
+ <Member Name="Compare(System.Globalization.SortKey,System.Globalization.SortKey)" />
+ <Member Name="Equals(System.Object)" />
+ <Member Name="get_KeyData" />
+ <Member Name="get_OriginalString" />
+ <Member Name="GetHashCode" />
+ <Member Name="ToString" />
+ <Member MemberType="Property" Name="KeyData" />
+ <Member MemberType="Property" Name="OriginalString" />
+ </Type>
+ <Type Name="System.Globalization.SortVersion">
+ <Member Name="#ctor(System.Int32,System.Guid)" />
+ <Member Name="Equals(System.Globalization.SortVersion)" />
+ <Member Name="Equals(System.Object)" />
+ <Member Name="get_FullVersion" />
+ <Member Name="get_SortId" />
+ <Member Name="GetHashCode" />
+ <Member Name="op_Equality(System.Globalization.SortVersion,System.Globalization.SortVersion)" />
+ <Member Name="op_Inequality(System.Globalization.SortVersion,System.Globalization.SortVersion)" />
+ <Member MemberType="Property" Name="FullVersion" />
+ <Member MemberType="Property" Name="SortId" />
+ </Type>
<Type Name="System.Globalization.StringInfo">
<Member Name="#ctor" />
<Member Name="#ctor(System.String)" />
<Member Status="ImplRoot" Name="OnDeserializing(System.Runtime.Serialization.StreamingContext)" />
<Member Name="ParseCombiningCharacters(System.String)" />
<Member Name="set_String(System.String)" />
+ <Member Name="SubstringByTextElements(System.Int32)" />
+ <Member Name="SubstringByTextElements(System.Int32,System.Int32)" />
<Member MemberType="Property" Name="LengthInTextElements" />
<Member MemberType="Property" Name="String" />
</Type>
<Member MemberType="Property" Name="ElementIndex" />
</Type>
<Type Name="System.Globalization.TextInfo">
+ <Member Name="Clone" />
<Member Name="Equals(System.Object)" />
+ <Member Name="get_ANSICodePage" />
<Member Name="get_CultureName" />
+ <Member Name="get_EBCDICCodePage" />
<Member Name="get_IsReadOnly" />
<Member Name="get_IsRightToLeft" />
+ <Member Name="get_LCID" />
<Member Name="get_ListSeparator" />
+ <Member Name="get_MacCodePage" />
+ <Member Name="get_OEMCodePage" />
<Member Name="GetHashCode" />
<Member Status="ImplRoot" Name="OnDeserialized(System.Runtime.Serialization.StreamingContext)" />
<Member Status="ImplRoot" Name="OnDeserializing(System.Runtime.Serialization.StreamingContext)" />
<Member Status="ImplRoot" Name="OnSerializing(System.Runtime.Serialization.StreamingContext)" />
+ <Member Status="ImplRoot" Name="System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)" />
+ <Member Name="ReadOnly(System.Globalization.TextInfo)" />
<Member Name="set_ListSeparator(System.String)" />
<Member Name="ToLower(System.Char)" />
<Member Name="ToLower(System.String)" />
<Member Name="ToString" />
+ <Member Name="ToTitleCase(System.String)" />
<Member Name="ToUpper(System.Char)" />
<Member Name="ToUpper(System.String)" />
+ <Member MemberType="Property" Name="ANSICodePage" />
<Member MemberType="Property" Name="CultureName" />
+ <Member MemberType="Property" Name="EBCDICCodePage" />
<Member MemberType="Property" Name="IsReadOnly" />
<Member MemberType="Property" Name="IsRightToLeft" />
+ <Member MemberType="Property" Name="LCID" />
<Member MemberType="Property" Name="ListSeparator" />
+ <Member MemberType="Property" Name="MacCodePage" />
+ <Member MemberType="Property" Name="OEMCodePage" />
</Type>
<Type Name="System.Globalization.ThaiBuddhistCalendar">
<Member MemberType="Field" Name="ThaiBuddhistEra" />
<GlobalizationSources Include="$(BclSourcesRoot)\System\Globalization\DaylightTime.cs" />
</ItemGroup>
<ItemGroup Condition="'$(FeatureCoreFxGlobalization)' != 'true'">
+ <GlobalizationSources Include="$(BclSourcesRoot)\System\Globalization\STUBS.cs" />
<GlobalizationSources Include="$(BclSourcesRoot)\System\Globalization\BidiCategory.cs" />
<GlobalizationSources Include="$(BclSourcesRoot)\System\Globalization\Calendar.cs" />
<GlobalizationSources Include="$(BclSourcesRoot)\System\Globalization\CalendarData.cs" />
</ItemGroup>
<ItemGroup Condition="'$(FeatureCoreFxGlobalization)' == 'true'">
<GlobalizationSources Include="$(CoreFxSourcesRoot)\SR.cs" />
-
+ <GlobalizationSources Include="$(CoreFxSourcesRoot)\System\Globalization\STUBS.cs" />
<GlobalizationSources Include="$(CoreFxSourcesRoot)\System\Globalization\Calendar.cs" />
<GlobalizationSources Include="$(CoreFxSourcesRoot)\System\Globalization\CalendarData.cs" />
<GlobalizationSources Include="$(CoreFxSourcesRoot)\System\Globalization\CalendarWeekRule.cs" />
{
public const int CurrentEra = 0;
protected Calendar() { }
-#if FEATURE_COREFX_GLOBALIZATION
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public virtual System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } }
-#endif
protected virtual int DaysInYearBeforeMinSupportedYear { get { throw null; } }
public abstract int[] Eras { get; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public abstract int GetEra(System.DateTime time);
public virtual int GetHour(System.DateTime time) { throw null; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public virtual int GetLeapMonth(int year) { throw null; }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
public virtual int GetLeapMonth(int year, int era) { throw null; }
public virtual double GetMilliseconds(System.DateTime time) { throw null; }
public virtual int GetMinute(System.DateTime time) { throw null; }
public abstract bool IsLeapMonth(int year, int month, int era);
public virtual bool IsLeapYear(int year) { throw null; }
public abstract bool IsLeapYear(int year, int era);
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public static System.Globalization.Calendar ReadOnly(System.Globalization.Calendar calendar) { throw null; }
public virtual System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond) { throw null; }
public abstract System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era);
public virtual int ToFourDigitYear(int year) { throw null; }
}
-#if FEATURE_COREFX_GLOBALIZATION
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public enum CalendarAlgorithmType
{
SolarCalendar = 1,
Unknown = 0,
}
-#endif
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public enum CalendarWeekRule
{
}
public static partial class CharUnicodeInfo
{
+ public static int GetDecimalDigitValue(char ch) { throw null; }
+ public static int GetDecimalDigitValue(string s, int index) { throw null; }
+ public static int GetDigitValue(char ch) { throw null; }
+ public static int GetDigitValue(string s, int index) { throw null; }
public static double GetNumericValue(char ch) { throw null; }
public static double GetNumericValue(string s, int index) { throw null; }
public static System.Globalization.UnicodeCategory GetUnicodeCategory(char ch) { throw null; }
public override int GetEra(System.DateTime time) { throw null; }
}
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
- public partial class CompareInfo
+ public partial class CompareInfo : System.Runtime.Serialization.IDeserializationCallback
{
+ public int LCID { get { throw null; } }
internal CompareInfo() { }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public virtual string Name { get { throw null; } }
[System.Security.SecuritySafeCriticalAttribute]
public virtual int Compare(string string1, string string2, System.Globalization.CompareOptions options) { throw null; }
public override bool Equals(object value) { throw null; }
+ public static System.Globalization.CompareInfo GetCompareInfo(int culture) { throw null; }
+ public static System.Globalization.CompareInfo GetCompareInfo(int culture, System.Reflection.Assembly assembly) { throw null; }
public static System.Globalization.CompareInfo GetCompareInfo(string name) { throw null; }
+ public static System.Globalization.CompareInfo GetCompareInfo(string name, System.Reflection.Assembly assembly) { throw null; }
public override int GetHashCode() { throw null; }
public virtual int GetHashCode(string source, System.Globalization.CompareOptions options) { throw null; }
+ public virtual System.Globalization.SortKey GetSortKey(string source) { throw null; }
+ public virtual System.Globalization.SortKey GetSortKey(string source, System.Globalization.CompareOptions options) { throw null; }
public virtual int IndexOf(string source, char value) { throw null; }
public virtual int IndexOf(string source, char value, System.Globalization.CompareOptions options) { throw null; }
+ public virtual int IndexOf(string source, char value, int startIndex) { throw null; }
public virtual int IndexOf(string source, char value, int startIndex, System.Globalization.CompareOptions options) { throw null; }
public virtual int IndexOf(string source, char value, int startIndex, int count) { throw null; }
[System.Security.SecuritySafeCriticalAttribute]
public virtual int IndexOf(string source, char value, int startIndex, int count, System.Globalization.CompareOptions options) { throw null; }
public virtual int IndexOf(string source, string value) { throw null; }
public virtual int IndexOf(string source, string value, System.Globalization.CompareOptions options) { throw null; }
+ public virtual int IndexOf(string source, string value, int startIndex) { throw null; }
public virtual int IndexOf(string source, string value, int startIndex, System.Globalization.CompareOptions options) { throw null; }
public virtual int IndexOf(string source, string value, int startIndex, int count) { throw null; }
[System.Security.SecuritySafeCriticalAttribute]
public virtual bool IsPrefix(string source, string prefix) { throw null; }
[System.Security.SecuritySafeCriticalAttribute]
public virtual bool IsPrefix(string source, string prefix, System.Globalization.CompareOptions options) { throw null; }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public static bool IsSortable(char ch) { throw null; }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ [System.Security.SecuritySafeCriticalAttribute]
+ public static bool IsSortable(string text) { throw null; }
public virtual bool IsSuffix(string source, string suffix) { throw null; }
[System.Security.SecuritySafeCriticalAttribute]
public virtual bool IsSuffix(string source, string suffix, System.Globalization.CompareOptions options) { throw null; }
public virtual int LastIndexOf(string source, char value) { throw null; }
public virtual int LastIndexOf(string source, char value, System.Globalization.CompareOptions options) { throw null; }
+ public virtual int LastIndexOf(string source, char value, int startIndex) { throw null; }
public virtual int LastIndexOf(string source, char value, int startIndex, System.Globalization.CompareOptions options) { throw null; }
public virtual int LastIndexOf(string source, char value, int startIndex, int count) { throw null; }
[System.Security.SecuritySafeCriticalAttribute]
public virtual int LastIndexOf(string source, char value, int startIndex, int count, System.Globalization.CompareOptions options) { throw null; }
public virtual int LastIndexOf(string source, string value) { throw null; }
public virtual int LastIndexOf(string source, string value, System.Globalization.CompareOptions options) { throw null; }
+ public virtual int LastIndexOf(string source, string value, int startIndex) { throw null; }
public virtual int LastIndexOf(string source, string value, int startIndex, System.Globalization.CompareOptions options) { throw null; }
public virtual int LastIndexOf(string source, string value, int startIndex, int count) { throw null; }
[System.Security.SecuritySafeCriticalAttribute]
public virtual int LastIndexOf(string source, string value, int startIndex, int count, System.Globalization.CompareOptions options) { throw null; }
+ void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
public override string ToString() { throw null; }
}
[System.FlagsAttribute]
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public partial class CultureInfo : System.ICloneable, System.IFormatProvider
{
+ public CultureInfo(int culture) { throw null; }
+ public CultureInfo(int culture, bool useUserOverride) { throw null; }
public CultureInfo(string name) { }
+ public CultureInfo(string name, bool useUserOverride) { throw null; }
public virtual System.Globalization.Calendar Calendar { get { throw null; } }
public virtual System.Globalization.CompareInfo CompareInfo { get { throw null; } }
public static System.Globalization.CultureInfo CurrentCulture { get { throw null; } set { } }
public static System.Globalization.CultureInfo DefaultThreadCurrentUICulture { get { throw null; } [System.Security.SecuritySafeCriticalAttribute]set { } }
public virtual string DisplayName { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
public virtual string EnglishName { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
+ public static System.Globalization.CultureInfo InstalledUICulture { get { throw null; } }
public static System.Globalization.CultureInfo InvariantCulture { get { throw null; } }
public virtual bool IsNeutralCulture { get { throw null; } }
public bool IsReadOnly { get { throw null; } }
+ public virtual int LCID { get { throw null; } }
public virtual string Name { get { throw null; } }
public virtual string NativeName { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
public virtual System.Globalization.NumberFormatInfo NumberFormat { get { throw null; } set { } }
public virtual System.Globalization.Calendar[] OptionalCalendars { get { throw null; } }
public virtual System.Globalization.CultureInfo Parent { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
public virtual System.Globalization.TextInfo TextInfo { get { throw null; } }
+ public virtual string ThreeLetterISOLanguageName { get { throw null; } }
+ public virtual string ThreeLetterWindowsLanguageName { get { throw null; } }
public virtual string TwoLetterISOLanguageName { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
+ public bool UseUserOverride { get { throw null; } }
+ public void ClearCachedData() { throw null; }
public virtual object Clone() { throw null; }
+ public static System.Globalization.CultureInfo CreateSpecificCulture(string name) { throw null; }
public override bool Equals(object value) { throw null; }
+ public static System.Globalization.CultureInfo GetCultureInfo(int culture) { throw null; }
+ public static System.Globalization.CultureInfo GetCultureInfo(string name) { throw null; }
+ public static System.Globalization.CultureInfo GetCultureInfo(string name, string altName) { throw null; }
+ public static System.Globalization.CultureInfo GetCultureInfoByIetfLanguageTag(string name) { throw null; }
+ public static System.Globalization.CultureInfo[] GetCultures(System.Globalization.CultureTypes types) { throw null; }
public virtual object GetFormat(System.Type formatType) { throw null; }
public override int GetHashCode() { throw null; }
public static System.Globalization.CultureInfo ReadOnly(System.Globalization.CultureInfo ci) { throw null; }
public CultureNotFoundException() { }
public CultureNotFoundException(string message) { }
public CultureNotFoundException(string message, System.Exception innerException) { }
+ public CultureNotFoundException(string message, int invalidCultureId, System.Exception innerException) { }
+ public CultureNotFoundException(string paramName, int invalidCultureId, string message) { }
public CultureNotFoundException(string paramName, string message) { }
public CultureNotFoundException(string message, string invalidCultureName, System.Exception innerException) { }
public CultureNotFoundException(string paramName, string invalidCultureName, string message) { }
protected CultureNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
+ public virtual System.Nullable<int> InvalidCultureId { get { throw null; } }
public virtual string InvalidCultureName { get { throw null; } }
public override string Message { get { throw null; } }
[System.Security.SecurityCriticalAttribute]
public System.Globalization.Calendar Calendar { get { throw null; } set { } }
public System.Globalization.CalendarWeekRule CalendarWeekRule { get { throw null; } set { } }
public static System.Globalization.DateTimeFormatInfo CurrentInfo { get { throw null; } }
+ public string DateSeparator { get { throw null; } set { throw null; } }
public string[] DayNames { get { throw null; } set { } }
public System.DayOfWeek FirstDayOfWeek { get { throw null; } set { } }
public string FullDateTimePattern { get { throw null; } set { } }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string[] MonthGenitiveNames { get { throw null; } set { } }
public string[] MonthNames { get { throw null; } set { } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public string NativeCalendarName { get { throw null; } }
public string PMDesignator { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } set { } }
public string RFC1123Pattern { get { throw null; } }
public string ShortDatePattern { get { throw null; } set { } }
public string[] ShortestDayNames { get { throw null; } set { } }
public string ShortTimePattern { get { throw null; } set { } }
public string SortableDateTimePattern { get { throw null; } }
+ public string TimeSeparator { get { throw null; } set { throw null; } }
public string UniversalSortableDateTimePattern { get { throw null; } }
public string YearMonthPattern { get { throw null; } set { } }
public object Clone() { throw null; }
public string GetAbbreviatedDayName(System.DayOfWeek dayofweek) { throw null; }
public string GetAbbreviatedEraName(int era) { throw null; }
public string GetAbbreviatedMonthName(int month) { throw null; }
+ public string[] GetAllDateTimePatterns() { throw null; }
+ public string[] GetAllDateTimePatterns(char format) { throw null; }
public string GetDayName(System.DayOfWeek dayofweek) { throw null; }
public int GetEra(string eraName) { throw null; }
public string GetEraName(int era) { throw null; }
public object GetFormat(System.Type formatType) { throw null; }
public static System.Globalization.DateTimeFormatInfo GetInstance(System.IFormatProvider provider) { throw null; }
public string GetMonthName(int month) { throw null; }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public string GetShortestDayName(System.DayOfWeek dayOfWeek) { throw null; }
public static System.Globalization.DateTimeFormatInfo ReadOnly(System.Globalization.DateTimeFormatInfo dtfi) { throw null; }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public void SetAllDateTimePatterns(string[] patterns, char format) { throw null; }
}
[System.FlagsAttribute]
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
RoundtripKind = 128,
}
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
+ public partial class DaylightTime
+ {
+ public DaylightTime(System.DateTime start, System.DateTime end, System.TimeSpan delta) { throw null; }
+ public System.TimeSpan Delta { get { throw null; } }
+ public System.DateTime End { get { throw null; } }
+ public System.DateTime Start { get { throw null; } }
+ }
+ [System.Runtime.InteropServices.ComVisibleAttribute(true)]
+ public enum DigitShapes
+ {
+ Context = 0,
+ NativeNational = 2,
+ None = 1,
+ }
+ [System.Runtime.InteropServices.ComVisibleAttribute(true)]
public abstract partial class EastAsianLunisolarCalendar : System.Globalization.Calendar
{
internal EastAsianLunisolarCalendar() { }
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public partial class HebrewCalendar : System.Globalization.Calendar
{
+ public static readonly int HebrewEra;
public HebrewCalendar() { }
#if FEATURE_COREFX_GLOBALIZATION
public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } }
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public partial class HijriCalendar : System.Globalization.Calendar
{
+ public static readonly int HijriEra;
public HijriCalendar() { }
#if FEATURE_COREFX_GLOBALIZATION
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; }
public override int ToFourDigitYear(int year) { throw null; }
}
+ public sealed partial class IdnMapping
+ {
+ public IdnMapping() { }
+ public bool AllowUnassigned { get { throw null; } set { throw null; } }
+ public bool UseStd3AsciiRules { get { throw null; } set { throw null; } }
+ public override bool Equals(object obj) { throw null; }
+ public string GetAscii(string unicode) { throw null; }
+ public string GetAscii(string unicode, int index) { throw null; }
+ public string GetAscii(string unicode, int index, int count) { throw null; }
+ public override int GetHashCode() { throw null; }
+ public string GetUnicode(string ascii) { throw null; }
+ public string GetUnicode(string ascii, int index) { throw null; }
+ public string GetUnicode(string ascii, int index, int count) { throw null; }
+ }
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public partial class JapaneseCalendar : System.Globalization.Calendar
{
public int CurrencyPositivePattern { get { throw null; } set { } }
public string CurrencySymbol { get { throw null; } set { } }
public static System.Globalization.NumberFormatInfo CurrentInfo { get { throw null; } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public System.Globalization.DigitShapes DigitSubstitution { get { throw null; } set { throw null; } }
public static System.Globalization.NumberFormatInfo InvariantInfo { get { throw null; } }
public bool IsReadOnly { get { throw null; } }
public string NaNSymbol { get { throw null; } set { } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public string[] NativeDigits { get { throw null; } set { throw null; } }
public string NegativeInfinitySymbol { get { throw null; } set { } }
public string NegativeSign { get { throw null; } set { } }
public int NumberDecimalDigits { get { throw null; } set { } }
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public partial class RegionInfo
{
+ public RegionInfo(int culture) { throw null; }
[System.Security.SecuritySafeCriticalAttribute]
public RegionInfo(string name) { }
public virtual string CurrencySymbol { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public virtual string CurrencyEnglishName { get { throw null; } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public virtual string CurrencyNativeName { get { throw null; } }
public static System.Globalization.RegionInfo CurrentRegion { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
public virtual string DisplayName { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
public virtual string EnglishName { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public virtual int GeoId { get { throw null; } }
public virtual bool IsMetric { get { throw null; } }
public virtual string ISOCurrencySymbol { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
public virtual string Name { get { throw null; } }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public virtual string NativeName { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
+ public virtual string ThreeLetterISORegionName { get { throw null; } }
+ public virtual string ThreeLetterWindowsRegionName { get { throw null; } }
public virtual string TwoLetterISORegionName { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } }
public override bool Equals(object value) { throw null; }
public override int GetHashCode() { throw null; }
public override string ToString() { throw null; }
}
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
+ public partial class SortKey
+ {
+ internal SortKey() { throw null; }
+ public virtual byte[] KeyData { get { throw null; } }
+ public virtual string OriginalString { get { throw null; } }
+ public static int Compare(System.Globalization.SortKey sortkey1, System.Globalization.SortKey sortkey2) { throw null; }
+ public override bool Equals(object value) { throw null; }
+ public override int GetHashCode() { throw null; }
+ public override string ToString() { throw null; }
+ }
+ public sealed partial class SortVersion : System.IEquatable<System.Globalization.SortVersion>
+ {
+ public SortVersion(int fullVersion, System.Guid sortId) { throw null; }
+ public int FullVersion { get { throw null; } }
+ public System.Guid SortId { get { throw null; } }
+ public bool Equals(System.Globalization.SortVersion other) { throw null; }
+ public override bool Equals(object obj) { throw null; }
+ public override int GetHashCode() { throw null; }
+ public static bool operator ==(System.Globalization.SortVersion left, System.Globalization.SortVersion right) { throw null; }
+ public static bool operator !=(System.Globalization.SortVersion left, System.Globalization.SortVersion right) { throw null; }
+ }
+ [System.Runtime.InteropServices.ComVisibleAttribute(true)]
public partial class StringInfo
{
public StringInfo() { }
public static System.Globalization.TextElementEnumerator GetTextElementEnumerator(string str) { throw null; }
public static System.Globalization.TextElementEnumerator GetTextElementEnumerator(string str, int index) { throw null; }
public static int[] ParseCombiningCharacters(string str) { throw null; }
+ public string SubstringByTextElements(int startingTextElement) { throw null; }
+ public string SubstringByTextElements(int startingTextElement, int lengthInTextElements) { throw null; }
}
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public partial class TaiwanCalendar : System.Globalization.Calendar
public void Reset() { }
}
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
- public partial class TextInfo : System.ICloneable
+ public partial class TextInfo : System.ICloneable, System.Runtime.Serialization.IDeserializationCallback
{
internal TextInfo() { }
+ public virtual int ANSICodePage { get { throw null; } }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string CultureName { get { throw null; } }
+ public virtual int EBCDICCodePage { get { throw null; } }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public bool IsReadOnly { get { throw null; } }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public bool IsRightToLeft { get { throw null; } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public int LCID { get { throw null; } }
public virtual string ListSeparator { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)]set { } }
+ public virtual int MacCodePage { get { throw null; } }
+ public virtual int OEMCodePage { get { throw null; } }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public virtual object Clone() { throw null; }
public override bool Equals(object obj) { throw null; }
public override int GetHashCode() { throw null; }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public static System.Globalization.TextInfo ReadOnly(System.Globalization.TextInfo textInfo) { throw null; }
+ void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { throw null; }
[System.Security.SecuritySafeCriticalAttribute]
public virtual char ToLower(char c) { throw null; }
[System.Security.SecuritySafeCriticalAttribute]
public virtual string ToLower(string str) { throw null; }
public override string ToString() { throw null; }
+ public string ToTitleCase(string str) { throw null; }
[System.Security.SecuritySafeCriticalAttribute]
public virtual char ToUpper(char c) { throw null; }
[System.Security.SecuritySafeCriticalAttribute]
}
public partial class UmAlQuraCalendar : System.Globalization.Calendar
{
+ public const int UmAlQuraEra = 1;
public UmAlQuraCalendar() { }
#if FEATURE_COREFX_GLOBALIZATION
public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } }
[System.FlagsAttribute]
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
- internal enum CultureTypes
+ public enum CultureTypes
{
AllCultures = 7,
[System.ObsoleteAttribute("This value has been deprecated. Please use other values in CultureTypes.")]
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- public class CompareInfo : IDeserializationCallback
+ public partial class CompareInfo : IDeserializationCallback
{
// Mask used to check if IndexOf()/LastIndexOf()/IsPrefix()/IsPostfix() has the right flags.
private const CompareOptions ValidIndexMaskOffFlags =
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- public class CultureInfo : ICloneable, IFormatProvider {
+ public partial class CultureInfo : ICloneable, IFormatProvider {
//--------------------------------------------------------------------//
// Internal Information //
//--------------------------------------------------------------------//
[System.Runtime.InteropServices.ComVisible(true)]
[Serializable]
- public class CultureNotFoundException : ArgumentException, ISerializable
+ public partial class CultureNotFoundException : ArgumentException, ISerializable
{
private string m_invalidCultureName; // unrecognized culture name
#if !FEATURE_CORECLR
return (this.dateSeparator);
}
+#if FEATURE_CORECLR
+ set { throw new NotImplementedException(); }
+#endif
+
#if !FEATURE_CORECLR
set {
if (IsReadOnly)
return (timeSeparator);
}
+#if FEATURE_CORECLR
+ set { throw new NotImplementedException(); }
+#endif
+
#if !FEATURE_CORECLR
set {
if (IsReadOnly)
public String GetAscii(String unicode, int index, int count)
{
- if (unicode==null) throw new ArgumentNullException("unicode");
+ throw null;
+ /*if (unicode==null) throw new ArgumentNullException("unicode");
if (index < 0 || count < 0)
throw new ArgumentOutOfRangeException((index < 0) ? "index" : "count",
Environment.GetResourceString("ArgumentOutOfRange_NeedNonNegNum"));
}
// Go ahead and encode it
- return punycode_encode(unicode);
+ return punycode_encode(unicode);*/
}
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- sealed public class NumberFormatInfo : ICloneable, IFormatProvider
+ sealed public partial class NumberFormatInfo : ICloneable, IFormatProvider
{
// invariantInfo is constant irrespective of your current culture.
private static volatile NumberFormatInfo invariantInfo;
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- public class RegionInfo
+ public partial class RegionInfo
{
//--------------------------------------------------------------------//
// Internal Information //
--- /dev/null
+namespace System.Globalization
+{
+ public partial class CompareInfo : System.Runtime.Serialization.IDeserializationCallback
+ {
+ public int LCID { get { throw new NotImplementedException(); } }
+ public static System.Globalization.CompareInfo GetCompareInfo(int culture) { throw new NotImplementedException(); }
+ public static System.Globalization.CompareInfo GetCompareInfo(int culture, System.Reflection.Assembly assembly) { throw new NotImplementedException(); }
+ }
+
+ public partial class CultureInfo : System.ICloneable, System.IFormatProvider
+ {
+ public CultureInfo(int culture) { throw new NotImplementedException(); }
+ public CultureInfo(int culture, bool useUserOverride) { throw new NotImplementedException(); }
+ public virtual int LCID { get { throw new NotImplementedException(); } }
+ public virtual string ThreeLetterISOLanguageName { get { throw new NotImplementedException(); } }
+ public virtual string ThreeLetterWindowsLanguageName { get { throw new NotImplementedException(); } }
+ public static System.Globalization.CultureInfo CreateSpecificCulture(string name) { throw new NotImplementedException(); }
+ public static System.Globalization.CultureInfo GetCultureInfo(int culture) { throw new NotImplementedException(); }
+ public static System.Globalization.CultureInfo GetCultureInfoByIetfLanguageTag(string name) { throw new NotImplementedException(); }
+ public static System.Globalization.CultureInfo[] GetCultures(System.Globalization.CultureTypes types) { throw new NotImplementedException(); }
+ }
+
+ public partial class CultureNotFoundException : System.ArgumentException, System.Runtime.Serialization.ISerializable
+ {
+ public CultureNotFoundException(string message, int invalidCultureId, System.Exception innerException) { throw new NotImplementedException(); }
+ public CultureNotFoundException(string paramName, int invalidCultureId, string message) { throw new NotImplementedException(); }
+ public virtual System.Nullable<int> InvalidCultureId { get { throw new NotImplementedException(); } }
+ }
+
+ /*public partial class DateTimeFormatInfo
+ {
+ Can't do partials here so implement the stub in the main class
+ public String DateSeparator { set { throw null; } }
+ public String TimeSeparator { set { throw null; } }
+ }*/
+
+ public sealed partial class NumberFormatInfo : System.ICloneable, System.IFormatProvider
+ {
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public System.Globalization.DigitShapes DigitSubstitution { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } }
+ }
+
+ public partial class RegionInfo
+ {
+ public RegionInfo(int culture) { throw new NotImplementedException(); }
+ public virtual string ThreeLetterISORegionName { get { throw new NotImplementedException(); } }
+ public virtual string ThreeLetterWindowsRegionName { get { throw new NotImplementedException(); } }
+ }
+
+ public partial class SortKey
+ {
+ internal SortKey() { throw new NotImplementedException(); }
+ }
+
+ public sealed partial class SortVersion : System.IEquatable<System.Globalization.SortVersion>
+ {
+ public SortVersion(int fullVersion, System.Guid sortId) { throw new NotImplementedException(); }
+ public int FullVersion { get { throw new NotImplementedException(); } }
+ public System.Guid SortId { get { throw new NotImplementedException(); } }
+ public bool Equals(System.Globalization.SortVersion other) { throw new NotImplementedException(); }
+ public override bool Equals(object obj) { throw new NotImplementedException(); }
+ public override int GetHashCode() { throw new NotImplementedException(); }
+ public static bool operator ==(System.Globalization.SortVersion left, System.Globalization.SortVersion right) { throw new NotImplementedException(); }
+ public static bool operator !=(System.Globalization.SortVersion left, System.Globalization.SortVersion right) { throw new NotImplementedException(); }
+ }
+
+ public partial class TextInfo : System.ICloneable, System.Runtime.Serialization.IDeserializationCallback
+ {
+ public virtual int ANSICodePage { get { throw new NotImplementedException(); } }
+ public virtual int EBCDICCodePage { get { throw new NotImplementedException(); } }
+ [System.Runtime.InteropServices.ComVisibleAttribute(false)]
+ public int LCID { get { throw new NotImplementedException(); } }
+ public virtual int MacCodePage { get { throw new NotImplementedException(); } }
+ public virtual int OEMCodePage { get { throw new NotImplementedException(); } }
+ public string ToTitleCase(string str) { throw new NotImplementedException(); }
+ }
+}
\ No newline at end of file
[System.Runtime.InteropServices.ComVisible(true)]
[Serializable]
- public class SortKey
+ public partial class SortKey
{
//--------------------------------------------------------------------//
// Internal Information //
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
- public class TextInfo : ICloneable, IDeserializationCallback
+ public partial class TextInfo : ICloneable, IDeserializationCallback
{
//--------------------------------------------------------------------//
// Internal Information //
return new String(cBuffer, 0, iLength);
}
+#if !FEATURE_CORECLR
[System.Security.SecurityCritical] // auto-generated
[MethodImplAttribute(MethodImplOptions.InternalCall)]
unsafe private static extern int nativeNormalizationNormalizeString(
[DllImport(JitHelpers.QCall, CharSet = CharSet.Unicode)]
unsafe private static extern void nativeNormalizationInitNormalization(
NormalizationForm normForm, byte* pTableData);
+#else
+ unsafe private static int nativeNormalizationNormalizeString(
+ NormalizationForm normForm, ref int iError,
+ String lpSrcString, int cwSrcLength,
+ char[] lpDstString, int cwDstLength)
+ {
+ throw new NotImplementedException();
+ }
+
+ unsafe private static bool nativeNormalizationIsNormalizedString(
+ NormalizationForm normForm, ref int iError,
+ String lpString, int cwLength)
+ {
+ throw new NotImplementedException();
+ }
+
+ unsafe private static void nativeNormalizationInitNormalization(
+ NormalizationForm normForm, byte* pTableData)
+ {
+ throw new NotImplementedException();
+ }
+#endif
}
}
QCFuncElement("InternalCompareString", COMNlsInfo::InternalCompareString)
QCFuncElement("InternalFindNLSStringEx", COMNlsInfo::InternalFindNLSStringEx)
QCFuncElement("NativeInternalInitSortHandle", COMNlsInfo::InternalInitSortHandle)
-#ifndef FEATURE_CORECLR
QCFuncElement("InternalIsSortable", COMNlsInfo::InternalIsSortable)
QCFuncElement("InternalGetSortKey", COMNlsInfo::InternalGetSortKey)
+#ifndef FEATURE_CORECLR
QCFuncElement("InternalGetSortVersion", COMNlsInfo::InternalGetSortVersion)
QCFuncElement("InternalGetNlsVersionEx", COMNlsInfo::InternalGetNlsVersionEx)
#endif