vote up 0 vote down star
[DebuggerDisplayAttribute("{_name}")]

vs

[DebuggerDisplay("{_name}")]

Is there a difference? Is one an alias of the other? Does VS automatically check for a class named fooAttribute when using an attribute named foo?

flag

61% accept rate
3  
C# allows you to elide the "Attribute", because every attribute is supposed to end with that. – Eric Lippert Oct 5 at 20:36
@Eric: That is an important point I am missing in the existing answers: This is working for every attribute, even for custom ones. – tanascius Oct 5 at 20:38

3 Answers

vote up 7 vote down

They are the same, the C# compiler will be able to resolve the type whether you write Attribute at the end or not.

link|flag
vote up 5 vote down

They're the same. You tend to see the fully qualified name in generated code, especially that output via CodeDom.

You can use either one. The compiler generates the same thing in the end.

link|flag
vote up 1 vote down check

Eric Lippert

C# allows you to elide the "Attribute", because every attribute is supposed to end with that.

Added as an answer, so that I can accept it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.