using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// 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. // Token: 0x0200010B RID: 267 [Token(Token = "0x200010B")] [ComVisible(true)] [Serializable] public sealed class IndexOutOfRangeException : SystemException { /// Initializes a new instance of the class. // Token: 0x060009B3 RID: 2483 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60009B3")] [Address(RVA = "0x25F9D50", Offset = "0x25F8B50", VA = "0x1825F9D50")] public IndexOutOfRangeException() { } /// Initializes a new instance of the class with a specified error message. /// The message that describes the error. // 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) { } } }