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.
一般的に作業して、PropertyInfoメソッドにプロパティを取得します。このプロパティは常に
PropertyInfo
Dictionary<someobject, customenum>そして、このプロパティを通じて、どのタイプのキー(someobject)を知ることができる必要があります...
Dictionary<someobject, customenum>
誰かが私を助けることができますか?
申し訳ありませんが、英語は私の母国語ではありません!
私はこれがあなたが望むものだと思います:
var d = new Dictionary<int, string>(); var arguments = d.GetType().GetGenericArguments(); var keyType = arguments[0]; var valueType = arguments[1];