关于Trim()string UserName = txtUserName.Text;和string UserName = txtUserName.Text.Trim();它们之间的却别是什么?我分不清这两种的用法

来源:学生作业学帮网 编辑:学帮网 时间:2024/06/04 23:09:54

关于Trim()
string UserName = txtUserName.Text;和
string UserName = txtUserName.Text.Trim();它们之间的却别是什么?
我分不清这两种的用法

txtUserName.Text.Trim();去掉了txtUserName.Text左右两边的空格字符.