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.
我继承了一个 asmx Web 服务。我最熟悉 WCF。我如何知道这个较旧的 Web 服务正在使用哪个 WSE 版本?1.0、2.0 还是 3.0?
它可能根本不使用 WSE(如果幸运的话)。
查看您正在使用的 Microsoft.Web.Services 版本。如果它是 Microsoft.Web.Services2.dll,那么您使用的是 WSE 2.0(甚至比 WSE 3.0 更过时)。
I want to create a function that is
while t is template<typename T>
template<typename T>
string myFunction(T t) { string str1; //some computation with t return str1(); }