SortKey.KeyData 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 SortKey 개체를 나타내는 바이트 배열을 가져옵니다.
public:
property cli::array <System::Byte> ^ KeyData { cli::array <System::Byte> ^ get(); };
public:
virtual property cli::array <System::Byte> ^ KeyData { cli::array <System::Byte> ^ get(); };
public byte[] KeyData { get; }
public virtual byte[] KeyData { get; }
member this.KeyData : byte[]
Public ReadOnly Property KeyData As Byte()
Public Overridable ReadOnly Property KeyData As Byte()
속성 값
Byte[]
현재 SortKey 개체를 나타내는 바이트 배열입니다.
예제
다음 코드 예제에서는 대/소문자를 구분하는 정렬 키와 대/소문자를 구분하지 않는 정렬 키에 대한 원래 문자열과 해당하는 문자열 및 키 데이터를 표시합니다.
// This code example demonstrates the
// GetSortKey() and ToString() methods, and the
// OriginalString and KeyData properties of the
// System.Globalization.SortKey class.
using System;
using System.Globalization;
class Sample
{
public static void Main()
{
CompareInfo cmpi = null;
SortKey sk1 = null;
SortKey sk2 = null;
string s = "ABC";
string ignoreCase = "Ignore case";
string useCase = "Use case ";
// Get a CompareInfo object for the English-Great Britain culture.
cmpi = CompareInfo.GetCompareInfo("en-GB");
// Get a sort key that ignores case for the specified string.
sk1 = cmpi.GetSortKey(s, CompareOptions.IgnoreCase);
// Get a sort key with no compare option for the specified string.
sk2 = cmpi.GetSortKey(s);
// Display the original string.
Console.WriteLine("Original string: \"{0}\"", sk1.OriginalString);
Console.WriteLine();
// Display the string equivalent of the two sort keys.
Console.WriteLine("CompareInfo (culture) name: {0}", cmpi.Name);
Console.WriteLine("ToString - {0}: \"{1}\"", ignoreCase, sk1.ToString());
Console.WriteLine("ToString - {0}: \"{1}\"", useCase, sk2.ToString());
Console.WriteLine();
// Display the key data of the two sort keys.
DisplayKeyData(sk1, ignoreCase);
DisplayKeyData(sk2, useCase);
}
public static void DisplayKeyData(SortKey sk, string title)
{
Console.Write("Key Data - {0}: ", title);
foreach (byte keyDatum in sk.KeyData)
Console.Write("0x{0} ", (uint)keyDatum);
Console.WriteLine();
}
}
/*
This code example produces the following results:
Original string: "ABC"
CompareInfo (culture) name: en-GB
ToString - Ignore case: "SortKey - 2057, IgnoreCase, ABC"
ToString - Use case : "SortKey - 2057, None, ABC"
Key Data - Ignore case: 0x14 0x2 0x14 0x9 0x14 0x10 0x1 0x1 0x1 0x1 0x0
Key Data - Use case : 0x14 0x2 0x14 0x9 0x14 0x10 0x1 0x1 0x18 0x18 0x18 0x1 0x1 0x0
*/
' This code example demonstrates the
' GetSortKey() and ToString() methods, and the
' OriginalString and KeyData properties of the
' System.Globalization.SortKey class.
Imports System.Globalization
Class Sample
Public Shared Sub Main()
Dim cmpi As CompareInfo = Nothing
Dim sk1 As SortKey = Nothing
Dim sk2 As SortKey = Nothing
Dim s As String = "ABC"
Dim ignoreCase As String = "Ignore case"
Dim useCase As String = "Use case "
' Get a CompareInfo object for the English-Great Britain culture.
cmpi = CompareInfo.GetCompareInfo("en-GB")
' Get a sort key that ignores case for the specified string.
sk1 = cmpi.GetSortKey(s, CompareOptions.IgnoreCase)
' Get a sort key with no compare option for the specified string.
sk2 = cmpi.GetSortKey(s)
' Display the original string.
Console.WriteLine("Original string: ""{0}""", sk1.OriginalString)
Console.WriteLine()
' Display the string equivalent of the two sort keys.
Console.WriteLine("CompareInfo (culture) name: {0}", cmpi.Name)
Console.WriteLine("ToString - {0}: ""{1}""", ignoreCase, sk1.ToString())
Console.WriteLine("ToString - {0}: ""{1}""", useCase, sk2.ToString())
Console.WriteLine()
' Display the key data of the two sort keys.
DisplayKeyData(sk1, ignoreCase)
DisplayKeyData(sk2, useCase)
End Sub
Public Shared Sub DisplayKeyData(ByVal sk As SortKey, ByVal title As String)
Console.Write("Key Data - {0}: ", title)
Dim keyDatum As UInteger
For Each keyDatum In sk.KeyData
Console.Write("0x{0} ", CUInt(keyDatum))
Next keyDatum
Console.WriteLine()
End Sub
End Class
'
'This code example produces the following results:
'
'Original string: "ABC"
'
'CompareInfo (culture) name: en-GB
'ToString - Ignore case: "SortKey - 2057, IgnoreCase, ABC"
'ToString - Use case : "SortKey - 2057, None, ABC"
'
'Key Data - Ignore case: 0x14 0x2 0x14 0x9 0x14 0x10 0x1 0x1 0x1 0x1 0x0
'Key Data - Use case : 0x14 0x2 0x14 0x9 0x14 0x10 0x1 0x1 0x18 0x18 0x18 0x1 0x1 0x0
'
설명
문자열 비교에서 속성에서 반환된 KeyData 데이터의 사용에 대한 자세한 내용은 클래스 항목을 참조 SortKey 하세요.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET