System.String.ToUpper 方法 (CultureInfo)

方法描述

根据指定区域性的大小写规则返回此字符串转换为大写形式的副本。

语法定义(C# System.String.ToUpper 方法 (CultureInfo) 的用法)

public string ToUpper(
	CultureInfo culture
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
culture System-Globalization-CultureInfo 一个对象,用于提供区域性特定的大小写规则。
返回值 System.String 当前字符串的大写形式。

提示和注释

culture 参数指定的区域性的大小写规则决定更改字符串大小写的方法。

注意

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

System.String.ToUpper 方法 (CultureInfo)例子

两个大写字符串相同,唯一区别在于:在一个字符串中每次出现的 Unicode LATIN CAPITAL LETTER I,在另一个字符串中为 LATIN CAPITAL LETTER I WITH DOT ABOVE。

using System;
using System.Globalization;

class Example 
{
    public static void Main() 
    {
       string str1 = "indigo";
       string str2, str3;

       // str2 is an uppercase copy of str1, using English-United States culture.
       str2 = str1.ToUpper(new CultureInfo("en-US", false));

       // str3 is an uppercase copy of str1, using Turkish-Turkey culture.
       str3 = str1.ToUpper(new CultureInfo("tr-TR", false));

       // Compare the code points and compare the uppercase strings.
       ShowCodePoints("str1", str1);
       ShowCodePoints("str2", str2);
       ShowCodePoints("str3", str3);
       Console.WriteLine("str2 is {0} to str3.", 
            String.CompareOrdinal(str2, str3) == 0 ? "equal" : "not equal");
    }

    public static void ShowCodePoints(string varName, string s)
    {
       Console.Write("{0} = {1}: ", varName, s);
       foreach (ushort u in s)
         Console.Write("{0:x4} ", u);
       Console.WriteLine();
    }
}
// This example displays the following output:
//       str1 = indigo: 0069 006e 0064 0069 0067 006f
//       str2 = INDIGO: 0049 004e 0044 0049 0047 004f
//       str3 = INDIGO: 0130 004e 0044 0130 0047 004f
//       str2 is not equal to str3.

异常

异常 异常描述
ArgumentNullException culture 为 null。

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.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 系统要求。