Arnolyzer.Analyzers.CommonFunctions.MatchAttributeName C# (CSharp) Method

MatchAttributeName() private static method

private static MatchAttributeName ( Type attributeType, string name ) : bool
attributeType System.Type
name string
return bool
        private static bool MatchAttributeName(Type attributeType, string name) =>
            attributeType.Name.Replace("Attribute", "") == name || attributeType.Name == name;