| 1234567891011121314151617181920212223242526 |
- //
- // System.Runtime.InteropServices.CoClassAttribute.cs
- //
- // Name: Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc.
- //
- namespace System.Runtime.InteropServices {
- [AttributeUsage (AttributeTargets.Interface)]
- public sealed class CoClassAttribute : Attribute
- {
- Type klass;
-
- public CoClassAttribute (Type coClass)
- {
- klass = coClass;
- }
- public Type CoClass {
- get { return klass; }
- }
- }
- }
|