Created
October 25, 2011 11:27
-
-
Save dagda1/1312379 to your computer and use it in GitHub Desktop.
let.cs
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
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