System::Reflection::AssemblyName class

AssemblyName class

Defines assembly name. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class AssemblyName : public System::Object

Methods

MethodDescription
AssemblyName()Constructor.
AssemblyName(const String&)Constructor.
AssemblyName(const String&, const Version&)Constructor.
get_Name()Gets assembly name.
get_Version()Gets assembly version.
set_Name(const String&)Sets assembly name.
set_Version(const Version&)Sets assembly version.

See Also