vote up 91 vote down star
130

I know that attributes are an extremely useful. There are some predefined ones such as [Browsable(false)] which allows you to hide properties in the properties tab. Here is a good question explaining attributes: http://stackoverflow.com/questions/20346/c-what-are-attributes

What are the predefined attributes (and their namesapce) you actually use in your projects?

flag

27 Answers

vote up 125 vote down

[DebuggerDisplay] can be really helpful to quickly see customized output of a Type when you mouse over the instance of the Type during debugging. example:

[DebuggerDisplay("FirstName={FirstName}, LastName={LastName}")]
class Customer
{
    public string FirstName;
    public string LastName;
}

This is how it should look in the debugger:

alt text

Also, it is worth mentioning that [WebMethod] attribute with CacheDuration property set can avoid unnecessary execution of the web service method.

link|flag
Ha you can comment now, right :D – SoloBold Sep 28 '08 at 5:29
2  
Wow, that's really good to know. I've usually accomplished the same thing by overriding ToString, but this is better. – Brian Sep 16 at 13:24
vote up 55 vote down

System.Obsolete is one of the most useful attributes in the framework, in my opinion. The ability to raise a warning about code that should no longer be used is very useful. I love having a way to tell developers that something should no longer be used, as well as having a way to explain why and point to the better/new way of doing something.

The Conditional attribute is pretty handy too for debug usage. It allows you to add methods in your code for debug purposes that won't get compiled when you build your solution for release.

Then there are a lot of attributes specific to Web Controls that I find useful, but those are more specific and don't have any uses outside of the development of server controls from what I've found.

link|flag
1  
I like the Obsolete flag but it just raises a warning. Most people I have ran into ignore the warnings in VS – Maudite Oct 2 '08 at 17:49
Yeah, I've noticed that also. I've worked on applications where there are hundreds of warnings. Most of them should have been fixed but aren't for whatever reason. I never understood it... – Dan Herbert Oct 3 '08 at 21:35
8  
You can pass "true" as one of the parameters to System.Obsolete which causes the warning to become an error therefore breaking the build. Obviously this should be done once you have cleaned up all the warnings. :) – Aydsman Dec 1 '08 at 2:36
2  
Once you clean up all the warnings, wouldn't it be better to just delete the method? – Pedro Jan 15 '09 at 23:00
@Pedro: Sometimes you can't for backwards compatibility reasons. If it's private and unused, yeah, delete it. – fantius Jun 2 at 16:55
show 4 more comments
vote up 49 vote down

[Flags] is pretty handy. Syntactic sugar to be sure, but still rather nice.

[Flags] 
enum SandwichStuff
{
   Cheese = 1,
   Pickles = 2,
   Chips = 4,
   Ham = 8,
   Eggs = 16,
   PeanutButter = 32,
   Jam = 64
};

public Sandwich MakeSandwich(SandwichStuff stuff)
{
   Console.WriteLine(stuff.ToString());
   // ...
}

// ...

MakeSandwich(SandwichStuff.Cheese 
   | SandwichStuff.Ham 
   | SandwichStuff.PeanutButter);
// produces console output: "Cheese, Ham, PeanutButter"


Leppie points out something I hadn't realized, and which rather dampens my enthusiasm for this attribute: it does not instruct the compiler to allow bit combinations as valid values for enumeration variables, the compiler allows this for enumerations regardless. My C++ background showing through... sigh

link|flag
care to provide an example? – SoloBold Sep 28 '08 at 0:34
3  
I hope you guys realize the Flags attribute does bugger all. It is not needed/used at all, except for the TypeConverter. – leppie Oct 13 '08 at 9:27
2  
@leppie: ToString() as well. But... wow. For some reason, i had been expecting the behavior of enumerations without the attribute to be the same as C++: or'd values produce an integer (can't be passed as-is to method expecting enum param). I see now that is not the case. Weak... ok, .NET enums suck. – Shog9 Oct 13 '08 at 17:46
6  
worst sandwich ever. grosssssssss – Darren Kopp Jan 15 '09 at 22:57
1  
Yeah, that MakeSandwich method definitely needs some validation code to prevent clearly incompatible combinations. :P – Kyralessa Aug 7 at 3:52
show 9 more comments
vote up 45 vote down

I like [DebuggerStepThrough] from System.Diagnostics.

It's very handy for avoiding stepping into those one-line do-nothing methods or properties (if you're forced to work in an early .Net without automatic properties). Put the attribute on a short method or the getter or setter of a property, and you'll fly right by even when hitting "step into" in the debugger.

link|flag
So many times I wish i knew about this property – Maudite Sep 28 '08 at 3:23
1  
Just a shame it's broken with closures - see gregbeech.com/blogs/tech/… for more info. – Greg Beech Dec 1 '08 at 2:33
1  
Also usefull for any WM_Paint Code that you know works :) – Pondidum May 2 at 12:56
vote up 28 vote down

