-1

我似乎不知道如何正确地将以下 VB.NET 代码转换为 C#,我将在其中声明一个 Web 服务对象,然后最终使用一个函数来返回我需要的数据。我在我的项目中创建了网络服务:http: //mmm-acctgdev.abc.com/Central_Locating/Service/Locating.asmx

VB.NET 网络服务声明:

Dim oFind As New com.abc.mmm_acctgdev.Locating

//*Need to convert this into something a C# form can use

VB函数调用:

retXML = oFind.GetLocationByNum(txtFNum.Text)

//*need this call in c#
4

1 回答 1

3
var oFind = new com.abc.mmm_acctgdev.Locating();
var retXML = oFind.GetLocationByNum(txtFNum.Text);
于 2012-08-29T20:36:05.750 回答