예제 #1
0
파일: GemColor.cs 프로젝트: HL971/Gemstone
        internal static string ColorString(this GemColor gem)
        {
            switch (gem)
            {
            case GemColor.UNDEFINED:
                return(null);

            default:
                return(gem.ToString());
            }
        }
예제 #2
0
 protected string GetGemDescription()
 {
     return("Color of this gem is : "
            + GemColor.ToString());
 }