将动态 C# 对象转换为数组
如果动态对象是 Foo 或 Foo[] 类型的单个对象,是否有办法将其转换为数组?
例如,
如果动态是 Foo,则转换为数组中包含 1 个对象的 Foo[]
,如果动态是包含 n 个对象的数组 Foo[],则转换为数组中包含 n 个对象的 Foo[]。
Is there a way to convert a dynamic object to an array if it is either a single object of type Foo or Foo[] ?
For example,
if dynamic is Foo then convert to Foo[] with 1 object in array
if dynamic is an array Foo[] with n number of objects then convert to Foo[] with n number of objects in array.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我觉得自己有点傻……这真的是你想要的吗?
I feel a little stupid... Is really this you want?
也许我让这太简单了......您是否暗示您对动态值可能是什么类型一无所知?
Perhaps I'm making this too easy... are you implying that you know nothing about what type the dynamic value might be?
通过使用
动态
变量,变量是动态的,而不是变量所引用的对象。也就是说,当您想要访问对象的成员或想要转换它时,没有静态类型检查。你需要一些其他的魔法才能做到这一点。您可以将
Foo
包装在DynamicObject
中,您可以在其中指定如何进行转换。然后你可以这样做:
By using a
dynamic
variable, the variable is dynamic, not the object the variable is referring to. That is, there is no static type checking when you want to access members of the object or want to convert it. You need some other magic to be able to do that.You could wrap your
Foo
in aDynamicObject
where you can specify how the conversion takes place.Then you could do this: