변수 asynchExecutions가 변경되지만 참조 변수는 변경되지 않습니다.
간단한 질문입니다.이 생성자의이 ref 매개 변수가 전달 된 원래 값을 변경하는 이유는 무엇입니까?이 ref 매개 변수가 전달 된 값을 변경하지 않는 이유는 무엇입니까?
public partial class ThreadForm : Form
{
int asynchExecutions1 = 1;
public ThreadForm(out int asynchExecutions)
{
asynchExecutions = this.asynchExecutions1;
InitializeComponent();
}
private void start_Button_Click(object sender, EventArgs e)
{
int.TryParse(asynchExecution_txtbx.Text, out asynchExecutions1);
this.Dispose();
}
}
생성자를 호출하는 코드를 게시 할 수 있습니까? 또한, 왜 당신의 폼이 버튼의'Click' 이벤트 중에 자살을하는 것입니까? –