C#自定义Attribute举例!(转自:http://archive.cnblogs.com/a/471288/)

本文介绍了一个使用 C# 枚举和自定义特性的示例,展示了如何定义枚举类型并使用特性来标记类,进一步通过反射获取这些特性进行条件判断。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

usingSystem;

namespaceConsoleApplication1
{
//定义枚举
[System.Flags()]
publicenumAccountsE
{
Saveings=0x0001,
Checking=0x0002,
Brokerage=0x0004
}
//自定义特性
[System.AttributeUsage(AttributeTargets.Class)]
publicclassAccountsAttribute:Attribute
{
publicAccountsEaccounts;
publicAccountsAttribute(AccountsEaccounts)
{
this.accounts=accounts;
}
}
[ConsoleApplication1.Accounts(AccountsE.Saveings)]
classChildAccount{}
[ConsoleApplication1.Accounts(AccountsE.Saveings|AccountsE.Checking|AccountsE.Brokerage)]
classAdultAccount{}

classClass1
{
[STAThread]
staticvoidMain(string[]args)
{
CanWriteCheck(newChildAccount());
CanWriteCheck(newAdultAccount());
CanWriteCheck(newClass1());
}
publicstaticvoidCanWriteCheck(objectobj)
{
//构造AccountsAttribute实例
AccountsAttributechecking=newAccountsAttribute(AccountsE.Checking);
//通过Attribute.GetCustomAttribute的静态方法来得到指定的特性的实例,然后就可以读取实例的属性了,用此来判断
//依据
AttributevalidAccounts=Attribute.GetCustomAttribute(obj.GetType(),typeof(AccountsAttribute),false);
if(validAccounts!=null)
{
AccountsAttributetmpAccounts=validAccountsasAccountsAttribute;
if((checking.accounts&tmpAccounts.accounts)==checking.accounts)
{
Console.WriteLine("{0}typescanwritechecks.",obj.GetType());
}
else
{
Console.WriteLine("{0}typecannotwritechecks.",obj.GetType());
}
}
else
{
Console.WriteLine("{0}typecannotwritechecks.",obj.GetType());
}

}
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值