private ObservableCollection<String> _Col;
public ObservableCollection<String> Col
{
get
{
return _Col;
}
set
{
_Col = value;
}
}
与此相同
public ObservableCollection<String> Col { get; set }
使用col.add(“stringvaribleorsomething”),他们都会导致col成为项目的集合?
答案 0 :(得分:1)
很快 - 是的。但请查看this article关于C#
中自动实现的属性答案 1 :(得分:0)
如果你想同时使用getter
和setter
两种方法,是的,它是相同的。但是如果你想让你的属性只读,或者设置你的属性值取决于某些条件你应该使用第一个。
第二个名为auto-implemented property
。您可以看到documentation