Qudir Ansari
Qudir Ansari

Reputation: 59

Could not load file or assembly 'System.Dynamic' or one of its dependencies

I am working on a .Net project 3.5 framework. I am getting this error while run time.

I think that this System.Dynamic resides in System.Core DLL, but I cannot find System.Dynamic under System.core?

How can I add this in my project?

Upvotes: 0

Views: 799

Answers (1)

Christoph Fink
Christoph Fink

Reputation: 23113

System.Dynamics is not available in .NET 3.5 - the DLR (= Dynamic Language Runtime) was introduced with .NET 4.0 and is not availalbe as a backport AFAIK.

The DLR and System.Dynamics are required to use the dynamic type. If you want to use that, you need to upgrade to at least .NET 4.0.

Upvotes: 2

Related Questions