I have some string with variable, e.g.
string path = @"C:\one\filename.exe" + arguments
arguments: "-s -c -d > "somedirectory\some file.txt""
I've problem with redirection output to "somedirectory\some file"
If I put "\""
or char.ToString('"')
it always interprets as \"
...not alone "
How should I put this "
character into arguments?