Object Extensions1234567public static class ObjectExtension { public static bool IsNull(this object obj) => obj == null; public static bool IsNotNull(this object obj) => obj != null;}