qq_37550403 2017-09-06 12:41 采纳率: 0%
浏览 2011

C# 关于typeof()运算符

以下是我看见的一个教程的示例,
前边写的是typeof(Int32),后边为何type.GetMethods()是获取的string类的方法,
typeof(Int32)返回的值是string类型的?本人是新手,求大神解答。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Reflection;

namespace TypeOf
{
public partial class Frm_Main : Form
{
public Frm_Main()
{
InitializeComponent();
}

    private void btn_Get_Click(object sender, EventArgs e)
    {
        Type type = typeof(System.Int32);//获得int类型的Type对象
        foreach (MethodInfo method in type.GetMethods())//遍历string类中定义的所有公共方法
        {
            rtbox_text.AppendText(
                "方法名称:" + method.Name + Environment.NewLine);//输出方法名称
            foreach (ParameterInfo parameter in method.GetParameters())//遍历公共方法中所有参数
            {
                rtbox_text.AppendText(
                    "  参数:" + parameter.Name + Environment.NewLine);//输出参数名称
            }
        }
    }
}

}

  • 写回答

1条回答

  • threenewbee 2017-09-07 01:40
    关注

    Type type = typeof(System.Int32)
    type.GetMethods()获取的是int32的方法
    你应该是看错了。比如说 ToString,Int32也有这个方法

    评论

报告相同问题?

悬赏问题

  • ¥30 python代码,帮调试
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条