本文整理汇总了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;
}