#keywords .NET,C Sharp,Case Intensive,string {{{ string str = "..."; if (str.Contains("...")) }}} 이것(Contains)는 Case Intensive 찾기를 할 수 없다. 대신 IndexOf + StringComparison.CurrentCultureIgnoreCase를 사용하면 Case Intensive한 포함 찾기를 할 수 있다. 즉, {{{#!gcode public static bool ContainsCaseInsensitive(this string source, string value) { int results = source.IndexOf(value, StringComparison.CurrentCultureIgnoreCase); return results == -1 ? false : true; } }}}