Silverlight xml save issue

I have a xml file in my xap and in my solution explorer when working on it.I've managed to load it normally using\[code\]var file = XDocument.Load("file.xml");\[/code\]However, when I attempt to use \[code\]file.save()\[/code\] it requires a stream/xmlstream. Ofcourse it does.. but how can I point a stream towards the file in my xap/solution explorer???I have attempted to use IsolatedStorage since you can only use streams inside that (as far as I know) but I can't seem to get it to save the file.
 
Back
Top