C#的特性学习草稿
原文发布时间为:2008-11-22 —— 来源于本人的百度文章 [由搬家工具导入]
举个简单的例子:
先定义个特性
从Attribute继承,并标明用法
[AttributeUsage(AttributeTargets.Property|AttributeTargets.Class)]
public class MyAttribute:Attribute
{
}
//应用此特性
[My]
public class Entity
{
private int m_MyProperty ;
[My]
public virtual int MyProperty
{
get { return m_MyProperty; }
set { m_MyProperty = value; }
}
}
//检索此特性(在类上标的特性)
class program
{
static void Main()
{
Attribute attr = Attribute.GetCustomAttribute(typeof(Entity), typeof(MyAttribute),false);
}
}
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
namespace baidu
{
class Class5
{
//[Obsolete("no use forever",true)]
//static void Old() { }
//static void New() { }
//public static void Main()
//{
// Old();
//}
//static void Main()
//{
// Console.WriteLine(typeof(HumanBase).IsSerializable);
// Console.ReadLine();
//}
//static void Main()
//{
// BoardingCheckAttribute boardingCheck = new BoardingCheckAttribute("1", "dsf", 1, 1, "df", "df");
// Console.WriteLine(boardingCheck.Name
// + "'s ID is "
// + boardingCheck.ID
// + ", he/she wants to "
// + boardingCheck.Destination
// + " from "
// + boardingCheck.Departure
// + " by the plane "
// + boardingCheck.FlightNumber
// + ", his/her position is "
// + boardingCheck.PostionNumber
// + ".");
// Console.ReadLine();
//}
//static void Main()
//{
// Attribute attr = Attribute.GetCustomAttribute(typeof(Base), typeof(HelpAtrribute),true);
// if (attr is HelpAtrribute)
// {
// HelpAtrribute help = (HelpAtrribute)attr;
// Console.WriteLine(help.Description);
// }
// Console.ReadLine();
//}
static void Main()
{
Type type = typeof(Class1);
HelpAtrribute helpAttr;
foreach (Attribute attr in type.GetCustomAttributes(true))
{
helpAttr = attr as HelpAtrribute;
if (helpAttr != null)
{
Console.WriteLine("Description of Class1:\n{0}", helpAttr.Description);
}
}
foreach (MethodInfo method in type.GetMethods())
{
foreach (Attribute attr in method.GetCustomAttributes(true))
{
helpAttr = attr as HelpAtrribute;
if (helpAttr != null)
{
Console.WriteLine("Description of {0}:\n{1}", method.Name, helpAttr.Description);
}
}
}
foreach (FieldInfo field in type.GetFields())
{
foreach (Attribute attr in field.GetCustomAttributes(true))
{
helpAttr = attr as HelpAtrribute;
if (helpAttr != null)
{
Console.WriteLine("Description of {0}:\n{1}", field.Name, helpAttr.Description);
}
}
}
Console.ReadLine();
}
[AttributeUsage(AttributeTargets.All, AllowMultiple = false, Inherited = false)]
public class HelpAtrribute : Attribute
{
protected string description;
public HelpAtrribute(string description)
{
this.description = description;
}
public string Description
{
get { return this.description; }
}
protected string version;
public string Version
{
get { return this.version; }
set { this.version = value; }
}
}
[HelpAtrribute("this is a donothing class")]
//[HelpAtrribute("this is a doNothing class")]
public class AnyClass
{
[HelpAtrribute("this is a doNothing class")]
public void AnyMethod()
{
}
}
[HelpAtrribute("BaseClass")]
public class Base
{
}
[HelpAtrribute("DeriveClass")]
public class Derive : Base
{
}
[HelpAtrribute("this is class1")]
public class Class1
{
[HelpAtrribute("this is doNothing Method")]
public void Anymethod()
{
}
[HelpAtrribute("this is an integer")]
public int AnyInt=0;
}
[HelpAtrribute("this is Class2", Version = "2.0")]
public class Class2
{
}
//[AttributeUsage(AttributeTargets.Property | AttributeTargets.Class)]
//public class BoardingCheckAttribute : Attribute
//{
// private string id,name,dep,des;
// private int flightnum, positionum;
// public BoardingCheckAttribute(string id, string name, int flightNumber, int PostionNumber, string departure, string destination)
// {
// this.id = id;
// this.name = name;
// this.flightnum = flightNumber;
// this.positionum = PostionNumber;
// this.dep = departure;
// this.des = destination;
// }
// public string ID
// {
// get { return id; }
// set { id = value; }
// }
// public string Name
// {
// get { return name; }
// set { name = value; }
// }
// public int FlightNumber
// {
// get { return flightnum; }
// set { flightnum = value; }
// }
// public int PostionNumber
// {
// get { return positionum; }
// set { positionum = value; }
// }
// public string Departure
// {
// get { return dep; }
// set { dep = value; }
// }
// public string Destination
// {
// get { return des; }
// set { des = value; }
// }
//}
}
}
C#的特性学习草稿的更多相关文章
- Gradle学习草稿
参考博客:http://www.cnblogs.com/davenkin/p/gradle-learning-1.html Android Plugin DSL Reference http://go ...
- Java8 新特性学习 Lambda表达式 和 Stream 用法案例
Java8 新特性学习 Lambda表达式 和 Stream 用法案例 学习参考文章: https://www.cnblogs.com/coprince/p/8692972.html 1.使用lamb ...
- java8 新特性学习笔记
Java8新特性 学习笔记 1主要内容 Lambda 表达式 函数式接口 方法引用与构造器引用 Stream API 接口中的默认方法与静态方法 新时间日期 API 其他新特性 2 简洁 速度更快 修 ...
- C#特性学习笔记二
实例探讨: 自定义了一个特性类: [AttributeUsage(AttributeTargets.Class|AttributeTargets.Method)] class WahAttribute ...
- ES7/8新特性学习随笔
随着每年EcmaScript都会为js带来一些新特性,带来更多美化的编程体验,今天就走进一下es2016/2017所带来的新特性 ES7新特性 includes() 指数操作符 ES8新特性 asyn ...
- java8新特性学习1
java8增加了不少新特性,下面就一些常见的新特性进行学习... 1.接口中的方法 2.函数式接口 3.Lambda表达式 4.java8内置的四大核心函数式接口 5.方法引用和构造器引用 6.Str ...
- python切片、迭代、生成器、列表生成式等高级特性学习
python高级特性 1行代码能实现的功能,决不写5行代码.请始终牢记,代码越少,开发效率越高. 切片 当我们要取一个list中的前n各元素时,如果前n个少的话,我们还可以一个一个的取,但是若前n个元 ...
- C#的特性学习
转自:https://www.cnblogs.com/rohelm/archive/2012/04/19/2456088.html 特性提供功能强大的方法,用以将元数据或声明信息与代码(程序集.类 ...
- 【Java语言特性学习之一】设计模式
设计模式(Design pattern)是一套被反复使用.多数人知晓的.经过分类编目的.代码设计经验的总结.使用设计模式是为了可重用代码.让代码更容易被他人理解.保证代码可靠性. 毫无疑问,设计模式于 ...
随机推荐
- 模拟ssh的远程网络传输
粘包产生的原因分析: 第一点:客户端向服务端发起命令请求,服务端接受命令请求,并返回对应的信息,如果信息过大,客户端一次接受不了,那么下一次请求依然返回 上一个命令的内容,就出现了粘包的情况. 第二点 ...
- sql语句分为三类(DML,DDL,DCL)-介绍
本文知识来源自:<Oracle专家高级编程> 分享作者:Vashon 时间:20150415 DDL is Data Definition Language statements. Som ...
- laravel如何查找门脸及注入类方法
门脸模式 通过 config/app.php 查看别名对应类名 Illuminate\Support\Facades\Log ,查看 LoggerInterface 类文件,得:命名空间+接口名 Ps ...
- 固定table表头
<style> #box{ height:214px; width:500px; overflow-y:auto;/** 必须,否则当表格数据过多时,不会产生滚动条,而是自动延长该div的 ...
- swift Equatable 函数签名的测试
struct Degoo:Equatable { var lex:String var pex:String static func == (left:Degoo, right:Degoo) -> ...
- ROI(Region of Interesting)
ROI(region of interest),感兴趣区域.机器视觉.图像处理中,从被处理的图像以方框.圆.椭圆.不规则多边形等方式勾勒出需要处理的区域,称为感兴趣区域,ROI.在Halcon.Ope ...
- PHP18 PHP与AJAX
学习要点 JavaScript实现Ajax jQuery实现Ajax JSON PHP的JSON函数 JavaScript处理JSON数据 JavaScript实现Ajax 什么是Ajax 搜狗地图 ...
- Android Studio中删除无效的字符串资源
1.定位到当前项目中的strings.xml文件 1.菜单栏找到"Analyze"->"Run Inspection By Name..."->输入 ...
- vscode 中文设置
修改设置 语言设置介绍: https://code.visualstudio.com/docs/getstarted/locales 按Ctrl + Shift + P打开命令调色板,然后开始键入“d ...
- l5-repository基本使用--结合使用artisan
一.从头开始创建 1.执行以下artisan: php artisan make:entity Student 如果某个文件已经存在,则不会创建新的文件去覆盖原有的文件,案例如下: 2.修改model ...