Skip to content
Prev Previous commit
Next Next commit
Split() leaves Value intact
  • Loading branch information
Aaron Kunkle committed Mar 17, 2022
commit efe56766eb9c6f7c84a25a6ea08554ebc82a575d
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static List<string> ParseAndRemovePairsParameter(List<string> argsList, s
{
while (parameterIndex + 1 < argsList.Count && !argsList[parameterIndex + 1].StartsWith("-"))
{
string[] pair = argsList[parameterIndex + 1].Split(':');
string[] pair = argsList[parameterIndex + 1].Split(":".ToCharArray(), 2);
object value;
int i_result;
bool b_result;
Expand Down