在C#中这是this.txtType.Text = string.Empty什么意思?

来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/08 19:33:49
在C#中这是this.txtType.Text=string.Empty什么意思?在C#中这是this.txtType.Text=string.Empty什么意思?在C#中这是this.txtType

在C#中这是this.txtType.Text = string.Empty什么意思?
在C#中这是this.txtType.Text = string.Empty什么意思?

在C#中这是this.txtType.Text = string.Empty什么意思?
this.txtType.Text = string.Empty效果就相当于this.txtType.Text = ""
但是这两者的性能优点差别:string.Empty是不分配内存的,而""会分配一个长度为空的存储空间.所以在正式开发中string.Empty更常用.