Is this.
private ObservableCollection<String> _Col;
public ObservableCollection<String> Col
{
get
{
return _Col;
}
set
{
_Col = value;
}
}
the same as this
public ObservableCollection<String> Col { get; set }
using col.add("stringvaribleorsomething") they would both result in col being a collection of items?