I am creating a Windows Phone 8.0 App and I am wondering how i can Access the property of the Image url and assign it to a string
or something
I wrote
BitmapImage img = new BitmapImage();
img.UriSource = pic.Source;
But that's not correct , Error:
Cannot implicitly convert type 'System.Windows.Media.ImageSource' to 'System.Uri'
How can I do such thing?
Image?