C# Stream 和 byte[] 之間的轉換

/// <summary>  /// 將 Stream 轉成 byte[]  /// </summary>  public byte[] StreamToBytes(Stream stream)  {      byte[] bytes = new byte[stream.Length];      stream.Read(bytes, 0, bytes.Length);      // 設置當前
相關文章
相關標籤/搜索