Skip to content

Instantly share code, notes, and snippets.

@kieransenior
Created June 28, 2011 07:34
Show Gist options
  • Save kieransenior/1050675 to your computer and use it in GitHub Desktop.
Save kieransenior/1050675 to your computer and use it in GitHub Desktop.
Model Management Blog Example - Extension Method
public static string PopulationGroup(this City city)
{
if(city.population < 100)
return "Small";
else if(city.population >= 100 && city.population < 500)
return "Medium";
else
return "Large";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment