09 2015 档案
摘要:public static bool CheckPath(string path){ string pattern = @"^[a-zA-Z]:(((\\(?! )[^/:*?\""|\\]+)+\\?)|(\\)?)\s*$"; Regex regex = new Regex(patt...
阅读全文
摘要:private void simpleButtonSelectPath_Click(object sender, EventArgs e){ FolderBrowserDialog fbd = new FolderBrowserDialog(); fbd.SelectedPath = "...
阅读全文
摘要:举例: Type tDate = typeof(System.DateTime); Object result = tDate.InvokeMember("Now", BindingFlags.GetProperty, null, null, new Obje...
阅读全文
摘要:DataSet转换为xml文件 //将DataSet转换为xml文件 private static void ConvertDataSetToXMLFile(DataSet xmlDS, string xmlFile) { MemoryStream stream = null; XmlTextW...
阅读全文
摘要:事件起因于请维修洗衣机的,家里的那台洗衣机坏过一次,在赶集上找了个维修的,结果别人来2分钟换了个排水阀皮碗就搞定了,收了160大洋。后来我在淘宝上查了那个皮碗的价格0.98元。感觉维修行业乱收费太严重了。今天那台洗衣机又罢工了,然后在赶集上找了两家,一开口就200大洋,而且态度相当恶劣。“那你自己换...
阅读全文
摘要:1) Embedded Resource (Build Action 设置为 Embedded Resource) 在运行时使用GetManifestResourceStream读取Image.FromStream(Assembly.GetExecutingAssembly().GetManifes...
阅读全文