http://msdn.microsoft.com/en-us/library/1x308yk8.aspx
これにより、次のことが可能になります。
var str = "string ";
Char.IsWhiteSpace(str, 6);
それよりも:
Char.IsWhiteSpace(str[6]);
珍しいように見えるので、反射を見ました:
[TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
public static bool IsWhiteSpace(char c)
{
if (char.IsLatin1(c))
{
return char.IsWhiteSpaceLatin1(c);
}
return CharUnicodeInfo.IsWhiteSpace(c);
}
[SecuritySafeCritical]
public static bool IsWhiteSpace(string s, int index)
{
if (s == null)
{
throw new ArgumentNullException("s");
}
if (index >= s.Length)
{
throw new ArgumentOutOfRangeException("index");
}
if (char.IsLatin1(s[index]))
{
return char.IsWhiteSpaceLatin1(s[index]);
}
return CharUnicodeInfo.IsWhiteSpace(s, index);
}
印象に残ったのは次の 3 点です。
- わざわざ上限だけチェックするのはなぜですか?をスローする
ArgumentOutOfRangeException
と、インデックスが0未満の場合、文字列の標準が得られますIndexOutOfRangeException
- 一般的なブレブを読んだプレセンス
SecuritySafeCriticalAttribute
ですが、ここで何をしているのか、上限チェックにリンクされているのかはまだ不明です。 TargetedPatchingOptOutAttribute
他のIs...(char)
メソッドには存在しません。例などIsLetter
_IsNumber