IsThisNotNull function

bool IsThisNotNull(
  1. Object? This
)

Tells if This isn't null

Implementation

bool IsThisNotNull(Object? This) => IsNotNull(This);