Type:Nullable`1

From Resonite Wiki
Revision as of 18:01, 14 January 2024 by Epsilion (talk | contribs)

A Nullable<T> is a generic value variable that can store a null value - normally only possible by reference types.

For more information on how this type functions, see the Microsoft documentation on Nullable<T>

Usage

Use this wherever you need a a value variable (for example bool or float), but you also need to track an unset/empty/null state.