/// /// 인자로 들어 문자에 특수 문자가 존재 하는지 여부를 검사 한다. /// /// /// public bool CheckingSpecialText(string txt) { string str = @"[~!@\#$%^&*\()\=+|\\/:;?""']"; System.Text.RegularExpressions.Regex rex = new System.Text.RegularExpressions.Regex(str); return rex.IsMatch(txt); }