Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近问了一个关于在 C# 中对泛型类型调用方法的问题:在 C#中调用模板中的方法
我遇到的问题是我无法操作要为其创建通用函数的类型。这些类型是一些具有相同方法的 WebServices 的 SoapClients。有什么解决方案可以让我避免复制代码吗?
如果我对您的理解正确,您有几种无法更改的类型,它们不共享任何接口但有一些共同的方法。并且您想编写一个为任何类型调用此通用方法的方法。
为此,我认为您有两种选择:
dynamic