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 for invalid casting or explicit conversion.</summary>
// Token: 0x02000110 RID: 272
[Token(Token = "0x2000110")]
[ComVisible(true)]
[Serializable]
public class InvalidCastException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidCastException" /> class.</summary>
// Token: 0x06000A14 RID: 2580 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A14")]
[Address(RVA = "0x25FC110", Offset = "0x25FAF10", VA = "0x1825FC110")]
public InvalidCastException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidCastException" /> class with a specified error message.</summary>
/// <param name="message">The message that describes the error.</param>
// Token: 0x06000A15 RID: 2581 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A15")]
[Address(RVA = "0x25FC0E0", Offset = "0x25FAEE0", VA = "0x1825FC0E0")]
public InvalidCastException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidCastException" /> 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: 0x06000A16 RID: 2582 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A16")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected InvalidCastException(SerializationInfo info, StreamingContext context)
{
}
}
}