本文整理匯總了C#中System.Globalization.CultureInfo.NullReference方法的典型用法代碼示例。如果您正苦於以下問題:C# CultureInfo.NullReference方法的具體用法?C# CultureInfo.NullReference怎麽用?C# CultureInfo.NullReference使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Globalization.CultureInfo
的用法示例。
在下文中一共展示了CultureInfo.NullReference方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: CompareTo
/// <summary>
/// Compares this instance to the <paramref name="comparand"/> using the specified comparison options and culture-specific information to influence the comparison, and returns an integer that indicates the relationship of the two strings to each other in the sort order.
/// </summary>
/// <param name="comparand">The substring to compare with this instance.</param>
/// <param name="options">Options to use when performing the comparison (such as ignoring case or symbols).</param>
/// <param name="culture">The culture that supplies culture-specific comparison information. <c>null</c> is interpreted as the current culture.</param>
/// <returns>A 32-bit signed integer that indicates the lexical relationship between the two substrings.</returns>
public int CompareTo( Substring comparand, CompareOptions options = CompareOptions.None, CultureInfo culture = null )
{
if( culture.NullReference() )
culture = CultureInfo.CurrentCulture;
return culture.CompareInfo.Compare(this.Origin, this.StartIndex, this.Length, comparand.Origin, comparand.StartIndex, comparand.Length, options);
}
示例2: ChooseFor
/// <summary>
/// Determines the <see cref="CsvFormat"/> based on the specified culture.
/// </summary>
/// <param name="culture">The culture to use; or <c>null</c> for the current culture.</param>
/// <returns>The <see cref="CsvFormat"/> for the culture.</returns>
public static CsvFormat ChooseFor( CultureInfo culture = null )
{
if( culture.NullReference() )
culture = CultureInfo.CurrentCulture;
if( string.Equals(culture.NumberFormat.NumberDecimalSeparator, ".", StringComparison.Ordinal) )
return CsvFormat.International;
else
return CsvFormat.Continental;
}