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.IsNestedPrivate Propriedade

Gets a value indicating whether the Type is nested and declared private.

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

Valor da propriedade

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

Implementa

_Type.IsNestedPrivate

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 nested class as private and displays the IsNestedPrivate property value of the nested class.

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


import System.*;

// Outer class.
public class MyClassA
{
    // Private nested class.
    private class MyClassB
    {
    } //MyClassB

    public static void main(String[] args)
    {
        // Get the type of the nested class.
        Type myTypeB = MyClassA.MyClassB.class.ToType();

        // Get the IsNestedPrivate property of the nested class.
        Console.WriteLine("\nThe IsNestedPrivate property value of the nested"
            +" class is {0}.",
            System.Convert.ToString(myTypeB.get_IsNestedPrivate()));
    } //main
} //MyClassA


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

Contribuições da comunidade

ADICIONAR
© 2013 Microsoft. Todos os direitos reservados.