08 2017 档案

C#通过代码判断并注册程序集到GAC
摘要:var dllName = "EasyHook.dll"; var dllPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, dllName); if (System.Runtime.InteropServices.RuntimeEnvironment.Fro... 阅读全文

posted @ 2017-08-31 14:49 空明流光 阅读(360) 评论(0) 推荐(0) 编辑

C# 以共享只读方式打开被其它程序占用的文件
摘要:iStream = new System.IO.FileStream(filepath, System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.ReadWrite); 阅读全文

posted @ 2017-08-23 17:42 空明流光 阅读(1208) 评论(0) 推荐(0) 编辑

正则备忘
摘要:断言: 示列1 输入:abc01def(23)ijkl45mn ,匹配括号中的数字可以用 匹配结果为:23 示例2 输入:abc01def(230)ijkl45mn,匹配不在括号中的数字用 ,结果分别是 01,45 转载参考: 别被下面那些复杂的表达式吓倒,只要跟着我一步一步来,你会发现正则表达式其 阅读全文

posted @ 2017-08-17 16:17 空明流光 阅读(227) 评论(0) 推荐(0) 编辑

c# 发送邮件
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; namespace ConsoleApplication5 { class Program { static void Main(strin... 阅读全文

posted @ 2017-08-10 10:42 空明流光 阅读(117) 评论(0) 推荐(0) 编辑

导航