Issue with reading file on Windows Phone 8 SD card
问题 I have problems reads the file on Windows Phone SD card. I get the valid Stream object using ExternalStorageFile.OpenForReadAsync. However any seek operation is ignored and position is not moved although the stream CanSeek property is true; private async void ReadFileOnSDCard(ExternalStorageFile file) { Stream stream = await file.OpenForReadAsync(); using (stream) { long curPos= stream.Seek(100, SeekOrigin.Begin); long pos = stream.Position; // both curPos and pos are 0. 回答1: I was fighting