| Author: Padma 28 Aug 2006 | Member Level: Diamond | Rating: Points: 2 |
yes ... you can..tell. In your project have used modules like class files projects. if so, how you are refering it...like how you added those dll into your project
|
| Author: Dhyanchandh.A.V 28 Aug 2006 | Member Level: Gold | Rating: Points: 2 |
1.U can inherit a class from ur dll to a class in ur project. example public class Derived : ANameSpace.Base {
}
Here 'Base' is a class in ur dll and 'ANameSpace' is the namespace of 'Base' class. 'Derived' is a class in ur project.
Here I have specified the fully qualified path instead of specifying " using ANameSpace; " at the beginning.
|