美文网首页
012_定义和实现接口。

012_定义和实现接口。

作者: 立秋i | 来源:发表于2018-05-21 15:52 被阅读0次

    namespace _012_定义和实现接口 {

        class Bird :IFly,IB{

            public void Fly()

            {

            }

            public void MethodA()

            {

            }

            public void Method1()

            {

            }

            public void Method2()

            {

            }

        }

    }

    ————————————————————————————————————————————————————————————

    namespace _012_定义和实现接口 {

        interface IA

        {

            void Method1();

        }

    }

    ————————————————————————————————————————————————————————————

    namespace _012_定义和实现接口 {

        interface IB:IA

        {

            void Method2();

        }

    }

    ————————————————————————————————————————————————————————————

    namespace _012_定义和实现接口 {

        interface IFly

        {

            void Fly();

            void MethodA();

        }

    }

    ————————————————————————————————————————————————————————————

    namespace _012_定义和实现接口 {

        class Program {

            static void Main(string[] args) {

            }

        }

    }

    相关文章

      网友评论

          本文标题:012_定义和实现接口。

          本文链接:https://www.haomeiwen.com/subject/skzfjftx.html