質問編集履歴
1
using (var stream = path)をusing (var stream = File.OpenRead(path))に修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
var client = StorageClient.Create();
|
24
24
|
|
25
|
-
using (var stream = path)
|
25
|
+
using (var stream = File.OpenRead(path))
|
26
26
|
|
27
27
|
{
|
28
28
|
|