Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This DLL is added by default in Visual Studio 2010 projects. What is this new assembly used for? It does not seem to contain much after looking at it using Reflector and Google does not seem to have much to say about it either.

share|improve this question

3 Answers

up vote 82 down vote accepted

It is used when/if you use the dynamic keyword in your project. The assembly contains the C# runtime binder.

The C# compiler has essentially been extracted out into a library so that it can emit, compile and run code needed to support the dynamic keyword. The first time you use dynamic in your code, this assembly (as well as System.dll, System.Core.dll and System.Dynamic.dll) will get loaded into your AppDomain.

share|improve this answer
Would you care to speculate on why they chose to reference it by default? Should we all be using dynamic a lot more than we currently are (i.e. never)? – mo. Feb 28 at 14:55

Check out this article to know more about the 'dynamic' keyword, what it does and why you might use it: MSDN: Using Type dynamic (C# Programming Guide)

share|improve this answer

Always removed it so far. No issues yet.

share|improve this answer
3  
If your project doesn't use the dynamic keyword, I guess it's ok to remove the line that says <Reference Include="Microsoft.CSharp" /> in the .csproj file. – Cheeso Apr 23 '11 at 17:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.