Type.IsNestedFamANDAssem 속성
Type이 중첩되었으며 자체 패밀리와 자체 어셈블리 모두에 속하는 클래스에만 표시되는지 여부를 나타내는 값을 가져옵니다.
네임스페이스: System
어셈블리: mscorlib(mscorlib.dll)
구문
‘선언
Public ReadOnly Property IsNestedFamANDAssem As Boolean
‘사용 방법
Dim instance As Type
Dim value As Boolean
value = instance.IsNestedFamANDAssem
public bool IsNestedFamANDAssem { get; }
public:
virtual property bool IsNestedFamANDAssem {
bool get () sealed;
}
/** @property */
public final boolean get_IsNestedFamANDAssem ()
public final function get IsNestedFamANDAssem () : boolean
속성 값
Type이 중첩되어 있고 자체 패밀리와 자체 어셈블리 모두에 속하는 클래스에만 표시되면 true이고, 그렇지 않으면 false입니다.
설명
현재 Type이 제네릭 형식의 형식 매개 변수를 나타내는 경우 이 속성은 언제나 false를 반환합니다.
TypeAttributes.VisibilityMask에서는 표시 특성을 선택합니다.
Type 개체 패밀리는 정확히 동일한 Type 및 해당 하위 형식의 모든 개체로 정의됩니다.
예제
다음 예제에서는 IsNestedFamANDAssem 속성의 사용법을 설명합니다.
Imports System
Imports Microsoft.VisualBasic
' Enclose a class.
Class MyClassA
' Protected friend nested class.
Protected 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 IsNestedFamANDAssem property of the nested class.
Console.WriteLine(ControlChars.Cr + "The IsNestedFamANDAssem property value of the nested class is {0}.", myTypeB.IsNestedFamANDAssem.ToString())
End Sub 'Main
End Class 'MyTestClass
using System;
// Enclose a class.
class MyClassA
{
protected 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 IsNestedFamANDAssem property of the nested class.
Console.WriteLine("\nThe IsNestedFamANDAssem property value of the nested class is {0}.", myTypeB.IsNestedFamANDAssem.ToString());
}
}
using namespace System;
// Enclose a class.
ref class MyClassA
{
public protected:
ref class MyClassB{};
};
int main()
{
// Get the type of the nested class.
Type^ myTypeB = MyClassA::MyClassB::typeid;
// Get the IsNestedFamANDAssem property of the nested class.
Console::WriteLine( "\nThe IsNestedFamANDAssem property value of the nested class is {0}.", myTypeB->IsNestedFamANDAssem );
}
import System.*;
// Enclose a class.
class MyClassA
{
protected 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 IsNestedFamANDAssem property of the nested class.
Console.WriteLine("\nThe IsNestedFamANDAssem property value of the"
+" nested class is {0}.",
System.Convert.ToString(myTypeB.get_IsNestedFamANDAssem()));
} //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에서 지원