Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Contributor
2485 Points
499 Posts
Oct 21, 2005 06:25 PM|LINK
chapel21
Contributor
2485 Points
499 Posts
Re: Abstract classes and Interfaces
Oct 21, 2005 06:25 PM|LINK
The solution is:
interface B
{
void Do();
}
abstract class A : B
{
public abstract void Do();
}
This combines abstraction with implementation so that you can still call the methods from a generalized type.