Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

28 lines
884 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents the base class for classes that contain event data, and provides a value to use for events that do not include event data.</summary>
// Token: 0x020000E9 RID: 233
[Token(Token = "0x20000E9")]
[ComVisible(true)]
[Serializable]
public class EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.EventArgs" /> class.</summary>
// Token: 0x060008C6 RID: 2246 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008C6")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
public EventArgs()
{
}
/// <summary>Provides a value to use with events that do not have event data.</summary>
// Token: 0x0400035B RID: 859
[Token(Token = "0x400035B")]
public static readonly EventArgs Empty;
}
}