This is a helper class for runtime-callable-wrappers of COM instances. We create one instance of this type for every generic RCW instance.
Inheritance: IDynamicMetaObjectProvider
Exemplo n.º 1
0
 /// <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));
 }