Files
2026-04-10 22:50:51 +02:00

43 lines
1.7 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when there is not enough memory to continue the execution of a program.</summary>
// Token: 0x02000127 RID: 295
[Token(Token = "0x2000127")]
[ComVisible(true)]
[Serializable]
public class OutOfMemoryException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.OutOfMemoryException" /> class.</summary>
// Token: 0x06000AB9 RID: 2745 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AB9")]
[Address(RVA = "0x2A13FE0", Offset = "0x2A12DE0", VA = "0x182A13FE0")]
public OutOfMemoryException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.OutOfMemoryException" /> class with a specified error message.</summary>
/// <param name="message">The message that describes the error.</param>
// Token: 0x06000ABA RID: 2746 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000ABA")]
[Address(RVA = "0x2A14050", Offset = "0x2A12E50", VA = "0x182A14050")]
public OutOfMemoryException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.OutOfMemoryException" /> class with serialized data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">The contextual information about the source or destination.</param>
// Token: 0x06000ABB RID: 2747 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000ABB")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected OutOfMemoryException(SerializationInfo info, StreamingContext context)
{
}
}
}