Win 8 アプリでFileIO.ReadAllBytes
andを使用しようとしていますが、エラーが発生します。File.ReadAllBytes
「Windows.Storage.FileIO」には「ReadAllBytes」の定義が含まれていません
私のコード:
byte[] bytes = FileIO.ReadAllBytes(@"image.png");
string encoded = Convert.ToBase64String(bytes);
string content = "file1=" + encoded + "";