You know we have to register a type library for a COM component.
My question is do we need to do in .net enviroment if I created a library?
Thanks
Printable View
You know we have to register a type library for a COM component.
My question is do we need to do in .net enviroment if I created a library?
Thanks
.NET assemblies do not require registration. You can just put a DLL in the same folder as an EXE or another DLL that references it and it will work.
You also have the option of installing an assembly in the Global Assembly Cache (GAC) if you just want one copy that can be used by multiple applications. That is something like registration but not the same, plus you won't do it in most cases.