[c#] Double quote string replace in C#

How to replace the below string in C#

Current:

"John K "GEN" Greg"

The Goal:

 "John K \"GEN\" Greg"

This is wrong because I'm not escaping it properly:

s = s.Replace(""","\"");

What is syntax for replacing quotes with \ (slash)?

Any help would be appreciated.

Thanks

This question is related to c#

The answer is