Files
2026-06-04 11:42:34 +02:00

15 lines
492 B
C#

using System;
using System.Runtime.InteropServices;
namespace System
{
/// <summary>Represents the callback method to invoke when the application domain is initialized.</summary>
/// <param name="args">An array of strings to pass as arguments to the callback method.</param>
/// <filterpriority>2</filterpriority>
// Token: 0x020006E5 RID: 1765
// (Invoke) Token: 0x0600421C RID: 16924
[ComVisible(true)]
[Serializable]
public delegate void AppDomainInitializer(string[] args);
}