Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. using System;
  2.  
  3. namespace Recetas.Cap03
  4. {
  5.     [System.AttributeUsage( System.AttributeTargets.Class |
  6.                             System.AttributeTargets.Struct)
  7.     ]
  8.     public class AutorAttribute : Attribute
  9.     {
  10.         private string nombre;
  11.         public double version;
  12.        
  13.         public AutorAttribute(string nombre)
  14.         {
  15.             this.nombre = nombre;
  16.             version = 1.0;
  17.         }
  18.     }
  19.    
  20.     [Autor("John Ortiz", version = 1.1)]
  21.     public class ClaseEjemplo
  22.     {
  23.         // Implementación
  24.     }
  25. }