首页 > 代码库 > Bool 类型变量的使用
Bool 类型变量的使用
定义一个bool类型的变量,默认为FALSE的
1 private bool BHaveBeenTip=false; 2 private void label5_Click(object sender, EventArgs e) 3 { 4 var oFileBrowser = new FileBowser(); 5 if (oFileBrowser.ShowDialog() == DialogResult.OK) 6 { 7 foreach (string fName in oFileBrowser.ListSelectedFile) 8 { 9 this.AddAttachment(fName, false, false);10 }11 bHasBeenTips = false;12 }13 oFileBrowser.Dispose();14 }15 16 private void AddAttachment(string aFileName, bool aIsDelete, bool aIsLargeAttachment)17 {18 if (attachList.Exists(o => o.Equals(aFileName, StringComparison.OrdinalIgnoreCase)))19 {20 if (!bHasBeenTips) //此处省略了 if(!bHasBeenTips==true)21 { 22 MessageBoxEx.ShowBox("不允许上传同名文件.", MessageBoxButtons.OK);23 bHasBeenTips = true;24 }25 return;26 }27 else28 {29 ..................................30 }31 }
Bool 类型变量的使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。