I have a bunch of winform control libraries in my visual studio 2008 after I installed a third party.
How can I import those controls to my own custom library? For example
Instead of using ThirdPartyAssembly.ControlName I can use MyAssembly.CotrolName (all controls still have full functionality the same as the original)
Can anyone please give me an example?
You can not import thirdparty controls into your own library. You can only reference them. You can use namespace alias feature if want to reference these controls in code under a different name:
If you are dealing with two versions of the same thirdparty dll you can use extern alias. Read this or this: