How to launch a command line app from CLR

Just saw this one fly by on an internal list and thought google might help someone find it someday:

Question: I have “myapp.exe a b” to be executed. How can I launch such command with CLR API?

Answer (a local smart guy): System.Diagnostics.Process.Start("myapp.exe", "\"a\" \"b\"");