Skip to content

Instantly share code, notes, and snippets.

@GhandiHarder
Last active February 6, 2019 14:25
Show Gist options
  • Save GhandiHarder/7dc546e59e70dfc6c670887a9245186d to your computer and use it in GitHub Desktop.
Save GhandiHarder/7dc546e59e70dfc6c670887a9245186d to your computer and use it in GitHub Desktop.
AddToken
public static void addToken(string type, string token, ICollector<Tokens> outputTable)
{
outputTable.Add(
new Tokens()
{
PartitionKey = type,
RowKey = string.Format("{0:D19}", DateTime.MaxValue.Ticks - DateTime.UtcNow.Ticks),
Name = token
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment