I have a Silverlight project with several projects in my solution. I want to get a relative path to an image in project A from project B inside my helper C# class.
solution
-Project A
-Helper.cs
-Project B
-image.jpg
Helper.cs need a reference to image.jpg
I can't add a reference to prj A from prj B.
Can I do something like:
Uri uri = new Uri("/project.name.projectA;image.jpg", UriKind.Relative);
Thank you