[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CSharpFileIO
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CSharpFileIO
(C#) File I/O
Which class to use for File I/O depends on what you want to do.
System.IO.FileStream file
= new System.IO.FileStream(
"d:\\myIo.txt",System.IO.FileMode.Truncate,
System.IO.FileAccess.Write);
//Do stuff
file.Close();
'File I/O' links
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
