update a file where there is a keyword csharp

Code Example - update a file where there is a keyword csharp

                
                        string text = File.ReadAllText("test.txt");
text = text.Replace("some text", "new value");
File.WriteAllText("test.txt", text);