public void DemoVanInterface() { IBankAccount account = new Derived(); account.Withdraw(10m); Console.WriteLine($"Balance: {((Base)account).Balance}"); }