private void Form1_Load(object sender, EventArgs e)private void CALL_BG()
{
CALL_BG();
}
{
//這裡寫上要做的事情第二種 呼叫方法同時將值 傳給副程式執行
}
第三種 傳入 、處理後 傳出private void Form1_Load(object sender, EventArgs e)
{
string aa = "abc";
CALL_BG(aa);
}
private void CALL_BG(string aa)
{
aa = aa + "12345";
MessageBox.Show(aa);
}
private void Form1_Load(object sender, EventArgs e)
{
string aa = "abc";
string bb=CALL_BG(aa);
MessageBox.Show(bb);
}
private string CALL_BG(string aa)
{
string CALL_BG_FB = aa + "12345";
return CALL_BG_FB;
}
沒有留言:
張貼留言