Use a named attribute parameter : Attribute « Language Basics « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Language Basics » AttributeScreenshots 
Use a named attribute parameter
Use a named attribute parameter

// Use a named attribute parameter. 
  
using System;  
using System.Reflection; 
  
[AttributeUsage(AttributeTargets.All)] 
class RemarkAttribute : Attribute 
  string remarkValue; // underlies remark property 
 
  public string supplement; // this is a named parameter 
 
  public RemarkAttribute(string comment) { 
    remarkValue = comment; 
    supplement = "None"
  
 
  public string remark 
    get 
      return remarkValue; 
    
  
}  
 
[RemarkAttribute("This class uses an attribute."
                 supplement = "This is additional info.")] 
class UseAttrib 
  // ... 

 
public class NamedParamDemo {  
  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)
    
 
    // Retrieve the RemarkAttribute. 
    Type tRemAtt = typeof(RemarkAttribute)
    RemarkAttribute ra = (RemarkAttribute
          Attribute.GetCustomAttribute(t, tRemAtt)
 
    Console.Write("Remark: ")
    Console.WriteLine(ra.remark)
 
    Console.Write("Supplement: ")
    Console.WriteLine(ra.supplement)
  }  




           
       
Related examples in the same category
1.Subclass System.Attribute
2.A simple attribute exampleA simple attribute example
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
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.