C#Sharp.com
2006-02-03 11:27:47 UTC
お世話になります。
下記の宣言でModel.name[0]:でコンパイルエラーが発生します。
なぜかわかりません。
教えて頂きたくよろしくお願いします。
public class Model
{
public const string[] name = { "5627" };
}
private void a(string ttt)
{
switch (ttt)
{
case Model.name[0]:--------------エラーとなる箇所
textDataW.Text = "1" + '\r';
SendfortheBCReader();
break;
}
}
下記の宣言でModel.name[0]:でコンパイルエラーが発生します。
なぜかわかりません。
教えて頂きたくよろしくお願いします。
public class Model
{
public const string[] name = { "5627" };
}
private void a(string ttt)
{
switch (ttt)
{
case Model.name[0]:--------------エラーとなる箇所
textDataW.Text = "1" + '\r';
SendfortheBCReader();
break;
}
}