How to make this Field into Property
anyone know how to make
public int Count => Data.Count; into property?public int Count => Data.Count;public class MyColumn
{
public List<string> Data { get; set; }
public int Count => Data.Count;
public MyColumn()
{
Data = new List<string>();
}
}