覆盖:textBox1.Text.ToString()
如何覆盖? ToString()
textBox1.Text.**ToString()**
How to override? ToString()
textBox1.Text.**ToString()**
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何覆盖? ToString()
textBox1.Text.**ToString()**
How to override? ToString()
textBox1.Text.**ToString()**
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
好吧,要重载 Text 属性,您必须自己从 TextBox 继承,我怀疑您想要这样做。
一个更简单的解决方案是为字符串创建一个扩展方法来执行您想要的操作:
Well, to overload the Text property you'd have to inherit from TextBox yourself, which I doubt you want to do
An easier solution would be creating an extension method for string to do what you want:
你到底为什么想要这么做?文本已经是一个字符串。
如果您需要以不同的方式设置字符串格式,请使用 String.Format(...) 或不需要重写行为的自定义方法。
Why on earth would you want to? Text is already a string.
If you need to format the string differently, use String.Format(...), or a custom method you don't need to override the behavior.
我们都是override:
We are both override :