public static string ToText(this Adverbs adverbType)
        {
            return(adverbType.ToString());

            /*switch ( adverbType )
             * {
             *  case Adverbs.amplificator: return ("advAmplf");
             *  case Adverbs.negative:     return ("advNeg");
             *  case Adverbs.positive:     return ("advPos");
             *  case Adverbs.Neut:      return (NEUTRAL);
             *  default:
             *      throw (new ArgumentException(adverbType.ToString()));
             * }*/
        }