1

编辑:我找到了错误的来源。我classTwo()type指向字符串而不是整数的字符串调用。

所以我正在尝试使用反射从另一个类中获取一个 int。

当我从另一个类中获取一个字符串时它可以工作,但当我尝试获取一个 int 时它就不行了。

这是我的代码:

class classOne //In its own file (classOne.cs)
{
    public int myInt = 5;
    public string myString = "Hello World";
    new classTwo(this, "myInt").show(); //classTwo is actually a form.
}

class classTwo //In its own file (classTwo.cs)
{
    classOne frm;
    int kind1;
    string kind2;
    string type;

    public classTwo(classOne frm, string type)
    {
        this.frm = frm;
        this.type = type;
    }
    //Doesn't work:
    this.kind1 = Convert.ToInt32(this.frm.GetType().GetField(this.type).GetValue(this.frm));
    //Works:
    this.kind2 = Convert.ToString(this.frm.GetType().GetField("myString").GetValue(this.frm));
}

这行不通。当我使用它时它可以工作Convert.ToString,但是当我使用它时,它会在我运行它时引发错误:


FormatException 未处理

输入字符串的格式不正确。


有人可以向我解释我做错了什么,并给出解释的修复(如果可能的话)?

4

1 回答 1

0

完美运行

class classOne //In its own file (classOne.cs)
{
    public int myInt = 5;
    public string myString = "Hello World";

    public void test()
    {
        var obj = new classTwo(this, "myInt");
        obj.test();

    }

}

class classTwo //In its own file (classTwo.cs)
{
    classOne frm;
    int kind1;
    string kind2;
    string type;

    public classTwo(classOne frm, string type)
    {
        this.frm = frm;
        this.type = type;
    }
    //Doesn't work:

    public void test()
    {
        //Doesn't work:
        this.kind1 = Convert.ToInt32(this.frm.GetType().GetField(this.type).GetValue(this.frm));


        this.kind2 = Convert.ToString(this.frm.GetType().GetField("myString").GetValue(this.frm));
    }
}
于 2013-08-21T03:23:10.490 回答