Assembly.FullName Property
Gets the display name of the assembly.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
See AssemblyName for a description of the format of the display name of an assembly.
Note |
|---|
Writing your own code to parse display names is not recommended. Instead, pass the display name to the AssemblyName constructor, which parses it and populates the appropriate fields of the new AssemblyName. |
In the .NET Framework version 2.0, processor architecture is added to assembly identity, and can be specified as part of assembly name strings. However, it is not included in the string returned by the FullName property, for compatibility reasons. See AssemblyName.ProcessorArchitecture.
The following example retrieves the display name of the currently executing assembly, and the display name of the assembly that contains the Int32 type (int in C#, Integer in Visual Basic).
using System; using System.Reflection; class Example { static void Main() { Console.WriteLine("The FullName property (also called the display name) of..."); Console.WriteLine("...the currently executing assembly:"); Console.WriteLine(Assembly.GetExecutingAssembly().FullName); Console.WriteLine("...the assembly that contains the Int32 type:"); Console.WriteLine(typeof(int).Assembly.FullName); } } /* This example produces output similar to the following: The FullName property (also called the display name) of... ...the currently executing assembly: ExampleAssembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null ...the assembly that contains the Int32 type: mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 */
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.
Note