c#里的调用函数具体的用法是怎样的。。能不能写个例子出来让我看看呀
{:5_670:}如题 {:5_701:}{:5_701:}{:5_701:}{:5_701:} 大一的吧? 和C差不多的{:5_703:} 回复 3# 二手内裤给我个例子,,啥的{:5_668:} 回复 2# xiaosayx
{:5_746:}一大早起来看都看不明白 protected void Page_Load(object sender, EventArgs e)
{
string a = b(1);
response.write(a);
}
public int b(int i)
{
return i+1;
}
我只懂网页的,没调试过,没写错的话,应该会得到"2" 回复 6# 大海.
{:5_700:}明白了。。。3Q 回复 6# 大海.
response.write(a); 这个是网页的? 回复 8# 文子
嗯,输出变量a 回复 9# 大海.
在控制台应用程序不得的呢。。。 发什么鬼贴,我在你旁边都不问 回复 10# 文子
那种我没学过. 回复 12# 大海.
{:5_680:} 哦。。。还是3Q你 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
{
}
} 回复 14# rjianfeili
{:5_683:}收下了。。{:5_691:}
页:
[1]