I was looking at some existing code and stumbled across a variable declaration I didn\'t understand:
public foo as Boolean?
What does the quest
It means a nullable Boolean.
Boolean?, or any other value type (number or struct), is shorthand for Nullable(Of Boolean).
Boolean?
Nullable(Of Boolean)