摘要:
list例: List<result_1> list = get_lately_fifty_data(); List<int> number_count = (from c in list orderby c.Number ascending select c.Count).ToList(); da 阅读全文
摘要:
Regex构造函数Regex(string pattern)Regex(string pattern,RegexOptions options)参数说明pattern:要匹配的正则表达式模式options:指定是否要编译,忽略大小写等等Regex.Replace方法-C#Regex.Replace( 阅读全文