Reputation: 1343
I am trying to port project to .NET Core. But I can't find analog System.Dynamic.ExpandoObject.
Upvotes: 1
Views: 2750
Reputation: 46531
The ExpandoObject
class lives in the System.Dynamic.Runtime package, along with DynamicObject
and other dynamic infrastructure types.
Tip: you can use this package search website to find types in .NET Core - it still works with RC2 packages but just download the stable version in stead of *-rc2
.
Upvotes: 3