C#使用文件流读取文件的方法
程序员文章站
2023-11-21 15:49:16
本文实例讲述了c#使用文件流读取文件的方法。分享给大家供大家参考。具体如下:
using system;
using system.io;
namespace...
本文实例讲述了c#使用文件流读取文件的方法。分享给大家供大家参考。具体如下:
using system; using system.io; namespace client.chapter_11___file_and_streams { public class openexistingfile { static void main(string[] args) { fileinfo myfile = new fileinfo(@"c:\projects\testing.txt"); filestream mystream; mystream = myfile.open(filemode.open,fileaccess.read,fileshare.none); } } }
希望本文所述对大家的c#程序设计有所帮助。