How to invoke static method in C#4.0 with dynamic type?

后端 未结 3 2178
栀梦
栀梦 2020-12-11 01:26

In C#4.0, we have dynamic type, but how to invoke static method of dynamic type object?

Below code will generate exception at run time. The dynamic

3条回答
  •  [愿得一人]
    2020-12-11 02:18

    This is not supported directly by C# 4 but there's an interesting workaround in this blog post: http://blogs.msdn.com/davidebb/archive/2009/10/23/using-c-dynamic-to-call-static-members.aspx

提交回复
热议问题