Freek's Blog

SQL en .NET vraagstukken en oplossingen die ik zoal tegenkom
posts - 199, comments - 123, trackbacks - 2, articles - 7

My Links

News

Google analytics script: Locations of visitors to this page

Article Categories

Archives

Post Categories

Image Galleries

Algemene links

MSDN

vb links

C#: function to write text to file

Posted on Tuesday, May 04, 2010 3:56 PM

 

//write value to given file
//value is the text to write
//path is the location of the text file

        public void funcWriter(string value, string path)

        {

 

            using (System.IO.StreamWriter sw = new System.IO.StreamWriter(path, true))

            {

                sw.WriteLine(value);

                sw.Flush();

            }

 

        }

 

Post Comment

Title  
Name  
Url
Comment   

ATTENTION: the code you need to copy is CaSe SeNsItIvE and is required to prevent spam.
Enter the code you see: