c# 特性实验
2022/1/15 17:07:14
本文主要是介绍c# 特性实验,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.概要
1.1特性的价值,就是作为类的元数据使用,不是对象的元数据,因为只有类有特性。而对象没有。或者说对象没有特性的那个概念,因为一个类无论创建多少对象,他的特性是固定的。
1.2 元数据的价值,就是可以通过对这个特性数据的赋值,改变类的运行行为。
2.代码
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace csharp特性 { class Program { static void Main(string[] args) { Console.WriteLine("csharp特性"); Program program = new Program(); program.main(); Console.ReadKey(); } private void main() { test1(); test2(); test3(); } private void test1() { Console.WriteLine("最简单的实验"); A a = new A(); Type type = a.GetType(); FieldInfo f = type.GetField("mA1"); TestAtrribute testAtrribute = f.GetCustomAttribute<TestAtrribute>(); Console.WriteLine(testAtrribute.str); } private void test2() { Console.WriteLine("构造函数实验"); B b = new B(); Type type = b.GetType(); FieldInfo f = type.GetField("mA1"); Test2 testAtrribute = f.GetCustomAttribute<Test2>(); Console.WriteLine(testAtrribute.value); } private void test3() { Console.WriteLine("赋值实验"); C c = new C(); Type type =c.GetType(); FieldInfo f = type.GetField("mA1"); Test3 testAtrribute = f.GetCustomAttribute<Test3>(); Console.WriteLine(testAtrribute.Value); } } /// <summary> /// 最简单的实验 /// </summary> class A { [TestAtrribute] public int mA1 = 5; } public class TestAtrribute : System.Attribute { public string str = "my is TestAtrribute"; } /// <summary> /// 构造函数实验 /// </summary> class B { [Test2(1)] public int mA1 = 5; } public class Test2 : Attribute { public int value; public Test2(int a) { value = a; } } /// <summary> /// 赋值实验 /// </summary> class C { [Test3(Value=9)] public int mA1 = 5; } public class Test3: Attribute { public int Value { set; get; } } }
3.运行
这篇关于c# 特性实验的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#