StackOverflow 文档 C# Language 教程 结构 结构实现接口 结构实现接口 Created: November-22, 2018 public interface IShape { decimal Area(); } public struct Rectangle : IShape { public decimal Length { get; set; } public decimal Width { get; set; } public decimal Area() { return Length * Width; } } 根据作业复制结构结构用法