Serhii Shemshur
Serhii Shemshur

Reputation: 1343

Analog System.Dynamic.ExpandoObject in .NET Core

I am trying to port project to .NET Core. But I can't find analog System.Dynamic.ExpandoObject.

Upvotes: 1

Views: 2750

Answers (1)

Henk Mollema
Henk Mollema

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

Related Questions