13 lines
426 B
C#
13 lines
426 B
C#
using System;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Specifies the method to call when you register an assembly for use from COM; this enables the execution of user-written code during the registration process.</summary>
|
|
// Token: 0x02000302 RID: 770
|
|
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
|
|
[ComVisible(true)]
|
|
public sealed class ComRegisterFunctionAttribute : Attribute
|
|
{
|
|
}
|
|
}
|