> ## 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.

# Floats und Doubles

Floating Point Zahlen sind Zahlen mit einem Dezimalpunkt. In C# ist ein `float` 4 Byte gross und ein `double` 8 Bytes.

```csharp theme={null}
float rating = 3.5f;
double pi = 3.14159265358979;
```

## Arithmetische Operationen

```csharp theme={null}
float sum = 5.5f + 10.5f;
float difference = 5.5f - 10.5f;
float product = 5.5f * 10.5f;
float quotient = 15.5f / 10.5f;
```
