/// <summary> /// Determines if an object is a COM object. /// </summary> /// <param name="value">The object to test.</param> /// <returns>true if the object is a COM object, false otherwise.</returns> public static bool IsComObject(object value) { return(ComObject.IsComObject(value)); }