c#中的特性
2021-04-22 23:25
标签:images 实现 obs debugger shu www. oid condition 注解 c#中的特性 特性在我的理解就是在类或者方法或者参数上加上指定的标记,然后实现指定的效果。 和Java中的注解@Annotation类似。 c#内置的特性之Obsolete c#内置的特性之Conditional 使用方法如下 意思是如果定义了宏 c#内置的特性之CallerFilePath,CallerLineNumber,CallerMemberName 这三个特性可以获取调用的所在文件,行数,以及方法名称。猛一看没什么用,但是在打log的时候我觉得还是非常有用的。 c#内置特性之DebuggerStepThrough,加在方法上 调试的时候假如那个方法确定无误,加上这个特性,调试的时候可以跳过debug的单步调试 c#中自定义一个特性以及获取该特性的属性 定义一个特性 将该特性加在类上,这里的特性会自动把Attribute尾去掉 获取特性的属性 很多用过spring的道友肯定知道注解在Java中的用法,特性在c#中的用法和在Java中是一样的。有时间我会用c#的特性实现一个简单的spring容器,来实现控制反转。以前用java实现过,但是不知道代码扔到哪里去了。还用java实现过简单的orm。代码也不知道扔到哪里去了!!所以一定要整理代码,整理总结!!! 作者:六道真君 c#中的特性 标签:images 实现 obs debugger shu www. oid condition 注解 原文地址:http://www.cnblogs.com/kanekiken/p/8004285.html
[Obsolete("过期了")]
public static void Test()
{
Console.WriteLine("Test");
}
[Obsolete("过期了",true)]
public static void Test()
{
Console.WriteLine("Test");
}
[Conditional("IsTest")]
public void Test()
{
Console.WriteLine("Test");
}
IsTest
则对Test的调用会成功,如果未定义,则该方法的调用不会成功。注意:此时虽然调用不会成功,但是仍然会被编译到程序集中。
static void PrintOut(string message,[CallerFilePath] string fileName="",[CallerLineNumber] int lineNumber=0,[CallerMemberName] string methodName="")
{
Console.WriteLine("message:"+message);
Console.WriteLine("fileName:" + fileName);
Console.WriteLine("lineNumber:" + lineNumber);
Console.WriteLine("methodName:" + methodName);
}
[AttributeUsage(AttributeTargets.Class)] //特性的应用范围
public class MyTestAttribute : System.Attribute
{
public string Description { get; set; }
public string VersionNumber { get; set; }
public int ID { get; set; }
}
[MyTest(Description = "aaa",ID = 1,VersionNumber = "3")]
public class Program
{
...
}
Program p = new Program();
MyTestAttribute attribute = (MyTestAttribute) p.GetType().GetCustomAttribute(typeof (MyTestAttribute)) ;
Console.WriteLine(attribute.Description);
链接:http://www.jianshu.com/p/93d0b99b52ac
來源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
上一篇:CSS