1. 首页
  2. 数据库
  3. 其它
  4. c#如何显式实现接口成员

c#如何显式实现接口成员

上传者: 2020-12-31 22:14:10上传 PDF文件 33.85KB 热度 13次
本示例声明一个接口IDimensions 和一个类 Box,显式实现了接口成员 GetLength 和 GetWidth。 通过接口实例 dimensions 访问这些成员。 interface IDimensions { float GetLength(); float GetWidth(); } class Box : IDimensions { float lengthInches; float widthInches; Box(float length, float width) { lengthInches = length; widthIn
用户评论