Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
那只是我尝试的一个测试。我想制作一种行为与int. 我试图制作这样的代理类型:
int
class myint : int { }
但myint不会是值类型。有没有办法创建代理类型int?
myint
PS我知道扩展方法。
值类型只能实现接口——你不能从另一个值类型继承。
所以,你不能继承自int.
您可以将一个类/结构包装int为一个字段。