Expandir Minimizar
Este artigo foi traduzido por máquina. Coloque o ponteiro do mouse sobre as frases do artigo para ver o texto original. Mais informações.
Tradução
Original
Este tópico ainda não foi avaliado como - Avalie este tópico

Type.IsNestedPublic Propriedade

Gets a valor indicating Whether a classe is Nested and Declared Público.

Namespace:  System
Assembly:  mscorlib (em mscorlib. dll)
public bool IsNestedPublic { get; }

Valor da propriedade

Tipo: System.Boolean
true if the class is nested and declared public; otherwise, false.

Implementa

_Type.IsNestedPublic

If the current Type represents a type parameter of a generic type, this property always returns false.

TypeAttributes.VisibilityMask selects the visibility attributes.

The following example declares a public nested class and displays its IsNestedPublic property value.

using System;
// Enclose a class.
public class MyClassA
{
    // Public nested class.
    public class MyClassB
    {
    }
    public static void Main(string[] args)
    {	
        // Get the type of the nested class.
        Type myTypeB = typeof(MyClassA.MyClassB);
        // Get the IsNestedPublic property of the nested class.
        Console.WriteLine("\nThe IsNestedPublic property value of the nested class is {0}.", myTypeB.IsNestedPublic.ToString());			
    }
}


import System.*;

// Enclose a class.
public class MyClassA
{
    // Public nested class.
    public class MyClassB
    {
    } //MyClassB

    public static void main(String[] args)
    {
        // Get the type of the nested class.
        Type myTypeB = MyClassA.MyClassB.class.ToType();
        // Get the IsNestedPublic property of the nested class.
        Console.WriteLine("\nThe IsNestedPublic property value of the nested" 
            + " class is {0}.", System.Convert.ToString(
            myTypeB.get_IsNestedPublic()));
    } //main
} //MyClassA


Isso foi útil para você?
(1500 caracteres restantes)

Contribuições da comunidade

ADICIONAR
© 2013 Microsoft. Todos os direitos reservados.