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

40 lines
1.5 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when an attempt is made to access an element of an array or collection with an index that is outside its bounds.</summary>
// Token: 0x0200010B RID: 267
[Token(Token = "0x200010B")]
[ComVisible(true)]
[Serializable]
public sealed class IndexOutOfRangeException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.IndexOutOfRangeException" /> class.</summary>
// Token: 0x060009B3 RID: 2483 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009B3")]
[Address(RVA = "0x25F9D50", Offset = "0x25F8B50", VA = "0x1825F9D50")]
public IndexOutOfRangeException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.IndexOutOfRangeException" /> class with a specified error message.</summary>
/// <param name="message">The message that describes the error.</param>
// Token: 0x060009B4 RID: 2484 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009B4")]
[Address(RVA = "0x25F9DB0", Offset = "0x25F8BB0", VA = "0x1825F9DB0")]
public IndexOutOfRangeException(string message)
{
}
// Token: 0x060009B5 RID: 2485 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009B5")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
internal IndexOutOfRangeException(SerializationInfo info, StreamingContext context)
{
}
}
}