标签:代码生成 code title source stat 代码生成器 一个 区分大小写 toc
最近做一个代码生成器的时候 才发现。
C# 让String.Contains 默认是区分大小写的。
所以忽略的办法是:
方法一:
string title = "STRING"; bool contains = title.IndexOf("string", StringComparison.OrdinalIgnoreCase) >= 0;
方法二:封装起来
public static bool Contains(this string source, string toCheck, StringComparison comp) { return source.IndexOf(toCheck, comp) >= 0; }
标签:代码生成 code title source stat 代码生成器 一个 区分大小写 toc
原文地址:https://www.cnblogs.com/zxs-onestar/p/13385345.html