Exemple #1
0
 private async Task SendMessage(string subject, string body, string to)
 {
     try
     {
         await Reddit.ComposePrivateMessageAsync(subject, body, to);
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
     }
 }