Created
October 15, 2015 06:02
-
-
Save cmpunches/f1aa4f780a6fc35818d0 to your computer and use it in GitHub Desktop.
This file contains 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
private static List<lambda> GetZonesFrom(INI Settings) | |
{ | |
List<lambda> RetVal; | |
string[] LambdaString = Settings.Read("LambdaIndex", "Lambdas").Split(','); | |
foreach (string LambdaDefinition in LambdaString) | |
{ | |
RetVal.Add(new lambda(Settings, LambdaDefinition)); | |
} | |
return RetVal; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment