dynamic keyword problem

前端 未结 4 563
无人共我
无人共我 2020-12-03 18:29

pls tell me in which version dynamic keyword is introduced ? I found strange behavior in VS2010. I set target framework to 3.5. But there is no compiler error. just crate a

4条回答
  •  感动是毒
    2020-12-03 19:08

    When you use Visual Studio 2010, it defaults to C# 4.0.

    You can not use C# 3.0 with Visual Studio 2010.

    Even if you target .Net Framework 3.5, it will just use Framework 3.5 and not C# 3.0.

    Now, since it defaults to C# 4.0, you get to use dynamic. But for that to work, you have to reference Microsoft.CSharp.dll. That assembly is compiled with v 4.0. You can't use it under v 3.5.

    dynamic needs DLR (Dynamic Language Runtime) which is not there for previous framework versions.

    That is why when you try to use dynamic under Framework 3.5 project, it will freak out.

    So, to summarize, to use dynamic, use Framework 4.0.

提交回复
热议问题