| # | Line 136 | Line 136 | namespace xmlTools | |
|---|---|---|
| 136 | { | |
| 137 | return Type.GetType("Mono.Runtime") != null; | |
| 138 | } | |
| 139 | + | |
| 140 | + | public static bool ContainsIgnoreCase(string source, string sToSearch) |
| 141 | + | { |
| 142 | + | return source.IndexOf(sToSearch, StringComparison.OrdinalIgnoreCase) >= 0; |
| 143 | + | } |
| 144 | } | |
| 145 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |