How to display Message Box in Windows Store Universal App ?

If you are looking out for a sample code snippet to demonstrate how to display Message Box in Windows Sore Universal App , below is a sample code snippet that demonstrates how to do it.

How to display Message Box in Windows Store Universal App  ?

MessageDialog dialog = new MessageDialog("Do you want to View Abundantcode website?" , "Information");
await dialog.ShowAsync();
1