xxxxプログラマのメモ

先人に感謝と敬意:自分の困ったこと調べたことのメモ

2020-10-20から1日間の記事一覧

Multipartsection to MemoryStream

await using (MemoryStream memoryStream = new MemoryStream()) { var fileMultipartSection = section.AsFileSection(); await fileMultipartSection.FileStream.CopyToAsync(memoryStream); memoryStream.Position = 0; } stackoverflow.comThanks!