| 12345678910111213141516171819202122232425 |
- //
- // System.Runtime.InteropServices.ComDefaultInterfaceAttribute
- //
- // Author:
- // Kazuki Oikawa ([email protected])
- //
- using System;
- namespace System.Runtime.InteropServices
- {
- [AttributeUsage (AttributeTargets.Class, Inherited = false)]
- [ComVisible (true)]
- public sealed class ComDefaultInterfaceAttribute : Attribute
- {
- Type _type;
- public ComDefaultInterfaceAttribute (Type defaultInterface)
- {
- _type = defaultInterface;
- }
- public Type Value { get { return _type; }}
- }
- }
|