The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Assembly.GetExecutingAssembly Method
.NET Framework 4.5
Gets the assembly that contains the code that is currently executing.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.Reflection.AssemblyThe assembly that contains the code that is currently executing.
To get the assembly that contains the method that called the currently executing code, use GetCallingAssembly.
The following example gets the assembly of the currently running code.
Assembly SampleAssembly; // Instantiate a target object. Int32 Integer1 = new Int32(); Type Type1; // Set the Type instance to the target class type. Type1 = Integer1.GetType(); // Instantiate an Assembly class to the assembly housing the Integer type. SampleAssembly = Assembly.GetAssembly(Integer1.GetType()); // Display the name of the assembly currently executing Console.WriteLine("GetExecutingAssembly=" + Assembly.GetExecutingAssembly().FullName);
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.