using System.Collections.Generic;
public static void Main()
List<PocoObject> pocoObj = new List<PocoObject>();
string str = "[['2070-013-20','Formulation',' 9198- 67- 12428','STANFORDS OLD ENGLISH 18-3-5 PREEMERGENCE CRABGRASS KILLER W/BALAN & FERTILIZER','','SD','05/28/2020'],['2070-014-20','Formulation',' 8959- 12','CUTRINE PLUS GRANULAR ALGAECIDE ','LT','SD','05/28/2020'],['2070-015-20','Documentary',' 1729- 122- 10305','OMNI BROMINATING STIX PAK ','','SS','05/28/2020']]";
List<string> strObj = str.Split('[').ToList();
foreach (string s in strObj)
column = s.Split(',').ToArray();
Console.WriteLine(obj.Id); Console.Write(obj.Name); Console.Write(obj.No); Console.Write(obj.Address); Console.Write(obj.Code1); Console.Write(obj.Code); Console.Write(obj.Date);
public string Id { get; set; }
public string Name { get; set; }
public string No { get; set; }
public string Address { get; set; }
public string Code { get; set; }
public string Code1 { get; set; }
public string Date { get; set; }