StackOverflow Exception from get and set
问题 I have the following code: namespace QuantStrats { class Program { static void Main(string[] args) { string FilePath = "C:\\Users\\files\\DJ.csv"; StreamReader streamReader = new StreamReader(FilePath); string line; List<Data> Data = new List<Data>(); while ((line = streamReader.ReadLine()) != null) { Data Tick = new Data(); string [] values = line.Split(','); Tick.SetFields(values[1], values[2]); Data.Add(Tick); } for (int ii = 0; ii < Data.Count; ii++) { Data TickDataValues = new Data();