测试
public string username { get; set; }
public void Test(string test)
{
this.username = test;
}
public string Get()
{
return this.username
}
测试
[OperationContract]
public string Get();
[OperationContract]
public void Test(string test);
测试项目
var webapi3 = new v3.TestClient("BasicHttpBinding_IProductData1");
webapi3.Test("TestString");
var u = webapi3.Get();
问题
为什么u
仍然是空的,不管我尝试什么?