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.
簡単な質問:C#では、1つのクラスで1つの基本クラスと多くのインターフェイスを実装できますか?
例えば
public MyCar : CarBase, ICar, ISomething { ... }
ありがとう
はい、クラスやベースクラスがすべてのインターフェイスで宣言されているものを実装している限り、これは問題ありません。
はい、あなたはこれを行うことができます。
ここに良い記事があります:
http://msdn.microsoft.com/en-us/library/ms173149.aspx