标签:if
if语句怎么样传参给方法
private void buttonLoad_Click(object sender, EventArgs e) { OnLoadFile(); } void OnLoadFile() { ///文件加载判断模块 OpenFileDialog f1 = new OpenFileDialog();// f1.Title = “文件加载”……
09-26 立刻查看
一个if语句 求简化
private bool verificationLoad(string userName,string userPassword, string clientSessionid) { //clientSessionid 这是判断能否登录的id if (clientSessionid != null) { // 验证sessionid方式 判断登陆 ……
03-06 立刻查看