我正在尝试在我的 Win 8 应用程序中使用FileIO.ReadAllBytes
和File.ReadAllBytes
,但出现错误:
“Windows.Storage.FileIO”不包含“ReadAllBytes”的定义
我的代码:
byte[] bytes = FileIO.ReadAllBytes(@"image.png");
string encoded = Convert.ToBase64String(bytes);
string content = "file1=" + encoded + "";