using System.Collections;
using System.Collections.Generic;
public static void Main()
char[] delimiterChars = { '[', ']',',','"'};
String text = "[\"Card\",\"Cash\",\"Warrant\"]";
string[] words = text.Split(delimiterChars);
List<string> list = new List<string>();
foreach (var word in words)
System.Console.WriteLine(i);