Ejemplo n.º 1
0
        /// <summary>
        /// Localizes the <c>DisplayName</c> if the <c>Name</c> is equal to <c>Event_Type.ToString()</c>
        /// </summary>
        public void TranslateDisplayName()
        {
            var noTranslationNeeded = Name != Event_Type.ToString();

            DisplayName = noTranslationNeeded ? Name : EnumDescriptionConverter.EnumToString(Event_Type);
        }