自动属性:在“设置”过程中检查/验证。
我想我们都同意 C# 3.0 中的自动属性很棒。像这样的事情:
private string name;
public string Name
{
get { return name; }
set { name = value; }
}
简化为这样:
public string Name { get; set; }
可爱!
但是,如果我想在“设置”时使用 ToUpperInvariant() 方法转换名称字符串,我该怎么办?我是否需要恢复到创建属性的旧 C# 2.0 风格?
private string name;
public string Name
{
get { return name; }
set { name = value.ToUpperInvariant(); }
}
或者有更优雅的方法来实现这一点吗?
I think we can all agree that Automatic Properties in C# 3.0 are great. Something like this:
private string name;
public string Name
{
get { return name; }
set { name = value; }
}
Gets reduced to this:
public string Name { get; set; }
Lovely!
But what am I supposed to do if I want to, say, convert the Name string using the ToUpperInvariant() method while "setting". Do I need to revert back to the old C# 2.0 style of creating properties?
private string name;
public string Name
{
get { return name; }
set { name = value.ToUpperInvariant(); }
}
Or is there a more elegant way of accomplishing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您必须将其转换回来。自动财产无法进行此类检查。
Yes, you have to convert it back. An autoproperty can't do this kind of checks.