| Thomas 的个人资料Blogs日志列表 | 帮助 |
|
1月25日 Encoding and Decoding of code pagesSometimes you'll have to read from a file that has a specific codepage.
Using the FileStream class you can decode the bytes read using the following method:
protected string Read(int size) string s; if (codepage != null) return s.Trim(); |
|
|