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.
私は一般的な抽象クラスを持っていPlot<T>ます。抽象クラスの実装を受け入れるコレクションを定義するにはどうすればよいですか? 次のアプローチを試しましたが、成功しませんでした。
Plot<T>
public List<Plot<object>> Plots = new List<Plot<object>>();
public List<Plot<dynamic>> Plots = new List<Plot<dynamic>>();
ありがとう。