[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?
|
|
vs
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?
|
||||||
|
|
|
They are the same, the C# compiler will be able to resolve the type whether you write Attribute at the end or not. |
||
|
|
|
|
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. |
||
|
|
|
|
Eric Lippert
Added as an answer, so that I can accept it. |
|||
|
|