TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

<< Back to C-SHARP

C# bool Type

Test the bool type, which holds true or false. A bool occupies 1 byte of memory.
Bool. Day and night are parts of a boolean condition. Day is true (it has light) and night is false. This can be stored in a bool variable.
Usage notes. Bool is often used in expressions. Many expressions evaluate to a boolean value. Represented in one byte, the bool type represents truth.Byte
First program. A bool can be assigned to the true and false literals. We set the bool variable to true. And then we invert the value of the bool using the exclamation operator.True, False

Info: The word bool comes from George Boole, a mathematician who pioneered Boolean logic in the 1800s in England.

C# program that uses bool using System; class Program { static void Main() { bool val = true; if (val) { Console.WriteLine(val == true); } val = !val; if (!val) { Console.WriteLine(val == false); } } } Output True True
Bool variable. This program declares a bool variable. It manipulates its values through expressions. The size of the bool type is one byte. It is aliased to the System.Boolean type.

Part 1: We set the bool to true. Then we set the variable value equal to its opposite value.

Part 2: If-statements can test a bool. In an if-statement, the expression is evaluated in a Boolean context.

Part 3: We can store the result of an expression evaluation as a local variable. This technique can simplify complex logic tests.

Part 4: We print some details of the bool type, including its size in bytes and its Type representation.

C# program that uses bool in many contexts using System; class Program { static void Main() { // Part 1: set values to bool. bool value = true; Console.WriteLine(value); value = !value; Console.WriteLine(value); value = false; Console.WriteLine(value); // Part 2: use if-statements with bool. if (value) { Console.WriteLine("Not reached"); } if (!value) { Console.WriteLine("Reached"); } // Part 3: use a bool local to store an expression result. bool test = !value && 1 == int.Parse("1"); Console.WriteLine(test); // Part 4: print bool details. Console.WriteLine(sizeof(bool)); Console.WriteLine(true.GetType()); } } Output True False False Reached True 1 System.Boolean
Ints, bools. How can you convert an int in your C# program to a bool value? This can be done with the Convert.ToBoolean method in the System namespace. A custom method could also be used.Int, uintConvert Bool, Int

Here: This program uses the Convert type to convert ints into bools. The Convert.ToBoolean method is perfect for this purpose.

Info: This method considers 0 to be false. All other values, positive and negative, are true.

C# program that converts int to bool using System; class Program { static void Main() { Console.WriteLine(Convert.ToBoolean(5)); Console.WriteLine(Convert.ToBoolean(0)); Console.WriteLine(Convert.ToBoolean(-1)); } } Output True False True
Null bool. A bool cannot be null—its default value is false. But we can use a nullable bool, which is a struct that wraps a bool value, and set it to null.

Initialized: The null value of a nullable bool can be used to mean uninitialized. So we can have a 3-state bool here.

Nullable
C# program that uses nullable bool using System; class Program { static void Main() { // A null bool can mean an uninitialized boolean value. bool? valid = null; Console.WriteLine("Initialized: {0}", valid.HasValue); // We can then set the nullable bool to true or false. valid = true; Console.WriteLine("Valid: {0}", valid.Value); } } Output Initialized: False Valid: True
Usage. Bools can be used in a variety of program contexts to represent truth values. They are used throughout programs—even if you do not notice them.bool: Arraybool: Array Sortbool: Parse

Methods: In C# programs, methods often return bool values. These methods sometimes have the prefix "Is" on their names.

bool: Return

Also: Properties can return bool values. The book Code Complete shows how boolean expressions are simplified.

Research. I learned some technical specifics of bool in the CLI specification. If the byte has all zeros, it means false. And if any of the four bits in that byte are set to 1, it is true.

Quote: A CLI Boolean type occupies 1 byte in memory. A bit pattern of all zeros denotes a value of false. A bit pattern with any bit set (analogous to a non-zero integer) denotes a value of true (The CLI Annotated Standard).

A summary. Nearly every C# program uses bools. All if-statements requires a boolean expression. We explored bools, established their representation size in bytes, and tested conversions.
© TheDeveloperBlog.com
The Dev Codes

Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf