日期:2014-05-20  浏览次数:21000 次

请教接口实现的问题
我定义了一个接口,利用抽象类去实现这个接口,编译时系统提示“系统不会实现接口中的方法”。请问一下是什么原因啊?
接口:
        interface   IBIZZ
        {
                void   GetBizzState(string   strBiCode,   out   List <string>   LStates);
        }


抽象类:
        abstract   class   AbstractBizz:IBIZZ
        {
                public   virtual   void   GetBizzState(string   strBiCode,   out   List <string>   LStates)
                {
               
                }


        }


------解决方案--------------------
關注中
------解决方案--------------------
The abstract keyword enables you to create classes and class members solely for the purpose of inheritance