c#中false和turn可以用1和0代替吗

如题所述

不行,c#中无法完成这种转换,不过可以换种写法,如bool result=a==1?ture:false;
温馨提示:内容为网友见解,仅供参考
第1个回答  2016-06-05
也是可以的,只是true和false是专业写法,1、0不专业
第2个回答  推荐于2018-04-05
Convert.ToBoolean(0) 为false,Convert.ToBoolean(1)为true;

c#中false和turn可以用1和0代替吗
不行,c#中无法完成这种转换,不过可以换种写法,如bool result=a==1?ture:false;

c#中false和turn可以用1和0代替吗
不行,c#中无法完成这种转换,不过可以换种写法,如bool result=a==1?ture:false;

怎么样使程序交出控制权
使用GetMessage函数的消息循环在消息队列中没有消息时将等待,如果需要,可以利用这段时间进行I\/O端口操作等耗时操作,不过需要在消息循环中使用PeekMessage函数来代替GetMessage。使用PeekMessage的方法同GetMessage类似,下面是一段使用PeekMessage函数的消息循环的典型例子:MSG msg; BOOL bDone=FALSE; do{ if(PeekMessage(&m...

C#中出现未能计算表达式的值
public boolean getIsOn() { return m_isOn; } public CloudLed(){ m_isOn = false;} public void turnOn(){ if(!m_isOn){ m_isOn = true;try {

C#读文件中数据到数组,并输出数组中存放的数据
\/\/判断一下,防止上标出界 if (i + 2 <= contentArray.Length){ \/\/防止数据异常 if (!int.TryParse(contentArray[i], out a) || !int.TryParse(contentArray[i + 1], out b) || !int.TryParse(contentArray[i + 2], out c)){ int[] res = new int[3];res[0] = a;res[1...

用英文介绍一道家常菜
而且她经常用切好的葱段代替蒜苗。The dish is also a comfort food well-suited to preparation at home. According to Chinese-American Zuo Ziying, who was born in Chengdu and who conducts tours in southwest China for Lotus Culinary Travel, jiachang or home-style versions of mapo dofu...

求俄罗斯方块游戏代码
dispBlock(0); col++; dispBlock(1); } } \/\/实现块落下的操作的方法 public boolean fallDown(){ if(blockState == 2) return(false); if(assertValid(blockType,turnState,row-1,col)){ dispBlock(0); row--; dispBlock(1); return(true); }else{ blockState = 2; dispBlock(2); return(...

在C#.NET中如何实现在文本框中输入内容的同时在label中显示出来,并且lab...
private string[] NUM = new string[] { "零", "一", "二", "三", "四", "五", "六", "七", "八", "九", "十", "百" };private void textBox1_TextChanged(object sender, EventArgs e){ int input = int.Parse(textBox1.Text==""?"0":textBox1.Text);string label...

C# decimal 转成百分数
this.dgv3.Rows[1].Cells[0].Value = "25.80%";之前先设置它的ValueType 改成 this.dgv3.Rows[1].Cells[0].ValueType = typeof (String);this.dgv3.Rows[1].Cells[0].Value = "25.80%";

C#用代理写一个Console Application
using System.Text;namespace ConsoleApplication1 { \/\/Car, Radio, GPS class Car { public delegate void TurnOn(bool val);public void Power(bool val, TurnOn it){ it(val);} } class Radio { public static void Power(bool val){ Console.WriteLine("Radio");} } class GPS { publ...

相似回答