System.Reflection.AssemblyName.FullName Property

Gets the full name of the assembly, also known as the display name.

Syntax

public string FullName { get; }

Value

Documentation for this section has not yet been entered.

Remarks

The display name typically consists of the simple name, version number, supported culture, and public key. For example:

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 AssemblyName.#ctor(string) constructor, which parses it and populates the appropriate fields of the new System.Reflection.AssemblyName.

When an assembly is loaded, this value can also be obtained using the Assembly.FullName property.

Requirements

Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0