C
C#11mo ago
PadFoot

How to convert ValueKind = object to dynamic object?

I can not convert ValueKind = object to dynamic object
2 Replies
The Fog from Human Resources
you can try to
var someVariable = (dynamic)yourObject;
var someVariable = (dynamic)yourObject;
but im not exactly sure what you mean
Angius
Angius11mo ago
What do you mean by "dynamic object"? What is "ValueKind"?

Did you find this page helpful?