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

# TryParse

> Sometimes I just need a reminder

```csharp theme={null}
double? fixedPriceDouble = double.TryParse(fixedPrice, out double converted) ? converted : null;
```

Converts a `String` variable of `fixedPrice` into a `double?` called `fixedPriceDouble`.
