Paths in C# : Path : File Stream C# Source Code


Custom Search

C# Source Code » File Stream » Path »

 

Paths in C#








    
 
/*
s = new FileStream("C:\\temp\\Goo.txt", FileMode.Create);

or use forward (Unix-style) slashes:

s = new FileStream("C:/temp/Goo.txt", FileMode.Create);

or use the at sign (@), which is a control-character suppressor:

s = new FileStream(@"C:\temp\Goo.txt", FileMode.Create);
*/

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo File Stream
» Path