2019 8 31 C 簡單讀取檔案

2022-01-14 01:16:41 字數 670 閱讀 8397

title

author

date

createtime

categories

c# 簡單讀取檔案

lindexi

2019-08-31 16:55:58 +0800

2018-07-19 16:48:32 +0800

c#現在寫了一些**,想使用最少**來寫簡單的讀檔案,所以我就寫了這個文章

private

byte readfile(fileinfo

file)

return

memorystream.getbuffer();

}

這個方法效能比較差,但是**很簡單

string

str;

using (var

stream

=new

streamreader(file.openread()))

第二個方法只需要一句話

string

str=

system.io.file.readalltext(path);

這裡的 path 就是檔案的路徑

如果有找到比我上面**更少的方法請告訴我,這裡不用安裝第三方的庫,是在快速建立新的專案進行測試

2019 8 31 C 簡單讀取檔案

title author date createtime categories c 簡單讀取檔案 lindexi 2019 08 31 16 55 58 0800 2018 07 19 16 48 32 0800 c 現在寫了一些 想使用最少 來寫簡單的讀檔案,所以我就寫了這個文章 private ...

2019 8 31 C 匹配可空變數

title author date createtime categories c 匹配可空變數 lindexi 2019 08 31 16 55 58 0800 2019 06 01 08 40 11 0800 c 在 c 7.0 的時候提供更好用的模式匹配方法,支援通過 is 直接轉換對應的類,...

C 簡單讀取檔案

現在寫了一些 想使用最少 來寫簡單的讀檔案,所以我就寫了這個文章 private byte readfile fileinfo file return memorystream.getbuffer 這個方法效能比較差,但是 很簡單 string str using var stream newstr...