Skip to content

Instantly share code, notes, and snippets.

@cmpunches
Created October 15, 2015 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmpunches/f1aa4f780a6fc35818d0 to your computer and use it in GitHub Desktop.
Save cmpunches/f1aa4f780a6fc35818d0 to your computer and use it in GitHub Desktop.
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