コード例 #1
0
ファイル: Character.cs プロジェクト: asmboom/HtmlRenderer
 /// <summary>Determines whether the specified code point is a control character, as
 /// defined by the ICU NativeMethods.u_iscntrl function.</summary>
 public static bool IsControl(int characterCode)
 {
     return(NativeMethods.u_iscntrl(characterCode));
 }