Answers for "how clear all line in text file and write new string in c#"

C#
0

how clear all line in text file and write new string in c#

if (File.Exists(ModuleListPath))
            {
                File.WriteAllText(ModuleListPath, String.Empty);
            }

            foreach (var item in list)
            {
                using (StreamWriter stream = new StreamWriter(ModuleListPath,true))
                {
                    try
                    {
                        stream.WriteLine(item);
                        
                    }
                    catch
                    {
                        trow;
                    }
                }
            }
Posted by: Guest on October-02-2020

Code answers related to "how clear all line in text file and write new string in c#"

C# Answers by Framework

Browse Popular Code Answers by Language