The tag `.Net attributes` describes anything related to using or creating attributes in .net source code.
I would like to know if it is possible to get attributes of the enum values and not of the …
c# reflection enums .net-attributesI am learning C# 3.5 and I want to know what [STAThread] does in our programs?
c# .net-attributesGiven this class class Foo { // Want to find _bar with reflection [SomeAttribute] private string _bar; public string BigBar { get { return …
c# .net reflection .net-attributesI know that attributes are extremely useful. There are some predefined ones such as [Browsable(false)] which allows you to …
c# .net .net-attributesWhat is difference between DisplayName attribute and Display attribute in ASP.NET MVC?
c# asp.net-mvc data-annotations displayattribute .net-attributesThis causes a compile-time exception: public sealed class ValidatesAttribute<T> : Attribute { } [Validates<string>] public static class …
c# generics .net-attributesWhat are attributes in .NET, what are they good for, and how do I create my own attributes?
c# .net glossary .net-attributes