摘要:
Granville Barnett 在他的BLog中发表了一篇新帖子: Shared Source CLI Google group launched 在对于Rotor的研究中,一直鲜有热烈的讨论和聚集地,如果你也和我一样对于Rotor有强烈的兴趣,不妨:http://groups.google.com/group/microsoft-shared-source-cli/Enjoy it. :) 阅读全文
摘要:
引言: 想起这个问题是一次面试提到的题目而起,而之前也有关于静态构造函数和构造函数区别, 于是有了这次探索. 用法: 1. 初始化静态成员数据 1: public class MyTest 2: { 3: static string Str = "This is MyTest"; 4: static int i = 0; 5: 6: static MyTest() 7: { 8: Str = "... 阅读全文