Is it possible to link directly to "rate and review"?

windows-phone-8

Solution

Use `MarketplaceReviewTask` Launcher instead of a link:

using Microsoft.Phone.Tasks;

(...)

MarketplaceReviewTask marketplaceReviewTask = new MarketplaceReviewTask();
marketplaceReviewTask.Show();

It's gonna open `Marketplace` app on your application page where user will be able to review your app.

Problem

Can i set the link of "rate and review" page of my app ? Actually i want to give this link in "About" page of my app.

Original source