csv から取得した文字列は次のとおりです。
string input = "Volume,447,\"4,325\",142,144";
配列行に必要なもの:
447
4,325
142
144
私が試したこと:
string[] volumes;
if (input.Contains(",\"")) // if they're all double value, it works
volumes = input.Split(new[] {",\""}, StringSplitOptions.None);
else
volumes= input.Split(','); // if they're all integer value it works
else
// what to do if they have both double and integer?