✅ how to check attribute name?
I have following:
I want to check if member contains special attribute. How to do it?
I want to check if member contains special attribute. How to do it?
if (syntaxNode
is RecordDeclarationSyntax
and MemberDeclarationSyntax { AttributeLists.Count: > 0 } member)
{
MemberSyntaxes.Add(member);
}