Skip to content

Instantly share code, notes, and snippets.

@farukterzioglu
Created October 19, 2019 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farukterzioglu/1d1579ac77a16f4c969f1b1ae02ca035 to your computer and use it in GitHub Desktop.
Save farukterzioglu/1d1579ac77a16f4c969f1b1ae02ca035 to your computer and use it in GitHub Desktop.
bitcoin sample
Dictionary<string, int> salaries = GetSalaryList();
...
Dictionary<string, int> GetSalaryList()
{
return new Dictionary<string, int>(){
{ "2N2LGTF2XWA5png8mT2fbHRzY9P4XDLWvGc", 2500},
{ "2N94h5bWDAFNsd7SB1f3cQ6RUMmoMaA44tQ", 4500},
{ "2MsjZP4DJmZeV1fRpAw8NcJWiibYopWL7fg", 2250},
{ "2N1cHqXYLas7bnLoCtMppD1yKtrXjRSmB5M", 10000},
{ "2NA9di1yBdHiwgJJVB27nPxpAc8YDpmdSS1", 12500}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment