摘要: #region 以下函数用于忽略大小写替换操作 public static string Replace(string Expression, string Find, string Replacement) { return Replace(Expression, Find, Replacement, StringComparison.OrdinalIgnoreCase); } public static string Replace(string Expression, string Find, s... 阅读全文
posted @ 2014-01-10 00:57 star丶清影 阅读(3478) 评论(0) 推荐(0) 编辑
摘要: 原来公司的一段代码,现在给朋友写的软件里也用上了,看样用处挺多,所以保存一下。自定义属性类:using System;using System.Collections.Generic;using System.Text;using System.Drawing.Design;using System.Windows.Forms.Design;using System.Windows.Forms;namespace MaoYoo.ChinaMobile.Core.PropertyGridUI{ public class PropertyGridFileSelector:UITypeEdit... 阅读全文
posted @ 2014-01-10 00:49 star丶清影 阅读(2192) 评论(0) 推荐(0) 编辑