| 123456789101112131415161718192021 |
- //
- // System.Runtime.InteropServices.ComImportAttribute.cs
- //
- // Name: Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc.
- //
- using System;
- namespace System.Runtime.InteropServices {
- [AttributeUsage (AttributeTargets.Class |
- AttributeTargets.Interface)]
- public sealed class ComImportAttribute : Attribute
- {
- public ComImportAttribute ()
- {
- }
- }
- }
|