Is any c# lib which convert string like linux command? example:
myCommand -t 123 -s string -ff "string string string"
give me output like
["myCommand"]=>{
["t"]=123,
["s"]="string",
["ff"]="string string string"
}
and example how use :)