感謝您抽出時間看一下。卡在聲明理解公共字符的數組中,C#
我得到三個錯誤 一個是用我的括號表示聲明元音(Invalid token) 另外兩個是與上下文中存在的彙編語言和元音有關。我在網站上做了一些挖掘;我覺得我接近我的聲明。 我找不到任何明確指出問題的東西。 謝謝
namespace Yhasfeelings
{
public partial class Form1 : Form
{
public char {vowel {'a', 'e', 'i', 'o', 'u', 'y'};
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
var programVowelGuess = new vowel();
int count = 0;
string wordEntry = (textBox1.Text).ToLower();
for (int i = 0; i < wordEntry.Length; i++)
{ if (textBox1.Text.Contains(programVowelGuess[i]))
{ count++;
}
}
var vowelCount = Convert.ToString(count);
label1.Text = (vowelCount);
}
}}
什麼是錯了,並在其上線? –