How do you specify a custom attribute for the entire assembly (rather than for a class)?

Global attributes must appear after any top-level using clauses and before the first type or namespace declarations. An example of this is as follows: using System;

[assembly : MyAttributeClass]

class X {}

Note that in an IDE-created project, by convention, these attributes are placed in AssemblyInfo.cs.

Showing Answers 1 - 1 of 1 Answers

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions