Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (72.64 KB, 2 trang )
Ví dụ 3!
Creating Custom Attributes(tạo một Attributes)
* Lớp tạo Attributes
PHP Code:
/*
* Created by SharpDevelop.
* NetDevelop Co., Ltd.
* Author: Tuan Anh Nguyen Ngoc
* Date: 11/24/2006
* Contact Information.
* - Email:
* - Handheld: +84 905 202 088
*/
using System;
namespace AdvancedDotnet
{
/// <summary>
/// Định nghĩa Author Attribute.
/// </summary>
[AttributeUsage(AttributeTargets.Method|AttributeTargets.Property|AttributeTargets.S
truct,AllowMultiple=false,Inherited=false)]
public class AuthorAttribute : Attribute
{
private string _sName;
public AuthorAttribute(string name)
{
this._sName = name;