System.String.ToUpperInvariant 方法
方法描述
返回此 String 对象的转换为大写形式的副本,返回时使用固定区域性的大小写规则。
语法定义(C# System.String.ToUpperInvariant 方法 的用法)
public string ToUpperInvariant()
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
返回值 | System.String | 当前字符串的大写形式。 |
提示和注释
该固定区域性表示不区分区域性的区域性。 它与英语语言关联,但不与任何国家/地区关联。 有关更多信息,请参见 使用 InvariantCulture 属性。
如果应用程序需要以可预测的方式更改字符串的大小写,该方式不受当前区域性的影响,则使用 ToUpperInvariant 方法。 ToUpperInvariant 方法与 ToUpper(CultureInfo.InvariantCulture) 等效。 当集合中的字符串必须按可预知的顺序在用户界面控件中显示时,建议使用该方法。
注意
此方法不修改当前实例的值。 而是返回一个新字符串,在该字符串中,当前实例中的所有字符都会转换为大写。
安全注意事项
如果您需要操作系统标识符(如文件名、命名管道或注册表项)的小写或大写版本,请使用 ToLowerInvariant 或 ToUpperInvariant 方法。
System.String.ToUpperInvariant 方法例子
Array.Sort
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 // Τρίτη // Вторник // יום שלישי // الثلاثاء // วันอังคาร
版本信息
.NET Framework 受以下版本支持:4、3.5、3.0、2.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。