2010年2月26日 星期五

[C#] 方法的使用

第一種是 呼叫方法(只有執行)
private void Form1_Load(object sender, EventArgs e)
{
CALL_BG();
}
           private void 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;
}

沒有留言:

張貼留言