在 C# 中将哈希表转换为字典
如何在 C# 中将哈希表转换为字典?是否可以?
例如,如果我在 HashTable 中有一个对象集合,并且想将其转换为具有特定类型的对象字典,我该怎么做?
How do I convert a HashTable to Dictionary in C#? Is it possible?
For example, if I have a collection of objects in a HashTable and I want to convert it to a dictionary of objects with a specific type, how can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
agent-j 的答案的扩展方法版本:
Extension method version of agent-j's answer:
您可以为此创建一个扩展方法
You can create an extension method for that