Здраствуйте.
Есть клас^
class WORKBOOK
{
public string name{ get; set; }
public string key{ get; set; }
public void set(string key, string name)
{
this.name = name;
this.key = name;
}
}
А также использование этого класа.
Код не работает.
static void Main(string[] args)
{
WORKBOOK[] excel_files;
excel_files[0] = new WORKBOOK();//<-----Error 1 Use of unassigned local variable 'excel_files'
excel_files[1] = new WORKBOOK();
excel_files[2] = new WORKBOOK();
excel_files[3] = new WORKBOOK();
excel_files[4] = new WORKBOOK();
excel_files[0].set("S", @"\project1\1.xls");
excel_files[1].set("T", @"\project2\2.xls");
excel_files[2].set("A", @"\project3\3.xls");
excel_files[3].set("U", @"\project4\4.xls");
excel_files[4].set("B", @"\project5\5.xls");
Reg e = new Reg(excel_files);
e.Load(excel_files[0]);
Console.WriteLine("show.form1");
Form1 f1 = new Form1(e.dtable);
f1.ShowDialog();
Console.Read();
}
Помогите упростить код..
тоесть, сделать как ПРАВИЛЬНО!
Спасибо за внимание.