页首Html代码
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页
该文被密码保护。 阅读全文
posted @ 2021-02-18 14:02 noigel 阅读(0) 评论(0) 推荐(0) 编辑
摘要: C#打包时第三方库放到一个子目录中 步骤1:添加引用,浏览到需要的dll目录中,选择dll添加 双击app.config文件, 在configuration节点中添加 <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1 阅读全文
posted @ 2021-02-08 10:26 noigel 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 大全 加载程序集 反射当前项目中的类 Assembly ass=Assembly.GetExecutingAssembly(); Assembly theAssembly = Assembly.Load("VectorClass");//这里VectorClass是程序引用的一个dll Assemb 阅读全文
posted @ 2021-02-05 10:57 noigel 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 静态变量 public sealed class Singleton { private Singleton() { } private static readonly Singleton singleInstance = new Singleton(); public static Singlet 阅读全文
posted @ 2021-02-04 13:33 noigel 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 读写Settings 对于Properties,Settings里面的字符串, 读取 Settings.Default.IpAddress; 写 Settings.Default.IpAddress = host; Settings.Default.Save(); 读取资源中的字符串 新建一个Dem 阅读全文
posted @ 2021-02-03 16:19 noigel 阅读(57) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-02-02 15:20 noigel 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 系统路径 %Temp%当前用户临时文件夹 %windir% 一般就是C:\Windows %ProgramFiles% C:\Program Files %AppData% C:\Users\XXXX\AppData\Roaming %CommonProgramFiles% C:\Program F 阅读全文
posted @ 2021-01-29 15:02 noigel 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 添加目录 https://www.cnblogs.com/wendyw/p/11629992.html 为标题添加效果 #cnblogs_post_body { color: black; font: 0.875em/1.5em "微软雅黑" , "PTSans" , "Arial" ,sans-s 阅读全文
posted @ 2021-01-11 15:54 noigel 阅读(72) 评论(0) 推荐(0) 编辑
摘要: Rx的核心接口 相关链接 教程:https://www.cnblogs.com/sheng-jie/p/10399049.html https://rehansaeed.com/reactive-extensions-part2-wrapping-events/ 代码:http://rxwiki.w 阅读全文
posted @ 2021-01-06 09:41 noigel 阅读(985) 评论(0) 推荐(0) 编辑
摘要: 数组和列表 数组的声明 int[] myArray=new int[4]{4,7,11,2}; int[] myArray=new int[]{4,7,11,2}; int[] myArray={4,7,11,2}; //上面3个都一样 string[] names = { "John", "Jac 阅读全文
posted @ 2020-12-31 11:00 noigel 阅读(141) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页
js脚本