DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Snippet For Replace Text In File In C#.net
Snippet for replace text in file in c#.net
File.WriteAllText("First.txt", "First1");
File.WriteAllText("Second.txt", "Second2");
File.Replace("Second2.txt", "First1.txt", "Third.txt");





