5 references to CodeAttributeDeclarationCollection
System.CodeDom (5)
System\CodeDom\CodeCompileUnit.cs (1)
22
public CodeAttributeDeclarationCollection AssemblyCustomAttributes => _attributes ??= new
CodeAttributeDeclarationCollection
();
System\CodeDom\CodeMemberMethod.cs (1)
76
public CodeAttributeDeclarationCollection ReturnTypeCustomAttributes => _returnAttributes ??= new
CodeAttributeDeclarationCollection
();
System\CodeDom\CodeParameterDeclarationExpression.cs (1)
34
get => _customAttributes ??= new
CodeAttributeDeclarationCollection
();
System\CodeDom\CodeTypeMember.cs (1)
23
get => _customAttributes ??= new
CodeAttributeDeclarationCollection
();
System\CodeDom\CodeTypeParameter.cs (1)
27
public CodeAttributeDeclarationCollection CustomAttributes => _customAttributes ??= new
CodeAttributeDeclarationCollection
();