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