{
public partial class form1 : Form
{
public form1()
{
InitializeComponent();
}
public Button ButtonName { get { return } }
public static int initFaggleCount;
private void button1_Click(object sender, EventArgs e)
{
int faggleCount = initFaggleCount++;
string finalCalc = faggleCount.ToString();
label1.Text = finalCalc;
/*
Console.WriteLine(faggleCount);
Console.ReadLine();*/
}
private void button2_Click(object sender, EventArgs e)
{
/*TextWriter tw = new StreamWriter("SavedFaggleCount.txt");
tw.WriteLine();
tw.Close();*/
Console.WriteLine(faggleCount);
Console.ReadLine();
}
}
}
Я хотел бы целое faggleCount быть доступным из button2, так что я могу успешно Console.WriteLine(fagleCount);
от button2. Я ноб, и любая помощь приветствуется. Благодаря!я не могу получить член в частном классе, чтобы быть доступным из другого частного класса
с указанием каких-либо ошибок – Vinoth
Да, потому что button2 не смог получить доступ к faggleCount. – Simillion