我正在尝试构建一个程序,在用户输入文本框时显示字符和单词的数量。我以为我知道自己在做什么,但遇到了这个错误:
'不能将类型'string'隐式转换为'Systems.Windows.Forms.Label'
这就是我到目前为止所拥有的。最后一行代码包含错误:
private void userTextBox_TextChanged(object sender, EventArgs e)
{
string userInput = userTextBox.Text;
char charCount;
charCount = userInput[0];
charCountOutput = charCount.ToString();
}