c# 使用 Read 读取数据块

class Program { static void Main(string[] args) { Stream s = new MemoryStream(); for (int i = 0; i < 500; i++) { s.WriteByte((byte)i); } s.Position =
posted @ 2021-03-26 14:26  摩诘  阅读(936)  评论(0编辑  收藏  举报