Skip to content

Instantly share code, notes, and snippets.

@allrameest
Created July 11, 2019 12:26
Show Gist options
  • Save allrameest/20ca3cd425e309ecb6047a77c1ef8fc6 to your computer and use it in GitHub Desktop.
Save allrameest/20ca3cd425e309ecb6047a77c1ef8fc6 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
using System.Threading.Tasks;
namespace MyNamespace
{
using MyType = Task<IDictionary<string, IList<(long, int)>>>;
public class MyClass
{
public MyType DoStuff()
{
// ...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment