I'd like to specify some command line arguments to a C# application. Meanwhile I want to interpret these arguments in C# "as-is".
For example, the argument may be in the form of:
" "\"" + DateTime.Now.AddDays(-1).ToDate("yyyyMMdd") + "\"" "
so the correct behavior is to explain this argument as "20140203"
(with quotes).
Is there a clean way to achieve this?