當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。