所以我有一个类,我创建一个包含所有必要信息(地址、电话、电子邮件等)的客户每一次。
这是我需要引用的类的示例:
public class Start_Customer
{
public CreateRequest _request;
public CreateResponse _response;
string fax = "(866) 345-3453";
string website = "www.testersRus.com";
bool Manage = true;
int PartnerID = 0;
string FirstName = "";
string LastName = "";
string Email = "";
public void CreateClient()
{
_request = new CreateRequest();
_request.CommandComment = "";
}
public void Test()
{
//create a new web service client
var sw = new SoapCreateStart();
_response = sw.Customers_Start(new AppHeader(), _request) as CustomerResponse;
Console.WriteLine(_response.ToString());
}
现在,在我的新课程中,我正在尝试使用该课程的参考并结识新客户,然后检查是否制作了某些事情,例如传真号码是否正确,公司是否正确等等。
关于如何在不使方法静态的情况下以正确的方式引用它的任何想法?
到目前为止,我在想我会说:
Start_Customer create = Start_Customer();
create = CreateClient();
这让我可以使用该方法,但我不断收到 null 错误。请帮忙!