Yogesh
Yogesh

Reputation: 1216

"Rate It" link for windows phone market place

I am introducing a link(button) from WP7(c#+xna) game which needs to directly go to GAME RATE screen where people can rate it. but i am not sure where can i find. Please let me know where i would find it to my game at WP market place.

Upvotes: 3

Views: 4219

Answers (1)

MarcinJuraszek
MarcinJuraszek

Reputation: 125660

Use MarketplaceReviewTask:

MarketplaceReviewTask marketplaceReviewTask = new MarketplaceReviewTask();

marketplaceReviewTask.Show();

Upvotes: 5

Related Questions