Is it possible to send Toast notifications from console application using ToastNotificationManager ?
I know that it is possible to send Toast notifi
At first you need to declare that your program will be using winRT libraries:
8.0 Now you need to add this code:
using Windows.UI.Notifications;
and you will be able to send notifications using this code:
var toast = new ToastNotification(doc);
ToastNotificationManager.CreateToastNotifier().Show(toast);
Reference: How to call WinRT APIs in Windows 8 from C# Desktop Applications - WinRT Diagram