テスト
public string username { get; set; }
public void Test(string test)
{
this.username = test;
}
public string Get()
{
return this.username
}
ITest
[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
何をしようとしても、空のままなのですか?