如何扩展匿名类的对象
我有类方法:
public object MyMethod(object obj)
{
// I want to add some new properties example "AddedProperty = true"
// What must be here?
// ...
return extendedObject;
}
并且:
var extendedObject = this.MyMethod( new {
FirstProperty = "abcd",
SecondProperty = 100
});
现在extendObject 有了新属性。请帮忙。
I have class method:
public object MyMethod(object obj)
{
// I want to add some new properties example "AddedProperty = true"
// What must be here?
// ...
return extendedObject;
}
And:
var extendedObject = this.MyMethod( new {
FirstProperty = "abcd",
SecondProperty = 100
});
Now the extendedObject has new properties. Help please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你不能那样做。
如果您想要一个可以在运行时添加成员的动态类型,那么您可以使用
ExpandoObject
。这需要 .NET 4.0 或更高版本。
You can't do that.
If you want a dynamic type that you can add members to at runtime then you could use an
ExpandoObject
.This requires .NET 4.0 or newer.
您可以使用字典(属性、值),或者如果您使用的是 c# 4.0,则可以使用新的动态对象 (ExpandoObject)。
http://msdn.microsoft.com/en-us/library/dd264736.aspx
You can use a Dictionary (property, value) or if you are using c# 4.0 you can use the new dynamic object (ExpandoObject).
http://msdn.microsoft.com/en-us/library/dd264736.aspx
您在编译时知道属性的名称吗?因为您可以这样做:
然后:
请注意,这在很大程度上依赖于以下事实:同一程序集中的两个匿名类型,其属性具有相同名称、相同类型、相同顺序,并且属于相同类型。
但是,如果您要这样做,为什么不直接创建具体类型呢?
输出:
Do you know at compile-time the names of the properties? Because you can do this:
Then:
Note that this relies very heavily on the fact that two anonymous types in the same assembly with properties having the same name of the same type in the same order are of the same type.
But, if you're going to do this, why not just make concrete types?
Output: