Last active
February 6, 2019 14:25
-
-
Save GhandiHarder/7dc546e59e70dfc6c670887a9245186d to your computer and use it in GitHub Desktop.
AddToken
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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