Is it possible to do something like that in C#
public class MyClass implements ClassA extends ClassB {
}
I need this because I have two classes one of which is an interface which I will be implementing in my class, but I would like to also use methods from another class that does some stuff that I would like to use in my class.

ClassAas opposed toClassB? You want to equally use both as base classes, right? – O. R. Mapper Jan 3 at 12:38