vote up 3 vote down star

I was told that in c# attributes are not allowed on the auto-implemented properties. Is that true? if so why?

EDIT: I got this information from a popular book on LINQ and could not believe it! EDIT: Refer page 34 of LINQ Unleashed by Paul Kimmel where he says "Attributes are not allowed on auto-implemented properties, so roll your own if you need an attribute"

flag

74% accept rate
Could you say exactly what the information is? (I think it would be fair to give the name and reference for the book, btw.) – Jon Skeet Jan 21 at 11:32
Get used to believing it - in text and in tools. We all make mistakes. I remember back in the day the Turbo C++ 1.0 compiler had an internal memory leak on copy constructor (or something related to that). I couldn't believe it was the compiler's fault and not a mistake in source code until I proved it. They fixed it in the next version. – jdk 19 hours ago

3 Answers

vote up 3 vote down check

The easiest way to prove that's wrong is to just test it:

using System;
using System.ComponentModel;
using System.Reflection;

class Test
{
    [Description("Auto-implemented property")]
    public static string Foo { get; set; }  

    static void Main(string[] args)
    {
        var property = typeof(Test).GetProperty("Foo");
        var attributes = property.GetCustomAttributes
                (typeof(DescriptionAttribute), false);

        foreach (DescriptionAttribute description in attributes)
        {
            Console.WriteLine(description.Description);
        }
    }
}

I suggest you email the author so he can publish it as an erratum. If he meant that you can't apply an attribute to the field, this will give him a chance to explain more carefully.

link|flag
vote up 9 vote down

You can apply attributes to automatic properties without a problem.

Quote from MSDN:

Attributes are permitted on auto-implemented properties but obviously not on the backing fields since those are not accessible from your source code. If you must use an attribute on the backing field of a property, just create a regular property.

link|flag
vote up 1 vote down

Note also that any Automatic property will have the CompilerGeneratedAttribute applied to it as well.

link|flag

Your Answer

Get an OpenID
or

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