Windows Phone 读取文本文件

 应用程序中读取工程目录下的txt文本文件方法,将TXT添加到资源,设置属性为content,读取方法为:

   string fileName = "123.txt";

            StreamResourceInfo resourceInfo = Application.GetResourceStream( new Uri(fileName, UriKind.Relative));
            using ( StreamReader reader = new StreamReader(resourceInfo.Stream))
            {
                    writingTextBlock.Text = reader.ReadToEnd();
                    reader.Close();
              }
            }

        }

Windows Phone 读取文本文件_第1张图片


你可能感兴趣的:(windows,String,phone)