文子 发表于 2010-3-14 11:04:15

c#里的调用函数具体的用法是怎样的。。能不能写个例子出来让我看看呀

{:5_670:}如题

xiaosayx 发表于 2010-3-14 11:18:57

{:5_701:}{:5_701:}{:5_701:}{:5_701:}

二手内裤 发表于 2010-3-14 11:21:43

大一的吧? 和C差不多的{:5_703:}

文子 发表于 2010-3-14 11:29:02

回复 3# 二手内裤


    给我个例子,,啥的{:5_668:}

文子 发表于 2010-3-14 11:29:40

回复 2# xiaosayx


{:5_746:}一大早起来看都看不明白

大海. 发表于 2010-3-14 11:43:16

protected void Page_Load(object sender, EventArgs e)
    {
      string a = b(1);
      response.write(a);
    }
public int b(int i)
{
    return i+1;
}

我只懂网页的,没调试过,没写错的话,应该会得到"2"

文子 发表于 2010-3-14 11:47:15

回复 6# 大海.


    {:5_700:}明白了。。。3Q

文子 发表于 2010-3-14 11:51:39

回复 6# 大海.


   response.write(a);   这个是网页的?

大海. 发表于 2010-3-14 11:55:20

回复 8# 文子


    嗯,输出变量a

文子 发表于 2010-3-14 12:00:09

回复 9# 大海.


    在控制台应用程序不得的呢。。。

huanlin 发表于 2010-3-14 12:09:17

发什么鬼贴,我在你旁边都不问

大海. 发表于 2010-3-14 12:10:39

回复 10# 文子


    那种我没学过.

文子 发表于 2010-3-14 12:28:07

回复 12# 大海.


    {:5_680:} 哦。。。还是3Q你

米修米修 发表于 2010-3-14 13:46:43

namespace Login
{
    class Users
    {
      string no;
      string pass;
      public   Users(string no, string pass)
      {
            this.no = no;
            this.pass = pass;
      }
      public void Login(string no,string pass)
      {
            if (this.no!=no)
                {
                     //MessageBox.Show("用户名错误", "警告!");
                  return;
                }
                if ( this.pass!=pass )
                {
                  // MessageBox.Show("密码错误","警告!");
                  return;
                }
      }
    }
}
private void butLogin_Click(object sender, EventArgs e)
      {
            Users us = new Users("feili","123");
            try
            {
                us.Login(this.txtname.Text, this.txtpass.Text);
            }
            catch
            {
            }
      }

文子 发表于 2010-3-14 15:52:16

回复 14# rjianfeili


    {:5_683:}收下了。。{:5_691:}
页: [1]
查看完整版本: c#里的调用函数具体的用法是怎样的。。能不能写个例子出来让我看看呀