typeattributes.cs

来自「没的 没的 没的 没的 没的 没的 没的 没的 没的 没的 没的 没的 没的 没」· CS 代码 · 共 66 行

CS
66
字号
/* * TypeAttributes.cs - Implementation of the *			"System.Reflection.TypeAttributes" class. * * Copyright (C) 2001  Southern Storm Software, Pty Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */namespace System.Reflection{[Flags]#if CONFIG_REFLECTIONpublic#elseinternal#endifenum TypeAttributes{	VisibilityMask			= 0x00000007,	NotPublic				= 0x00000000,	Public					= 0x00000001,	NestedPublic			= 0x00000002,	NestedPrivate			= 0x00000003,	NestedFamily			= 0x00000004,	NestedAssembly			= 0x00000005,	NestedFamANDAssem		= 0x00000006,	NestedFamORAssem		= 0x00000007,	LayoutMask				= 0x00000018,	AutoLayout				= 0x00000000,	SequentialLayout		= 0x00000008,	ExplicitLayout			= 0x00000010,	ClassSemanticsMask		= 0x00000020,	Class					= 0x00000000,	Interface				= 0x00000020,	Abstract				= 0x00000080,	Sealed					= 0x00000100,	SpecialName				= 0x00000400,	Import					= 0x00001000,	Serializable			= 0x00002000,	StringFormatMask		= 0x00030000,	AnsiClass				= 0x00000000,	UnicodeClass			= 0x00010000,	AutoClass				= 0x00020000,	BeforeFieldInit			= 0x00100000,	ReservedMask			= 0x00040800,	RTSpecialName			= 0x00000800,	HasSecurity				= 0x00040000}; // enum TypeAttributes}; // namespace System.Reflection

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?