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.
相关问题
- Generic Generics in Managed C++
- How to know full paths to DLL's from .csproj f
- Importing NuGet references through a local project
- How to Debug/Register a Permanent WMI Event Which
- Visual Studio 2019 - error MSB8020: The build tool
Always removed it so far. No issues yet.
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 usedynamic
in your code, this assembly (as well as System.dll, System.Core.dll and System.Dynamic.dll) will get loaded into your AppDomain.