c# 接口(interface)的一点理解

    技术2022-05-11  75

    1。对于类库的结构管理很方便(以前)。2。对于使用组件很方便。以前是原代码解释://首先定义两个功能接口      interface a    ...{          void xx();          void yy();    }     interface vv    ...{        void gg();        void hh();    }//用B

    最新回复(0)