本文介绍了C#类和成员(字段,方法等)的默认可见性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试查找有关C#各个方面的默认可见性的参考。类类型,字段,方法,枚举等。

I'm trying to find a reference for the default visibility of various aspects of C#. Class types, fields, methods, enums, etc.

有人可以提供这些列表以及它们的默认可见性(即没有前缀修饰符)吗?

Can someone provide a list of these along with their default visibility (i.e., no prefixed modifier)?

推荐答案

可以找到您正在查找的所有信息和(感谢):

All of the information you are looking for can be found here and here (thanks Reed Copsey):

从第一个链接开始:

...

...

...






从第二个链接:


From the second link:

对于嵌套类型:


Members of    Default member accessibility
----------    ----------------------------
enum          public
class         private
interface     public
struct        private

这篇关于C#类和成员(字段,方法等)的默认可见性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 17:38