A simple attribute example : Attribute « Language Basics « C# / C Sharp






A simple attribute example

A simple attribute example
using System;  
using System.Reflection; 
  
[AttributeUsage(AttributeTargets.All)] 
class RemarkAttribute : Attribute { 
  string remarkValue; 
 
  public RemarkAttribute(string comment) { 
    remarkValue = comment; 
  } 
 
  public string remark { 
    get { 
      return remarkValue; 
    } 
  } 
}  
 
[RemarkAttribute("This class uses an attribute.")] 
class UseAttrib { 
  // ... 
} 
 
public class AttribDemo {  
  public static void Main() {  
    Type t = typeof(UseAttrib); 
 
    Console.Write("Attributes in " + t.Name + ": "); 
 
    object[] attribs = t.GetCustomAttributes(false);  
    foreach(object o in attribs) { 
      Console.WriteLine(o); 
    } 
 
    Console.Write("Remark: "); 
 
    // Retrieve the RemarkAttribute. 
    Type tRemAtt = typeof(RemarkAttribute); 
    RemarkAttribute ra = (RemarkAttribute) 
          Attribute.GetCustomAttribute(t, tRemAtt); 
 
 
    Console.WriteLine(ra.remark); 
  }  
}


           
       








Related examples in the same category

1.Subclass System.Attribute
2.Use a named attribute parameterUse a named attribute parameter
3.Creating and using a class attribute.
4.Attribute in class inheritance
5.Defining New Attribute Classes
6.Use AttributeUsage
7.Use a property as a named attribute parameterUse a property as a named attribute parameter
8.Demonstrate the Conditional attributeDemonstrate the Conditional attribute
9.Define contant and use it in Conditional attribute
10.Demonstrate the Obsolete attributeDemonstrate the Obsolete attribute
11.Illustrates use of the Obsolete attribute
12.Compiles into a library defining the RamdomSupplier attribute and the RandomMethod attribute
13.Shows the use of assembly attributes
14.How to create a custom attributeHow to create a custom attribute
15.Illustrates use of the Conditional attributeIllustrates use of the Conditional attribute
16.Illustrates the GetCustomAttributes methodIllustrates the GetCustomAttributes method
17.demonstrates the flags attribute of an enumeration