C#Convert.ToInt32(bool)方法 (C# Convert.ToInt32(bool) Method)
Convert.ToInt32(bool) Method is used to convert a specific Boolean (bool) value to its equivalent integer (int 32 signed number).
Convert.ToInt32(bool)方法用于將特定的布爾值(布爾值)轉換為其等效的整數(32位帶符號整數)。
Syntax:
句法:
int Convert.ToInt32(bool value);
It accepts a bool value/variable as an argument and returns its equivalent signed integer.
它接受布爾值/變量作為參數,并返回其等效的帶符號整數。
Example:
例:
Input:
bool a = true;
Output:
1
Code:
碼:
using System;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Convert.ToInt32(true) : " + Convert.ToInt32(true));
Console.WriteLine("Convert.ToInt32(false): " + Convert.ToInt32(false));
bool a = true;
bool b = false;
Console.WriteLine("Convert.ToInt32(a) : " + Convert.ToInt32(a));
Console.WriteLine("Convert.ToInt32(b): " + Convert.ToInt32(b));
//hit ENTER to exit
Console.ReadLine();
}
}
}
Output
輸出量
Convert.ToInt32(true) : 1
Convert.ToInt32(false): 0
Convert.ToInt32(a) : 1
Convert.ToInt32(b): 0
翻譯自: https://www.includehelp.com/dot-net/Convert-ToInt32-bool-method-in-c-sharp.aspx