当前位置: 首页>>代码示例>>C#>>正文


C# CultureInfo.NullReference方法代码示例

本文整理汇总了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);
        }
开发者ID:MechanicalMen,项目名称:Mechanical2,代码行数:14,代码来源:Substring.cs

示例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;
        }
开发者ID:MechanicalMen,项目名称:Mechanical2,代码行数:15,代码来源:CsvFormat.cs


注:本文中的System.Globalization.CultureInfo.NullReference方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。