Skip to content

Instantly share code, notes, and snippets.

View tienuit's full-sized avatar

Nguyễn Trung Tiến tienuit

View GitHub Profile
@tienuit
tienuit / Program.cs
Last active July 19, 2020 07:03
Get Momo Received Transaction via Email
//MailKit https://www.nuget.org/packages/MailKit
//Note: Must Turn on "Less secure app access" on your Google account
using MailKit;
using MailKit.Net.Imap;
using MailKit.Search;
using System;
using System.Text.RegularExpressions;
using System.Threading;
@tienuit
tienuit / Program.cs
Created September 3, 2020 01:38
Async example
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TestAsync
{
class Program
{
static async Task Main(string[] args)