A little in addition to @Rob's answer, there is one place where the choise is particuarly important between an interface and abstract class...
If your developing a framework (rather than application) Interfaces can cause problems down the line if you need to add a new method to it after code is already out in the world.
i.e. if you define an iterface:
public interface IFoo
{
void DoFoo();
}
And if a class implements that interface:
public class Fooer : IFoo
{
void DoFoo()
{
return "bla";
}
}
If you needed to add a new method to IFoo:
public interface IFoo
{
void DoFoo();
void DoKungFoo(); // this would break existing libraries out in the world
}
you couldnt if existing code out in the world that references you framework library exisits, it would break them. In this case, you should make the interface an abstract class instead (from the start), and then if / when you need to change it, you can do so with a default implementation so existing code will still compile.
Important decision, as using abstract class will kill ure inheritance line as Rob said...