Skip to content

Instantly share code, notes, and snippets.

@csharpforevermore
Created September 11, 2018 14:16
Show Gist options
  • Save csharpforevermore/8b68755a0f596fdf76966e784c097b23 to your computer and use it in GitHub Desktop.
Save csharpforevermore/8b68755a0f596fdf76966e784c097b23 to your computer and use it in GitHub Desktop.
Retrieve all keys in a HashTable
string keys = string.Join(",", table.Keys.Cast<object>()
.Select(x => x.ToString())
.ToArray());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment