上一页 1 ··· 367 368 369 370 371 372 373 374 375 ··· 391 下一页
摘要: #include#define f(a,b) a##b#define g(a) #a#define h(a) g(a)int main(){ printf("%s\n",h(f(1,2))); 宏h(a) 是g(a),没有#,所以需要进行宏展开 ... 阅读全文
posted @ 2015-05-08 13:25 ChuckLu 阅读(4344) 评论(0) 推荐(0) 编辑
摘要: http://www.codeproject.com/Articles/630277/Generic-Data-Access-Layer-GDA-Part-Ihttp://www.codeproject.com/Articles/681565/Self-Synchronized-Data-Acces... 阅读全文
posted @ 2015-05-06 16:11 ChuckLu 阅读(182) 评论(0) 推荐(0) 编辑
摘要: https://msdn.microsoft.com/en-us/library/bcd5672a.aspx 官方的说法The protected keyword is a member access modifier. A protected member is accessible within 阅读全文
posted @ 2015-05-06 13:38 ChuckLu 阅读(998) 评论(0) 推荐(0) 编辑
摘要: http://www.dofactory.com/reference/csharp-coding-standards 阅读全文
posted @ 2015-05-05 20:44 ChuckLu 阅读(152) 评论(0) 推荐(0) 编辑
摘要: http://www.codeproject.com/Articles/93369/How-I-explained-OOD-to-my-wifehttp://www.cnblogs.com/niyw/archive/2011/01/25/1940603.html 中文翻译的版本 阅读全文
posted @ 2015-05-05 16:13 ChuckLu 阅读(189) 评论(0) 推荐(0) 编辑
摘要: https://msdn.microsoft.com/zh-cn/library/wewwczdw(v=vs.110).aspxApplications that perform many tasks simultaneously, yet remain responsive to user int... 阅读全文
posted @ 2015-05-04 21:45 ChuckLu 阅读(613) 评论(0) 推荐(0) 编辑
摘要: https://medium.com/the-gathering-kind/when-you-re-nearly-40-and-unmarried-and-you-realize-you-re-going-to-be-okay-f1802188394dA few weeks ago my best ... 阅读全文
posted @ 2015-05-04 13:12 ChuckLu 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 参考自Default visibility for C# classes and members (fields, methods, etc)?Classes and structs that are declared directly within a namespace (in other wo... 阅读全文
posted @ 2015-05-03 16:54 ChuckLu 阅读(2503) 评论(2) 推荐(0) 编辑
摘要: https://msdn.microsoft.com/zh-cn/library/ee378665(v=vs.110).aspx 此方法有一共有2个,现在只讨论其中一个 public TValue AddOrUpdate( TKey key, TValue addValue, Func<TKey, 阅读全文
posted @ 2015-04-30 09:33 ChuckLu 阅读(4732) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/en-us/dotnet/api/system.timers.timer?view=netframework-4.7.2 Be aware that .NET includes four classes named Timer, each of 阅读全文
posted @ 2015-04-29 10:34 ChuckLu 阅读(281) 评论(0) 推荐(0) 编辑
上一页 1 ··· 367 368 369 370 371 372 373 374 375 ··· 391 下一页