I have a function which parses one string into two strings. In C# I would declare it like this:
void ParseQuery(string toParse, out string search, out strin
It's not supported. The closest you can get is ref
Granted you can fake it, but you lose a compile time check.