YAMP.ConventionExtensions.RemoveOperatorConvention C# (CSharp) Method

RemoveOperatorConvention() public static method

Removes the operator convention from a string.
public static RemoveOperatorConvention ( this operatorName ) : String
operatorName this
return String
        public static String RemoveOperatorConvention(this String operatorName)
        {
            return operatorName.Replace("Operator", String.Empty);
        }