m
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System
|
||||
{
|
||||
/// <summary>The exception that is thrown when an array with the wrong number of dimensions is passed to a method.</summary>
|
||||
// Token: 0x02000134 RID: 308
|
||||
[Token(Token = "0x2000134")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public class RankException : SystemException
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.RankException" /> class.</summary>
|
||||
// Token: 0x06000B08 RID: 2824 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000B08")]
|
||||
[Address(RVA = "0x2D7C2D0", Offset = "0x2D7B2D0", VA = "0x182D7C2D0")]
|
||||
public RankException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.RankException" /> class with a specified error message.</summary>
|
||||
/// <param name="message">A <see cref="T:System.String" /> that describes the error.</param>
|
||||
// Token: 0x06000B09 RID: 2825 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000B09")]
|
||||
[Address(RVA = "0x2D7C2A0", Offset = "0x2D7B2A0", VA = "0x182D7C2A0")]
|
||||
public RankException(string message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.RankException" /> 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: 0x06000B0A RID: 2826 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000B0A")]
|
||||
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
||||
protected RankException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user