String.ToUpperInvariant 方法

定义

返回此 String 对象的转换为大写形式的副本,返回时使用固定区域性的大小写规则。

C#
public string ToUpperInvariant();

返回

当前字符串的大写形式。

示例

以下示例定义一个字符串数组,其中包含多种语言的单个单词。 方法 ToUpperInvariant 用于使用每个单词的不区分大小写的版本填充并行数组的元素。 方法 Array.Sort<TKey,TValue>(TKey[], TValue[], IComparer<TKey>) 用于根据大写数组中元素的顺序对区分大小写的数组进行排序,以确保无论语言如何,元素都以相同的顺序显示。

C#
using System;
using System.IO;

public class Example
{
   public static void Main()
   {
      string[] words = { "Tuesday", "Salı", "Вторник", "Mardi", 
                         "Τρίτη", "Martes", "יום שלישי", 
                         "الثلاثاء", "วันอังคาร" };
      StreamWriter sw = new StreamWriter(@".\output.txt");
            
      // Display array in unsorted order.
      foreach (string word in words)
         sw.WriteLine(word);

      sw.WriteLine();

      // Create parallel array of words by calling ToUpperInvariant.
      string[] upperWords = new string[words.Length];
      for (int ctr = words.GetLowerBound(0); ctr <= words.GetUpperBound(0); ctr++)
         upperWords[ctr] = words[ctr].ToUpperInvariant();
      
      // Sort the words array based on the order of upperWords.
      Array.Sort(upperWords, words, StringComparer.InvariantCulture);
      
      // Display the sorted array.
      foreach (string word in words)
         sw.WriteLine(word);

      sw.Close();      
   }
}
// The example produces the following output:
//       Tuesday
//       Salı
//       Вторник
//       Mardi
//       Τρίτη
//       Martes
//       יום שלישי
//       الثلاثاء
//       วันอังคาร
//       
//       Mardi
//       Martes
//       Salı
//       Tuesday
//       Τρίτη
//       Вторник
//       יום שלישי
//       الثلاثاء
//       วันอังคาร

注解

固定区域性表示不区分区域性的区域性。 它与英语相关联,但不与特定国家或地区相关联。 有关更多信息,请参见 CultureInfo.InvariantCulture 属性。

如果应用程序依赖于字符串以不受当前区域性影响且以可预测的方式更改的情况,请使用 ToUpperInvariant 方法。 方法 ToUpperInvariant 等效于 ToUpper(CultureInfo.InvariantCulture)。 当字符串集合必须以可预测的顺序出现在用户界面控件中时,建议使用 方法。

备注

此方法不会修改当前实例的值。 相反,它返回一个新字符串,其中当前实例中的所有字符都转换为大写。

如果需要操作系统标识符的小写或大写版本(如文件名、命名管道或注册表项),请使用 ToLowerInvariantToUpperInvariant 方法。

适用于

产品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

另请参阅