Exemple #1
0
        internal static string enumToString(FaceMilling fm)
        {
            switch (fm)
            {
            case FaceMilling.DoNotMill: return(doNotMill);

            case FaceMilling.MillToRidge: return(millToRidge);

            case FaceMilling.MillToTeeth: return(millToTeeth);

            case FaceMilling.MillToPlate: return(millToPlate);

            default: return(doNotMill);
            }
        }
Exemple #2
0
 internal static string enumToString(FaceMilling fm)
 {
     switch(fm)
     {
         case FaceMilling.DoNotMill: return doNotMill;
         case FaceMilling.MillToRidge: return millToRidge;
         case FaceMilling.MillToTeeth: return millToTeeth;
         case FaceMilling.MillToPlate: return millToPlate;
         default: return doNotMill;
     }
 }