This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,39 @@
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: 0x02000112 RID: 274
[Token(Token = "0x2000112")]
[ComVisible(true)]
[Serializable]
public sealed class IndexOutOfRangeException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.IndexOutOfRangeException" /> class.</summary>
// Token: 0x060009DD RID: 2525 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009DD")]
[Address(RVA = "0xCBE6B0", Offset = "0xCBD6B0", VA = "0x180CBE6B0")]
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: 0x060009DE RID: 2526 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009DE")]
[Address(RVA = "0xCBE710", Offset = "0xCBD710", VA = "0x180CBE710")]
public IndexOutOfRangeException(string message)
{
}
// Token: 0x060009DF RID: 2527 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009DF")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
internal IndexOutOfRangeException(SerializationInfo info, StreamingContext context)
{
}
}
}