Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Gets the full name of the assembly, also known as the display name.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public ReadOnly Property FullName As String
public string FullName { get; }
public:
property String^ FullName {
String^ get ();
}
member FullName : string with get
function get FullName () : String
Property Value
Type: System. . :: . .String
A string that is the full name of the assembly, also known as the display name.
Remarks
The display name typically consists of the simple name, version number, supported culture, and public key. For example:
mylib, Version=1.2.1900.0, Culture=neutral, PublicKeyToken=a14f3033def15840
Writing your own code to parse display names is not recommended. Instead, pass the display name to the #ctor constructor, which parses it and populates the appropriate fields of the new AssemblyName.
When an assembly is loaded, this value can also be obtained using the Assembly..::..FullName property.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.