creating a streamwiter file csharp

Code Example - creating a streamwiter file csharp

                
                        StreamWiter writer = new StreamWriter ("Rainfall.txt", true);
writer.WriteLine("")
                    
                
 

streamwriter csharp

                        
                                using System.IO;

StreamWriter out = new StreamWriter("file.txt");
out.WriteLine("First line.");
out.WriteLine("Second line.");
out.WriteLine("Third line.");
out.WriteLine("Fourth line.");
out.WriteLine("Fifth line.");
out.Close();

//This will create a txt file in the debug folder.
/*U can set the path by using*/ "c:\path"
                            
                        
 

Related code examples