摘要: 1 i和j的值为多少 string s = "abcedfg 中国人"; int i = s.Length; int j = Encoding.Default.GetBytes(s).Length;答案:i=11,j=142 实例化ClassB后输出结果 class ClassA { public ClassA() { Print(); } public virtual void Print() { } } ... 阅读全文
posted @ 2012-06-06 23:54 Gyoung 阅读(569) 评论(1) 推荐(1)