Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 14, 2019 04:28
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 IntegerMan/7adb4c502763ac6cf5ee1885bc94455b to your computer and use it in GitHub Desktop.
Save IntegerMan/7adb4c502763ac6cf5ee1885bc94455b to your computer and use it in GitHub Desktop.
private static ResumeKeyword? FindKeyword(IDictionary<string, ResumeKeyword> keywordBonuses, string key)
{
if (keywordBonuses.ContainsKey(key))
{
return keywordBonuses[key];
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment