23.C#编程指南-嵌套类型
摘要:
在类或结构内部定义的类型称为嵌套类型。 例如:class Container{ class Nested { Nested() { } }}不管外部类型是类还是结构,嵌套类型均默认为 private,但是可以设置为 public、protected internal、protected、internal 或 private。 在上面的示例中,Nested 对外部类型是不可访问的,但可以设置为 public,如下所示:class Container{ public class Nested { Nested() { } }}嵌套类型... 阅读全文
posted @ 2012-05-20 11:18 YeChun 阅读(295) 评论(0) 推荐(0) 编辑