Files
Dec2017-Script-Dump/mscorlib/System/Runtime/InteropServices/ComRegisterFunctionAttribute.cs
T
2026-06-04 11:42:34 +02:00

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
{
}
}