/// <summary> /// Convert <see cref="object"/> to nullable <see cref="short"/>. /// </summary> /// <param name="obj"></param> /// <returns></returns> public static short?ToNullableInt16(object obj) => NumericConv.ObjectToNullableInt16(obj);