YAMP.ConventionExtensions.IsArgumentFunction C# (CSharp) Method

IsArgumentFunction() public static method

Detects if the given function name belongs to an argument function.
public static IsArgumentFunction ( this functionName ) : System.Boolean
functionName this The given function name.
return System.Boolean
        public static Boolean IsArgumentFunction(this String functionName)
        {
            return functionName.Equals("Function");
        }