I know that it’s possible to have many classes in a namespace.
Now, is it possible to have a class in more than one assembly (.dll file)?
I know that it’s possible to have many classes in a namespace. Now, is
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No you can’t span a class over multiple assemblies.
If you create
Namespace1.Class1inassembly1&Namespace1.Class1inassembly2, then you reference both assemblies in your project, you’ll have:The type 'Namespace1.Class1' exists in both 'assembly1.dll' and 'assembly2.dll' ...