Skip to content

Instantly share code, notes, and snippets.

@noutram
Created July 8, 2019 12:33
Show Gist options
  • Save noutram/ddf8f628308f0ad5d334359a482e7849 to your computer and use it in GitHub Desktop.
Save noutram/ddf8f628308f0ad5d334359a482e7849 to your computer and use it in GitHub Desktop.
Method extension of an enumerated type in C#
public static class Extensions
{
public static string ToString(this BodyParameter p)
{
switch (p)
{
case BodyParameter.HEIGHT:
return "Height";
case BodyParameter.WEIGHT:
return "Weight";
default:
return "";
}
}
};
public enum BodyParameter
{
HEIGHT = 0,
WEIGHT = 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment