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 关于logstash转发日志时发生的部分内容丢失问题
  • ¥17 pro*C预编译“闪回查询”报错SCN不能识别
  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?