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.
(我正在使用 .NET 4.0 beta,C#。)
我有一个接口,从这个接口派生的所有类都应该实现自定义ToString()逻辑。这可以强制执行吗?如果是这样,怎么做?
ToString()
不是通过接口。
您需要为此使用抽象类。
- 编辑
您可以将“ToString”重新声明为抽象:
abstract class Foo { public override abstract string ToString (); }