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ベータ、C#で作業しています。)
インターフェイスがあり、このインターフェイスから派生したすべてのクラスはカスタムToString()ロジックを実装する必要があります。それは強制力がありますか?もしそうなら、どのように?
ToString()
インターフェイス経由ではありません。
これには抽象クラスを使用する必要があります。
- 編集
'ToString'を抽象として再宣言するだけです。
abstract class Foo { public override abstract string ToString (); }