Are there any other useful attributes for c# properties?
- by maxfridbe
besides:
[DefaultValue(100)]
[Description("Some descriptive field here")]
public int MyProperty{get; set;}
What other C# Attributes are useful for Properties, after learning these I feel like I'm Missing out.
Related Questions
Most Useful Attributes in C#