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也有这个方法

    评论

报告相同问题?

悬赏问题

  • ¥15 jupyterthemes 设置完毕后没有效果
  • ¥15 matlab图像高斯低通滤波
  • ¥15 针对曲面部件的制孔路径规划,大家有什么思路吗
  • ¥15 钢筋实图交点识别,机器视觉代码
  • ¥15 如何在Linux系统中,但是在window系统上idea里面可以正常运行?(相关搜索:jar包)
  • ¥50 400g qsfp 光模块iphy方案
  • ¥15 两块ADC0804用proteus仿真时,出现异常
  • ¥15 关于风控系统,如何去选择
  • ¥15 这款软件是什么?需要能满足我的需求
  • ¥15 SpringSecurityOauth2登陆前后request不一致