Relative Content

Tag Archive for c#unity-game-engineif-statementisnull

is not null Vs != null (Unity C#)

The only difference (besides the syntax) is, that the compiler guarantees that no user-overloaded operator is called when using is not null instead of != null (or is null instead of == null).