我在页面加载中有一个 If 条件。我可以在 if 条件中调用一个函数吗?
if( //I need to call function here with parameters..)
{
messageOut = "invlid user";
}
函数看起来像这样
public void CheckUserExistAndReporter(int Source,string messageIn)
{
// Some code goes here
}
在这里我尝试了如下,正确吗?
if(CheckUserExistAndReporter(int Source,string messageIn) )
{
messageOut = "invlid user";
}