-
-
Save johnnonolan/1817808 to your computer and use it in GitHub Desktop.
Iterating through a enum
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
foreach (var style in Enum.GetValues(typeof(TradingStyle)).Cast<TradingStyle>()) |
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
TradingStyle.constants.each do |el| | |
#whatevs | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment