Answers for "update text file c#"

C#
1

replace text c# file

string text = File.ReadAllText("test.txt");
text = text.Replace("some text", "new value");
File.WriteAllText("test.txt", text);
Posted by: Guest on July-11-2021
0

update a file where there is a keyword c#

string text = File.ReadAllText("test.txt");
text = text.Replace("some text", "new value");
File.WriteAllText("test.txt", text);
Posted by: Guest on March-18-2021

C# Answers by Framework

Browse Popular Code Answers by Language