For what it's worth, here's a list of all .NET attributes. There are several hundred.

I don't know about anyone else but I have some serious RTFM to do!

~ William Riley-Land

link|flag
4  
posted list is for .net 1.1 here is the list for 3.5 msdn.microsoft.com/en-us/library/… (You have to scroll down a little) – Keivan Jun 30 at 6:56
Updated the link in the question. Now it is the full list for 3.5 – Martinho Fernandes Nov 8 at 13:17
vote up 17 vote down

In Hofstadtian spirit, the [Attribute] attribute is very useful, since it's how you create your own attributes. I've used attributes instead of interfaces to implement plugin systems, add descriptions to Enums, simulate multiple dispatch and other tricks.

link|flag
Sounds cool! Would you mind showing some examples of the plugin system and the enum descriptions? Those are both things I'm interested in implementing myself! – SkippyFire Apr 15 at 0:17
vote up 13 vote down

[Serializable] is used all the time for serializing and deserializing objects to and from external data sources such as xml or from a remote server. More about it here.

link|flag
One of my favorites too. – Maudite Sep 28 '08 at 0:31
It's actually referred to a psuedoattribute, as C# emits a metadata flag for [Serializable], not a custom attribute instance ;) – TraumaPony Sep 28 '08 at 0:50
While very useful [Serializable] is far from perfect. It requires way too much tinkering and trial and error to get the result you want. – shoosh Jan 4 '09 at 19:55
I'll second that shoosh! – SkippyFire Apr 15 at 0:17
System.NonSerializedAttribute is useful if you want more control over automatic serialization. – M. Jahedbozorgan Apr 29 at 8:51
vote up 13 vote down

I've found [DefaultValue] to be quite useful.

link|flag
That's certainly not the DefaultValue attribute I was thinking of. Are you sure you didn't mean this one? msdn.microsoft.com/en-us/library/… – Kyralessa Dec 4 at 15:22
That's the one I meant, yes. Edited the url to reflect this. – Lawrence Johnston Dec 4 at 17:12
vote up 12 vote down

I'd suggest [TestFixture] and [Test] - from the nUnit libary.

Unit tests in your code provide safety in refactoring and codified documentation.

link|flag
vote up 12 vote down

I always use the DisplayName, Description and DefaultValue attributes over public properties of my user controls, custom controls or any class I'll edit through a property grid. These tags are used by the .NET PropertyGrid to format the name, the description panel, and bolds values that are not set to the default values.

[DisplayName("Error color")]
[Description("The color used on nodes containing errors.")]
[DefaultValue(Color.Red)]
public Color ErrorColor
{
    ...
}

I just wish Visual Studio's IntelliSense would take the Description attribute into account if no XML comment are found. It would avoid having to repeat the same sentence twice.

link|flag
vote up 7 vote down
[XmlIgnore]

as this allows you to ignore (in any xml serialisation) 'parent' objects that would otherwise cause exceptions when saving.

link|flag
vote up 6 vote down

I have been using the [DataObjectMethod] lately. It describes the method so you can use your class with the ObjectDataSource ( or other controls).

[DataObjectMethod(DataObjectMethodType.Select)] 
[DataObjectMethod(DataObjectMethodType.Delete)] 
[DataObjectMethod(DataObjectMethodType.Update)] 
[DataObjectMethod(DataObjectMethodType.Insert)]

More info

link|flag
vote up 6 vote down

DesignerSerializationVisibilityAttribute is very useful. When you put a runtime property on a control or component, and you don't want the designer to serialize it, you use it like this:

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public Foo Bar {
    get { return baz; }
    set { baz = value; }
}
link|flag
vote up 6 vote down

My vote would be for [Conditional]

[Conditional("DEBUG")]
public void DebugOnlyFunction()
{
    // your code here
}

You can use this to add a function with advanced debugging features; like Debug.Write, it is only called in debug builds, and so allows you to encapsulate complex debug logic outside the main flow of your program.

link|flag
isnt this the same as doing #if DEBUG ? – Neil N Aug 10 at 20:11
1  
No, it's cleverer than that. This is the mechanism used to make sure that calls to Debug.WriteLine and such are ignored at runtime. If you define a function F inside a #if DEBUG block, and DEBUG isn't defined, then your app will not build if any part of it calls F. But if you make F [Conditional("DEBUG")] then the app will compile, but calls to F will not be executed, and nor will the parameters to the function. See [msdn](msdn.microsoft.com/en-us/library/…) for more. – Steve Cooper Aug 11 at 9:59
vote up 5 vote down

If I were to do a code coverage crawl, I think these two would be top:

 [Serializable]
 [WebMethod]
