Windows Phone 7 を使用して plist ファイルを開きたいのですが、file.plist から file.xml に変更すると機能するため、ファイルの拡張子を理解できなかったようです !! しかし、plist拡張機能で動作する必要があります。
私はそれを開くためにこのコードを使用しています:
var resource = Application.GetResourceStream(
new Uri(@"/myproject;component/cdp/document-category-info.plist",
UriKind.Relative));
StreamReader streamReader = new StreamReader(resource.Stream);
string x = streamReader.ReadToEnd();