Class AssemblyName
Describes an assembly's unique identity in full.
Inherited Members
Namespace: System.Reflection
Assembly: mscorlib.dll
Syntax
public sealed class AssemblyName
Remarks
Available only in mscorlib build with support for System.Reflection.
Properties
FullName
Gets the full name of the assembly, also known as the display name.
Declaration
public string FullName { get; }
Property Value
Type | Description |
---|---|
string | A string that is the full name of the assembly, also known as the display name. |
Name
Gets the simple name of the assembly. This is usually, but not necessarily, the file name of the manifest file of the assembly, minus its extension.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
string | The simple name of the assembly. |
Version
Gets or sets the major, minor, build, and revision numbers of the assembly.
Declaration
public Version Version { get; }
Property Value
Type | Description |
---|---|
Version | An object that represents the major, minor, build, and revision numbers of the assembly. |