CoClassAttribute.cs 418 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Runtime.InteropServices.CoClassAttribute.cs
  3. //
  4. // Name: Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. //
  8. namespace System.Runtime.InteropServices {
  9. [AttributeUsage (AttributeTargets.Interface)]
  10. public sealed class CoClassAttribute : Attribute
  11. {
  12. Type klass;
  13. public CoClassAttribute (Type coClass)
  14. {
  15. klass = coClass;
  16. }
  17. public Type CoClass {
  18. get { return klass; }
  19. }
  20. }
  21. }