0

我正在尝试创建一个用户通过从UI 上List<T>选择数据类型来指定数据类型的位置。ComboBox我已经设法创建了一个包含 的对象CustomEntityList<T>但是一旦我退出Button1_Click事件处理程序,CustomEntity就会超出范围。是否可以创建类级别变量?我尝试过,但不得不将其注释掉,因为它导致了错误。

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;

namespace CustomClassWithGenericList
{
    public partial class Form1 : Form
    {
        //The following error is created: Cannot implicitly convert type
        //CustomClassWithGenericList.CustomEntity<decimal> to
        //CustomClassWithGenericList.CustomEntity<object>


        //private CustomEntity<object> input1;

        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (cb1.SelectedItem.ToString().ToUpper() == "DECIMAL")
            {
                input1 = new CustomEntity<decimal>();

                string[] temp = textBox1.Text.Split(',');

                foreach (string s in temp)
                {
                    decimal number;

                    if (decimal.TryParse(s, out number))
                    {
                        input1.inputValue.Add(number);
                    }
                    else
                    {
                        MessageBox.Show("Error occured.");
                    }
                }
            }
            else if(cb1.SelectedItem.ToString().ToUpper() == "INT")
            {
            }
            else if(cb1.SelectedItem.ToString().ToUpper() == "TIMESPAN")
            {
            }
        }
    }

    public class CustomEntity<T>
    {
        public List<T> inputValue; 

        public CustomEntity()
        {
            inputValue = new List<T>();
        }
    }
}
4

2 回答 2

1

注释掉的行使用类型 T,它不是定义的类型。并不是说您需要在声明时指定泛型的类型参数列表,而不是在其他任何地方。

如果您希望泛型能够容纳任何对象,您应该简单地将类型“对象”作为类型参数传递给它。

但是,如果它只能是几种不同的类型,则为每种类型创建一个成员变量可能是首选选项,具体取决于您以后打算如何使用它。

于 2013-02-01T22:22:36.553 回答
1

那里可以使用很多技术。首先,您可以创建Object动态类型变量,然后随意转换它。

您还可以将数据以某种状态存储在内存中(例如某些会话或应用程序状态,或缓存等),在这种情况下,只需从该源获取。

于 2013-02-01T22:23:28.903 回答