Right now I have
public enum EnumSize { Miniscule, Tiny, Small, Medium, Large, Huge, Giant }
and I want the string value returned so I made a switch statement to return the string value
public string getSize()
{
string temp = "";
switch (pSize)
{
case EnumSize.Miniscule: temp = "Miniscule"; break;
case EnumSize.Tiny: temp = "Tiny"; break;
case EnumSize.Small: temp = "Small"; break;
case EnumSize.Medium: temp = "Medium"; break;
case EnumSize.Large: temp = "Large"; break;
case EnumSize.Huge: temp = "Huge"; break;
case EnumSize.Giant: temp = "Giant"; break;
}
return temp;
}
what are the disadvantages to doing it either way? and is there a better way? Thanks!
Your
getSize()
method can be reduced to:Given that the method is really this simple, it seems rather pointless to provide this as a separate method. If you simply expose
pSize
as a property (or read-only property) the user can simply callToString()
on that property: