博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c#程序 获取类的属性和方法
阅读量:6578 次
发布时间:2019-06-24

本文共 1404 字,大约阅读时间需要 4 分钟。

 

using System;using System.Collections.Generic;using System.Linq;using System.Reflection;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication1{    class SomeClass    {        public int Filed1;        public int Filed2;        public void Method1() { }        public int Method2() { return 1; }    }    class Program    {        static void Main(string[] args)        {            Console.WriteLine("HELLO C#!");//System.怎么不行呢            //Console.WriteLine("HELLO C#2!");            //Console.Write("hello3");            //Console.Write("hello4");            //Console.Write(n);//动态语言            //Console.WriteLine("The sample integers are {0} and {1}.", 3, 6);            Console.Write("hello c#2\r\n");            Console.Write("hello c#3");            Console.Write("\r\n");            SomeClass s = new SomeClass();            Console.WriteLine("Type s :{0}", s.GetType().Name);            Console.WriteLine("-----------------------------");            Type t = typeof(SomeClass);            FieldInfo[] fi = t.GetFields();//发现字段属性并提供对字段元数据的访问权。            MethodInfo[] mi = t.GetMethods();            foreach (FieldInfo f in fi)                Console.WriteLine("Field:{0}", f.Name);            foreach (MethodInfo m in mi)                Console.WriteLine("Method:{0}", m.Name);            Console.ReadLine();        }    }}

转载于:https://www.cnblogs.com/rechen/p/5132136.html

你可能感兴趣的文章
Mint UI 使用采坑记
查看>>
数据库下载_Office下载
查看>>
leetcode-771-Jewels and Stones(建立哈希表,降低时间复杂度)
查看>>
字符串分割函数(New)
查看>>
第一阶段:前端开发_使用JS完成注册页面表单校验
查看>>
深入了解JavaScript对象(1)--原始类型和引用类型
查看>>
mybatis中动态SQL之trim详解
查看>>
SDN第5次上机作业
查看>>
响应式布局
查看>>
第六周项目4-成员函数、友元函数和一般函数有区别
查看>>
小试牛刀C#作为脚本语言执行解密
查看>>
Intellij创建简单Springboot项目
查看>>
编译升级php之路(5.5.7 到 5.5.37)
查看>>
31. ExtJs4回车事件监听
查看>>
ClassLoader.getResourceAsStream(name);获取配置文件的方法
查看>>
java 类加载器
查看>>
洛谷P2179 [NOI2012]骑行川藏(拉格朗日乘数法)
查看>>
FastCGI高级指南
查看>>
qemu -net tap配置上网
查看>>
358. Rearrange String k Distance Apart
查看>>