How do you indicate that a string might be null?
string myVariable = null
string? myVariable
string(null) myVariable Official documentation: nullable value types
string(null) myVariable
A string cannot be nullable.