Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Oppiskele Booleans | Dealing with Data Types
C# Basics
course content

Kurssisisältö

C# Basics

C# Basics

1. Getting Started
2. Dealing with Data Types
3. Control Structures
4. Loops
5. Arrays
6. Methods

book
Booleans

Boolean data type represents two logical values true and false. The keyword bool can be used to create a Boolean variable:

cs

main

copy
12345678910111213141516
using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { bool isOnline = true; Console.WriteLine(isOnline); // Output: True isOnline = false; Console.WriteLine(isOnline); // Output: False } } }

Logical values are used especially where we want to execute a piece of code based on a specific condition. We will learn more about conditional statements in the next section.

question mark

What will be the output of the following program?

Select the correct answer

Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 2. Luku 4
Pahoittelemme, että jotain meni pieleen. Mitä tapahtui?
some-alt