我已经使用 Visual Studio 2010 创建了一个 Web 服务,该 Web 服务接收 2 个整数和秒表,其中一个参数还包括和 out 语句,如下例所示:
public double[][] Parameters(int N_ele, int N_carac, Stopwatch inic, out Stopwatch ini_final)
我在 Visual Studio 中创建了一个 Web 应用程序,必须创建一个 Web 引用才能调用 Web 服务。当我调用网络服务时,我使用了下一个代码:
webclient.Serv1 service = new webclient.Serv1();
int element, caracteristic;
System.Diagnostics.Stopwatch time_sent = new System.Diagnostics.Stopwatch();
System.Diagnostics.Stopwatch time_respond = new System.Diagnostics.Stopwatch();
servicie.Parameters(ele, caract,time_sent, out time_respond);
Visual Studio 如何标记和错误它说:无法将 System.Diagnostics.Stopwatch 转换为 Application1.webclient.Serv1.Stopwatch
以及 out 语句中的相同错误,如果有人可以帮助我找到错误的原因以及如何解决它。我也在使用 C#、Visual Studio、.NET 框架 4 和 3,使用两个不同的 Web 应用程序。