ユーザーが UIList<T>
からデータ型を選択して指定する場所を作成しようとしています。を保持するComboBox
のオブジェクトを作成できましたが、イベント ハンドラを終了すると、 は範囲外になります。クラスレベルの変数を作成することはできますか? 試してみましたが、エラーが発生したため、コメントアウトする必要がありました。CustomEntity
List<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>();
}
}
}