Skip to content

Instantly share code, notes, and snippets.

@dagda1
Created October 25, 2011 11:27
Show Gist options
  • Save dagda1/1312379 to your computer and use it in GitHub Desktop.
Save dagda1/1312379 to your computer and use it in GitHub Desktop.
let.cs
var results = from name in Enum.GetNames(typeof(ReviewPeriodTimes))
let temp = name.SplitTextAndNumbers()
select new { Value = temp.Split()[1], Text = temp.Split()[0] };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment