internal static string ColorString(this GemColor gem) { switch (gem) { case GemColor.UNDEFINED: return(null); default: return(gem.ToString()); } }
protected string GetGemDescription() { return("Color of this gem is : " + GemColor.ToString()); }