I'm getting back into C#, and I've ran into a problem. I'm making an interpreter and I need to get strings and numbers. My first way was to use Regex, but I don't know how to use it that well.
Let's say I have this:
print "string 1" "string 2" 10
I need to get an array of the args/parameters:
{'string 1', 'string 2', '10'}
So if you can help I appreciate that.