ページの読み込みに 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";
}