link|flag
1  
[WebMethod] is used to decorate a method that is exposed in a web service. [Serializable] marks your objects such that they can be serialized for purposes such as passing them across app domains. – Kev Sep 28 '08 at 1:28
vote up 5 vote down

Here is the post about interesting attribute InternalsVisibleTo. Basically what it does it mimics C++ friends access functionality. It comes very handy for unit testing.

link|flag
vote up 4 vote down

The attributes I use the most are the ones related to XML Serialization.

XmlRoot

XmlElement

XmlAttribute

etc...

Extremely useful when doing any quick and dirty XML parsing or serializing.

link|flag
vote up 3 vote down
[TypeConverter(typeof(ExpandableObjectConverter))]

Tells the designer to expand the properties which are classes (of your control)

[Obfuscation()]

I think you can guess what this is for

link|flag
vote up 3 vote down

It's not well-named, not well-supported in the framework, and shouldn't require a parameter, but this attribute is a useful marker for immutable classes:

[ImmutableObject(true)]

link|flag
According to the docs, only used at design time (unfortunately). – Hans Kesting Sep 16 at 13:35
vote up 2 vote down

Only a few attributes get compiler support, but one very interesting use of attributes is in AOP: PostSharp uses your bespoke attributes to inject IL into methods, allowing all manner of abilities... log/trace being trivial examples - but some other good examples are things like automatic INotifyPropertyChanged implementation (here).

Some that occur and impact the compiler or runtime directly:

  • [Conditional("FOO")] - calls to this method (including argument evaluation) only occur if the "FOO" symbol is defined during build
  • [MethodImpl(...)] - used to indicate a few thing like synchronization, inlining
  • [PrincipalPermission(...)] - used to inject security checks into the code automatically
  • [TypeForwardedTo(...)] - used to move types between assemblies without rebuilding the callers

For things that are checked manually via reflection - I'm a big fan of the System.ComponentModel attributes; things like [TypeDescriptionProvider(...)], [TypeConverter(...)], and [Editor(...)] which can completely change the behavior of types in data-binding scenarios (i.e. dynamic properties etc).

link|flag
+1: The MethodImplAttribute sounds very interesting! – rstevens May 21 at 12:36
vote up 1 vote down

Being a middle tier developer I like

System.ComponentModel.EditorBrowsableAttribute Allows me to hide properties so that the UI developer is not overwhelmed with properties that they don't need to see.

System.ComponentModel.BindableAttribute some things don't need to be databound. Again, lessens the work the UI developers need to do.

I also like the DefaultValue that Lawrence Johnston mentioned.

System.ComponentModel.BrowsableAttribute and the Flags are used regularly.

I use the System.STAThreadAttribute System.ThreadStaticAttribute when needed.

By the way. I these are just as valuable for all the .Net framework developers.

link|flag
vote up 1 vote down

In this question I asked about any attributes that can help the .Net runtime to better perform.

link|flag
vote up 1 vote down
// on configuration sections
[ConfigurationProperty] 

// in asp.net
[NotifyParentProperty(true)]
link|flag
vote up 1 vote down

In our current project, we use

[ComVisible(false)]

It controls accessibility of an individual managed type or member, or of all types within an assembly, to COM.

More Info

link|flag
vote up 1 vote down

I like using the [ThreadStatic] attribute in combination with thread and stack based programming. For example, if I want a value that I want to share with the rest of the rest of a call sequence, but I want to do it out of band (i.e. outside of the call parameters), I might employ something like this.

class MyContextInformation : IDisposable {
    [ThreadStatic] private static MyContextInformation current;

    public MyContextInformation Current {
        get { return current; }
    }

    private MyContextInformation previous;


    public MyContextInformation(Object myData) {
       this.myData = myData;
       previous = current;
       current = this;
    }

    public void Dispose() {
       current = previous;
    }
}

Later in my code, I can use this to provide contextual information out of band to people downstream from my code. Example:

using(new MyContextInformation(someInfoInContext)) {
   ...
}

The ThreadStatic attribute allows me to scope the call only to the thread in question avoiding the messy problem of data access across threads.

link|flag
vote up 1 vote down

[System.Security.Permissions.PermissionSetAttribute] allows security actions for a PermissionSet to be applied to code using declarative security.

// usage:
public class FullConditionUITypeEditor : UITypeEditor
{
    // The immediate caller is required to have been granted the FullTrust permission.
    [PermissionSetAttribute(SecurityAction.LinkDemand, Name = "FullTrust")]
    public FullConditionUITypeEditor() { }
}
link|flag
vote up 1 vote down

[DeploymentItem("myFile1.txt")] MSDN Doc on DeploymentItem

This is really useful if you are testing against a file or using the file as input to your test.

link|flag

Your Answer

Get an OpenID
or

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