AFAIK Nemerle doesn't have dynamic keyword, late binding doesn't work as well:
late{
mutable obj=ExpandoObject();
obj.test="test"; //MissingMethodException
}
So, is there a way to use ExpandoObject in Nemerle?
AFAIK Nemerle doesn't have dynamic keyword, late binding doesn't work as well:
late{
mutable obj=ExpandoObject();
obj.test="test"; //MissingMethodException
}
So, is there a way to use ExpandoObject in Nemerle?
"late" use reflection and can't work with ExpandoObject.
But you can use ExpandoObject like Dictionary:
What do you want to achieve?