I want to parse a string into a type easily, but I don\'t want to write wrapper code for each type, I just want to be able to do \"1234\".Parse() or the like and have it return
You could write a wrapper function that calls tryParse for each type that you want to support.
tryParse