Edit

Share via


Type.IsVisible Property

Definition

Gets a value indicating whether the Type can be accessed by code outside the assembly.

public bool IsVisible { get; }

Property Value

true if the current Type is a public type or a public nested type such that all the enclosing types are public; otherwise, false.

Examples

The following code example tests two classes, only one of which is visible outside the assembly.

using System;

internal class InternalOnly 
{
    public class Nested {}
}

public class Example
{
    public class Nested {}

    public static void Main()
    {
        Type t = typeof(InternalOnly.Nested);
        Console.WriteLine(
            "Is the {0} class visible outside the assembly? {1}", 
            t.FullName, 
            t.IsVisible
        );

        t = typeof(Example.Nested);
        Console.WriteLine(
            "Is the {0} class visible outside the assembly? {1}", 
            t.FullName, 
            t.IsVisible
        );
    }
}

/* This example produces the following output:

Is the InternalOnly+Nested class visible outside the assembly? False
Is the Example+Nested class visible outside the assembly? True
 */

Remarks

Use this property to determine whether a type is part of the public interface of a component assembly.

Applies to