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

34 lines
1.3 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 an attempt to divide an integral or <see cref="T:System.Decimal" /> value by zero.</summary>
// Token: 0x020000D8 RID: 216
[Token(Token = "0x20000D8")]
[ComVisible(true)]
[Serializable]
public class DivideByZeroException : ArithmeticException
{
/// <summary>Initializes a new instance of the <see cref="T:System.DivideByZeroException" /> class.</summary>
// Token: 0x06000822 RID: 2082 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000822")]
[Address(RVA = "0x1E8B110", Offset = "0x1E89F10", VA = "0x181E8B110")]
public DivideByZeroException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DivideByZeroException" /> 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: 0x06000823 RID: 2083 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000823")]
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
protected DivideByZeroException(SerializationInfo info, StreamingContext context)
{
}
}
}