Last updated 3 years ago
namespace:
Extension methods for the int type. Below is an example of how to call an extension method.
int
GameObject val = new GameObject("go"); bool valIsNull = val.IsNull()
public static bool isNull<T>(this T val): Returns true if val is null (and val is nullable).
public static bool isNull<T>(this T val)
val