Is there any way to inherit from a class that exists in a referenced project and has the same namespace as the base class For example, lets say I have a class with namespace MyApplication.Common in MyApplication.Base.dll. Is there any way to create a class that inherits from MyApplication.Common and has the same namespace in a project that references MyApplication.Base.dll I was hoping that partials might help me out, but they are limited to existing within the same project.
Thanks for any help.
Lance

Inherit from class with same namespace
double_metre
Im sorry I couldnt show VB.net code.. I dont have it
but it is possible to inherit the class from another project.
namespace WindowsApplication1
{
class Class1:ClassLibrary1.Class1
{
public Class1()
{
this.IntegerInt;
base.IntegerInt;
this.Save();
base.Save();
}
}
}
Derek McLachlan
Or You can clear it and then creating classes under any namespace you need
Like
Namespace
System.Windows.FormsClass MySampleForm
Inherits System.Windows.Forms.Form
End
Class End Namespace