コード例 #1
0
ファイル: UnicodeDebug.cs プロジェクト: layomia/dotnet_roslyn
 internal static void AssertIsValidSupplementaryPlaneScalar(uint scalarValue)
 {
     if (!UnicodeUtility.IsValidUnicodeScalar(scalarValue) || UnicodeUtility.IsBmpCodePoint(scalarValue))
     {
         Debug.Fail($"The value {ToHexString(scalarValue)} is not a valid supplementary plane Unicode scalar value.");
     }
 }
コード例 #2
0
ファイル: UnicodeDebug.cs プロジェクト: dotnet/templating
 internal static void AssertIsBmpCodePoint(uint codePoint)
 {
     if (!UnicodeUtility.IsBmpCodePoint(codePoint))
     {
         Debug.Fail($"The value {ToHexString(codePoint)} is not a valid BMP code point.");
     }
 }