摘要: 提问 C# 可以重载操作符吗 回答 public class Salary { public int RMB { get; set; } public static Salary operator +(Salary s1, Salary s2) { s2.RMB += s1.RMB; return 阅读全文
posted @ 2023-01-03 09:07 东百牧码人 阅读(15) 评论(0) 推荐(0)