static void Main(string[] args) { IMyInterface foo = new MyConcreteClass(); foo.FunctionA(); foo.FunctionB(); foo.FunctionC(); Console.ReadKey(); }