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; } } 根據作業複製結構結構用法