我已創建一個Web服務使用Visual Studio 2010中,Web服務接收2個整數和stopwach,參數之一還包括進出聲明一樣展現在NEX例如:秒錶不工作
public double[][] Parameters(int N_ele, int N_carac, Stopwatch inic, out Stopwatch ini_final)
wen我在Visual Studio中創建一個Web應用程序,必須創建一個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應用程序。
在這個命名空間中似乎有另一個名爲'StopWatch'的類:'Application1.webclient.Serv1'。 –