public static LocalNotification GetLocalNotification(int index)
 {
     if (index < 0 || index >= NotificationServices.localNotificationCount)
     {
         throw new ArgumentOutOfRangeException("index", "Index out of bounds.");
     }
     return(NotificationServices.GetLocalNotificationImpl(index));
 }