lenmom

博客园 首页 新随笔 联系 订阅 管理

随笔分类 -  C#

上一页 1 2 3 4 下一页

只有注册用户登录后才能阅读该文。
posted @ 2020-06-11 13:05 老董 编辑

摘要:https://blog.csdn.net/x1017619024/article/details/103970708 主要思路: 修改Unity安装目录中的Windows打包插件模板,重新生成一个新的默认以管理员权限启动的模板exe,然后再进行打包。 1.找到Unity安装目录的Data/Play 阅读全文
posted @ 2020-04-23 11:05 老董 阅读(1917) 评论(0) 推荐(0) 编辑

摘要:GMT UTC WET WET CET CET MET CET ECT CET EET EET MIT Pacific/Apia HST Pacific/Honolulu AST America/Anchorage PST America/Los_Angeles MST America/Denver PNT America/Phoenix CST America/Chicago EST Ameri 阅读全文
posted @ 2019-11-20 22:31 老董 阅读(329) 评论(0) 推荐(0) 编辑

摘要:场景: 阅读全文
posted @ 2019-01-21 23:21 老董 阅读(1057) 评论(0) 推荐(0) 编辑

摘要:The make install target dir is representationed by var : DESTDIR, if we set this var to the location which we want to installed to, then we can have t 阅读全文
posted @ 2019-01-21 23:20 老董 阅读(32475) 评论(0) 推荐(1) 编辑

摘要:单击开始,单击运行,键入regedit,然后单击“确定”。 找到并单击以下注册表子项:HKEY_LOCAL_MACHINE——SYSTEM——CurrentControlSet——Control 在右窗格中,找到ServicesPipeTimeout entry.Note.如果ServicesPip 阅读全文
posted @ 2019-01-19 13:43 老董 阅读(7160) 评论(0) 推荐(0) 编辑

摘要:https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-nginx?view=aspnetcore-2.2 阅读全文
posted @ 2018-12-19 17:53 老董 阅读(206) 评论(0) 推荐(0) 编辑

摘要:http://www.cnblogs.com/yanweidie/archive/2015/07/19/4658136.html 阅读全文
posted @ 2018-12-19 11:17 老董 阅读(175) 评论(0) 推荐(0) 编辑

摘要:CountDownLatch是在java1.5被引入的,跟它一起被引入的并发工具类还有CyclicBarrier、Semaphore、ConcurrentHashMap和BlockingQueue,它们都存在于java.util.concurrent包下。CountDownLatch这个类能够使一个 阅读全文
posted @ 2018-11-30 12:02 老董 阅读(448) 评论(0) 推荐(0) 编辑

摘要:using System; using System.Threading; /// /// Provides lock-free atomic read/write utility for a reference type, T, instance. The atomic classes found in this package /// were a... 阅读全文
posted @ 2018-11-30 10:44 老董 阅读(1222) 评论(0) 推荐(0) 编辑

摘要:using System; using System.Threading; /// /// Provides lock-free atomic read/write utility for a bool value. The atomic classes found in this package /// were are meant to repli... 阅读全文
posted @ 2018-11-30 10:42 老董 阅读(1322) 评论(0) 推荐(0) 编辑

摘要:using System; using System.Threading; /// /// Provides lock-free atomic read/write utility for a long value. The atomic classes found in this package /// were are meant to repli... 阅读全文
posted @ 2018-11-30 10:41 老董 阅读(1110) 评论(0) 推荐(0) 编辑

摘要:using System; using System.Threading; /// /// Provides lock-free atomic read/write utility for a int value. The atomic classes found in this package /// were are meant to replic... 阅读全文
posted @ 2018-11-30 10:39 老董 阅读(1628) 评论(0) 推荐(0) 编辑

摘要:https://www.cnblogs.com/startpoint/p/4194052.html https://www.cnblogs.com/lyl6796910/p/7613664.html https://www.cnblogs.com/dubing/p/3878591.html http 阅读全文
posted @ 2018-06-27 21:22 老董 阅读(265) 评论(0) 推荐(0) 编辑

摘要:Recently I’ve found out that we can easily cause a memory leaks in our .net application by improper usage of the dependency injection container Autofa 阅读全文
posted @ 2018-06-27 19:03 老董 阅读(333) 评论(0) 推荐(0) 编辑

摘要:首先:两者都是按地址传递的,使用后都将改变原来参数的数值。 其次:ref可以把参数的数值传递进函数,但是out是要把参数清空,就是说你无法把一个数值从out传递进去的,out进去后,参数的数值为空,所以你必须初始化一次。这个就是两个的区别,或者说就像有的网友说的,ref是有进有出,out是只出不进。 阅读全文
posted @ 2018-06-27 13:26 老董 阅读(161) 评论(0) 推荐(0) 编辑

摘要:With the beta release of ASP.NET MVC 4 and the ASP.NET Web API being released a few weeks ago, I decided it was about time to have a look at what the 阅读全文
posted @ 2018-06-26 11:40 老董 阅读(278) 评论(0) 推荐(0) 编辑

摘要:Or, “Avoiding Memory Leaks in Managed Composition” Understanding lifetime can be pretty tough when you’re new to IoC. Even long-time users express vag 阅读全文
posted @ 2018-06-21 17:16 老董 阅读(287) 评论(0) 推荐(0) 编辑

摘要:1、在asp.net Boilerplate项目中,Abp.0.12.0.2,.net framework4.5.2。下载后添加了webApi的helpPage功能,调试出现错误。 dubug : at Areas\HelpPage\Views\Help\DisplayTemplatesHelpPa 阅读全文
posted @ 2018-06-21 15:19 老董 阅读(704) 评论(0) 推荐(0) 编辑

摘要:最近在写web api的项目,用到微软的Web api help page组件,用于自动对生成API文档,见博文: https://www.cnblogs.com/lenmom/p/9081363.html, 效果很好,但是问题来了,今天打开代码一看,好多警告 CS1591 缺少对公共可见类型或成员 阅读全文
posted @ 2018-05-24 13:33 老董 阅读(3505) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 下一页