Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Recetas.Cap03
- {
- [System.AttributeUsage( System.AttributeTargets.Class |
- System.AttributeTargets.Struct)
- ]
- public class AutorAttribute : Attribute
- {
- private string nombre;
- public double version;
- public AutorAttribute(string nombre)
- {
- this.nombre = nombre;
- version = 1.0;
- }
- }
- [Autor("John Ortiz", version = 1.1)]
- public class ClaseEjemplo
- {
- // Implementación
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement