ホーム
サンプルコード
雑記
デザインパターン
ソフトウェア
1 2 3 4 5 6 7 8 9 10 11 12 13 14
public bool IsHexString(string s) { // 文字列sが16進文字列かどうか判定します。 if (string.IsNullOrEmpty(s)) { return false; } foreach (char c in s) { if (!Uri.IsHexDigit(c)) { return false; } } return true; }