using System; namespace sharp.extensions { public static class ObjectExtensions { public static bool IsNull(this object o){ return (o == null); } } }