using System; 
using System.Collections.Generic; 
using System.Text; namespace T9 

    interface Ipromotale//晋级接口。 
    { 
        void Promote(); 
    }     public class Programmer:Employee,Ipromotale//程序员类继承了雇员类和一个晋级接口 
    { 
        public void promote()//提升方法 
        {             Console.WriteLine("晋级年薪为:{0}", base.Salary * 1.5); 
        } 
请教各位前辈上面这段代码为什么会编译出错:错误 1 “T9.Programmer”不会实现接口成员“T9.Ipromotale.Promote()” F:\C#作业\T9\T9\Programmer.cs 12 18 T9