Type.IsNestedAssembly 속성
Type이 중첩되었으며 자체 어셈블리 내에서만 표시되는지 여부를 나타내는 값을 가져옵니다.
네임스페이스: System
어셈블리: mscorlib(mscorlib.dll)
구문
‘선언
Public ReadOnly Property IsNestedAssembly As Boolean
‘사용 방법
Dim instance As Type
Dim value As Boolean
value = instance.IsNestedAssembly
public bool IsNestedAssembly { get; }
public:
virtual property bool IsNestedAssembly {
bool get () sealed;
}
/** @property */
public final boolean get_IsNestedAssembly ()
public final function get IsNestedAssembly () : boolean
속성 값
Type이 중첩되어 있고 자체 어셈블리 내에서만 표시되면 true이고, 그렇지 않으면 false입니다.
설명
현재 Type이 제네릭 형식의 형식 매개 변수를 나타내는 경우 이 속성은 언제나 false를 반환합니다.
TypeAttributes.VisibilityMask에서는 표시 특성을 선택합니다.
예제
다음 예제에서는 어셈블리 표시 유형으로 중첩된 클래스를 선언하고 IsNestedAssembly 속성 값을 표시합니다.
Imports System
Imports Microsoft.VisualBasic
' Nest a class.
Class MyClassA
Friend Class MyClassB
End Class 'MyClassB
End Class 'MyClassA
Class MyTestClass
Public Shared Sub Main()
' Get the type of the nested class.
Dim myTypeB As Type = GetType(MyClassA.MyClassB)
' Get the IsNestedAssembly property of the nested class.
Console.WriteLine(ControlChars.Cr + "The IsNestedAssembly property value of MyClassB is {0}.", myTypeB.IsNestedAssembly.ToString())
End Sub 'Main
End Class 'MyTestClass
using System;
// Nest a class.
class MyClassA
{
internal class MyClassB
{
}
}
class MyTestClass
{
public static void Main(string[] args)
{
// Get the type of the nested class.
Type myTypeB = typeof(MyClassA.MyClassB);
// Get the IsNestedAssembly property of the nested class.
Console.WriteLine("\nThe IsNestedAssembly property value of MyClassB is {0}.", myTypeB.IsNestedAssembly.ToString());
}
}
using namespace System;
// Nest a class.
ref class MyClassA
{
internal:
ref class MyClassB{};
};
int main()
{
// Get the type of the nested class.
Type^ myTypeB = MyClassA::MyClassB::typeid;
// Get the IsNestedAssembly property of the nested class.
Console::WriteLine( "\nThe IsNestedAssembly property value of MyClassB is {0}.", myTypeB->IsNestedAssembly );
}
import System.*;
// Nest a class.
class MyClassA
{
class MyClassB
{
} //MyClassB
} //MyClassA
class MyTestClass
{
public static void main(String[] args)
{
// Get the type of the nested class.
Type myTypeB = MyClassA.MyClassB.class.ToType();
// Get the IsNestedAssembly property of the nested class.
Console.WriteLine("\nThe IsNestedAssembly property value of "
+"MyClassB is {0}.",System.Convert.ToString(
myTypeB.get_IsNestedAssembly()));
} //main
} //MyTestClass
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
.NET Compact Framework
2.0, 1.0에서 지원