• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#Type

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

C#中通过Type类可以访问任意数据类型信息。
1.获取给定类型的Type引用有3种方式:
  a.使用typeof运算符,如Type t = typeof(int);
  b.使用GetType()方法,如int i;Type t = i.GetType();
  c.使用Type类的静态方法GetType(),如Type t =Type.GetType("System.Double");
2.Type的属性:
  Name:数据类型名;
  FullName:数据类型的完全限定名,包括命名空间;
  Namespace:数据类型的命名空间;
  BaseType:直接基本类型;
  UnderlyingSystemType:映射类型;
3.Type的方法:
  GetMethod():返回一个方法的信息;
  GetMethods():返回所有方法的信息。

TestType.cs:

using System;
using System.Reflection;

namespace Magci.Test.Reflection
{
    public class TestType
    {
        public static void Main()
        {
            //基本数据类型
            Type intType = typeof(int);
            
            //属性
            Console.WriteLine("intType.Name = " + intType.Name);
            Console.WriteLine("intType.FullName = " + intType.FullName);
            Console.WriteLine("intType.Namespace = " + intType.Namespace);
            Console.WriteLine("intType.IsAbstract = " + intType.IsAbstract);
            Console.WriteLine("intType.IsClass = " + intType.IsClass);
            Console.WriteLine("intType.IsEnum = " + intType.IsEnum);
            Console.WriteLine("intType.IsPrimitive = " + intType.IsPrimitive);
            Console.WriteLine("intType.IsValueType = " + intType.IsValueType);

            //方法
            MethodInfo[] methods = intType.GetMethods();
            foreach (MethodInfo method in methods)
            {
                Console.WriteLine(method.DeclaringType + " " + method.MemberType + " " + method.Name);
            }
        }
    }
}

TestTypeView.cs:

using System;
using System.Text;
using System.Windows.Forms;
using System.Reflection;

namespace Magci.Test.Reflection
{
    public class TestTypeView
    {
        public static StringBuilder OutputText = new StringBuilder();

        public static void Main()
        {
            Type t = typeof(double);
            AnalyzeType(t);
            MessageBox.Show(OutputText.ToString());
        }

        public static void AnalyzeType(Type t)
        {
            //数据类型名
            OutputText.Append("\nType Name: " + t.Name);
            //数据类型的完全限定名,包括命名空间
            OutputText.Append("\nFull Name: " + t.FullName);
            //数据类型的命名空间
            OutputText.Append("\nNamespace: " + t.Namespace);
            
            //直接基本类型
            Type tBase = t.BaseType;
            if (tBase != null)
            {
                OutputText.Append("\nBase Type: " + tBase.Name);
            }
            
            //映射类型
            Type tUnderlyingSystem = t.UnderlyingSystemType;
            if (tUnderlyingSystem != null)
            {
                OutputText.Append("\nUnderlyingSystem Type: " + tUnderlyingSystem.Name);
            }

            //所有公共方法
            OutputText.Append("\n\nPublic members:");
            MemberInfo[] methods = t.GetMethods();
            foreach (MemberInfo method in methods)
            {
                OutputText.Append("\n" + method.DeclaringType + " " + method.MemberType + "" + method.Name);
            }
        }
    }
}

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#中split用法发布时间:2022-07-13
下一篇:
第3章线性表的单链表c#实现---《大话数据结构》读书笔记发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap