Assembly.GetExportedTypes Method
.NET Framework 4.5
Gets the public types defined in this assembly that are visible outside the assembly.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.Type[]An array that represents the types defined in this assembly that are visible outside the assembly.
Implements
_Assembly.GetExportedTypes()| Exception | Condition |
|---|---|
| NotSupportedException | The assembly is a dynamic assembly. |
The following code sample defines a number of classes with various access levels, and calls GetExportedTypes to display the ones that are visible from outside the assembly.
using System; using System.Reflection; public class Example { public static void Main() { foreach (Type t in Assembly.GetExecutingAssembly().GetExportedTypes()) { Console.WriteLine(t); } } } public class PublicClass { public class PublicNestedClass {} protected class ProtectedNestedClass {} internal class FriendNestedClass {} private class PrivateNestedClass {} } internal class FriendClass { public class PublicNestedClass {} protected class ProtectedNestedClass {} internal class FriendNestedClass {} private class PrivateNestedClass {} }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.