TextBox填充了由不能正常工作的方法返回的字符串C#

时间:2016-11-29 15:38:03

标签: c# textbox

我有一个TextBox1,可以输入用户名。 button1运行此方法:

public string queryuser(string usrname)
{
    string computername "";
    //some code here what finds out where the user was logged on last time
    return computername;
}

我把这个方法的结果放到TextBox2

TextBox2.Text = queryuser(TextBox1.Text);

button2应运行以下方法并返回任何内容。假设它检查系统类型。

public string querycomputer(string computername)
{
    string systemtype= "";
    //some code
    return systemtype; //just an example
}

然后在点击button2之后应该运行这样的方法:

querycomputer(TextBox2.Text);

我收到错误。但是如果我按住ctrl + a,ctrl + c,ctrl + v按原样运行TextBox2并按下按钮2就可以正常工作。

我希望我能表达自己的清洁和清晰。

0 个答案:

没有答案