> ## Documentation Index
> Fetch the complete documentation index at: https://docs.baenninger.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Integers

Integers werden zum Speichern von ganzen Zahlen verwendet. In C# ist ein `int` 32 Bit oder 4 Bytes gross, d.h. wir haben einen Wertebereich von `-2'147'483'648` bis `2'147'483'647`.

```csharp theme={null}
int age = 17;
```

## Arithmetische Operationen

Wir können mit Integers Operatoren, wie `+`, `-`, `*`, `/`, etc. nutzen.

```csharp theme={null}
int sum = 5 + 10;
int difference = 5 - 10;
int product = 5 * 10;
int quotient = 5 / 10;
```
