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 stm32流水灯+呼吸灯+外部中断按键
  • ¥15 将二维数组,按照假设的规定,如0/1/0 == "4",把对应列位置写成一个字符并打印输出该字符
  • ¥15 NX MCD仿真与博途通讯不了啥情况
  • ¥15 win11家庭中文版安装docker遇到Hyper-V启用失败解决办法整理
  • ¥15 gradio的web端页面格式不对的问题
  • ¥15 求大家看看Nonce如何配置
  • ¥15 Matlab怎么求解含参的二重积分?
  • ¥15 苹果手机突然连不上wifi了?
  • ¥15 cgictest.cgi文件无法访问
  • ¥20 删除和修改功能无法调用