Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

441 lines
24 KiB
C#

using System;
using System.Globalization;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents a 64-bit signed integer.</summary>
// Token: 0x02000116 RID: 278
[Token(Token = "0x2000116")]
[ComVisible(true)]
[Serializable]
public struct Int64 : IComparable, IFormattable, IConvertible, IComparable<long>, IEquatable<long>
{
/// <summary>Compares this instance to a specified object and returns an indication of their relative values.</summary>
/// <param name="value">An object to compare, or <see langword="null" />.</param>
/// <returns>A signed number indicating the relative values of this instance and <paramref name="value" />.
/// Return Value
///
/// Description
///
/// Less than zero
///
/// This instance is less than <paramref name="value" />.
///
/// Zero
///
/// This instance is equal to <paramref name="value" />.
///
/// Greater than zero
///
/// This instance is greater than <paramref name="value" />.
///
/// -or-
///
/// <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="value" /> is not an <see cref="T:System.Int64" />.</exception>
// Token: 0x06000A20 RID: 2592 RVA: 0x00009048 File Offset: 0x00007248
[Token(Token = "0x6000A20")]
[Address(RVA = "0xCBFD90", Offset = "0xCBED90", VA = "0x180CBFD90", Slot = "4")]
public int CompareTo(object value)
{
return 0;
}
/// <summary>Compares this instance to a specified 64-bit signed integer and returns an indication of their relative values.</summary>
/// <param name="value">An integer to compare.</param>
/// <returns>A signed number indicating the relative values of this instance and <paramref name="value" />.
/// Return Value
///
/// Description
///
/// Less than zero
///
/// This instance is less than <paramref name="value" />.
///
/// Zero
///
/// This instance is equal to <paramref name="value" />.
///
/// Greater than zero
///
/// This instance is greater than <paramref name="value" />.</returns>
// Token: 0x06000A21 RID: 2593 RVA: 0x00009060 File Offset: 0x00007260
[Token(Token = "0x6000A21")]
[Address(RVA = "0xCBFD70", Offset = "0xCBED70", VA = "0x180CBFD70", Slot = "23")]
public int CompareTo(long value)
{
return 0;
}
/// <summary>Returns a value indicating whether this instance is equal to a specified object.</summary>
/// <param name="obj">An object to compare with this instance.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> is an instance of an <see cref="T:System.Int64" /> and equals the value of this instance; otherwise, <see langword="false" />.</returns>
// Token: 0x06000A22 RID: 2594 RVA: 0x00009078 File Offset: 0x00007278
[Token(Token = "0x6000A22")]
[Address(RVA = "0xCBFE70", Offset = "0xCBEE70", VA = "0x180CBFE70", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns a value indicating whether this instance is equal to a specified <see cref="T:System.Int64" /> value.</summary>
/// <param name="obj">An <see cref="T:System.Int64" /> value to compare to this instance.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> has the same value as this instance; otherwise, <see langword="false" />.</returns>
// Token: 0x06000A23 RID: 2595 RVA: 0x00009090 File Offset: 0x00007290
[Token(Token = "0x6000A23")]
[Address(RVA = "0x593190", Offset = "0x592190", VA = "0x180593190", Slot = "24")]
public bool Equals(long obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x06000A24 RID: 2596 RVA: 0x000090A8 File Offset: 0x000072A8
[Token(Token = "0x6000A24")]
[Address(RVA = "0xCBFF00", Offset = "0xCBEF00", VA = "0x180CBFF00", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Converts the numeric value of this instance to its equivalent string representation.</summary>
/// <returns>The string representation of the value of this instance, consisting of a minus sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes.</returns>
// Token: 0x06000A25 RID: 2597 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000A25")]
[Address(RVA = "0xCC0620", Offset = "0xCBF620", VA = "0x180CC0620", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information.</summary>
/// <param name="provider">An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information.</param>
/// <returns>The string representation of the value of this instance as specified by <paramref name="provider" />.</returns>
// Token: 0x06000A26 RID: 2598 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000A26")]
[Address(RVA = "0xCC05B0", Offset = "0xCBF5B0", VA = "0x180CC05B0", Slot = "21")]
public string ToString(IFormatProvider provider)
{
return null;
}
/// <summary>Converts the numeric value of this instance to its equivalent string representation, using the specified format.</summary>
/// <param name="format">A numeric format string.</param>
/// <returns>The string representation of the value of this instance as specified by <paramref name="format" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="format" /> is invalid or not supported.</exception>
// Token: 0x06000A27 RID: 2599 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000A27")]
[Address(RVA = "0xCC05E0", Offset = "0xCBF5E0", VA = "0x180CC05E0")]
public string ToString(string format)
{
return null;
}
/// <summary>Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information.</summary>
/// <param name="format">A numeric format string.</param>
/// <param name="provider">An object that supplies culture-specific formatting information about this instance.</param>
/// <returns>The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="format" /> is invalid or not supported.</exception>
// Token: 0x06000A28 RID: 2600 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000A28")]
[Address(RVA = "0xCC0650", Offset = "0xCBF650", VA = "0x180CC0650", Slot = "5")]
public string ToString(string format, IFormatProvider provider)
{
return null;
}
/// <summary>Converts the string representation of a number to its 64-bit signed integer equivalent.</summary>
/// <param name="s">A string containing a number to convert.</param>
/// <returns>A 64-bit signed integer equivalent to the number contained in <paramref name="s" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
// Token: 0x06000A29 RID: 2601 RVA: 0x000090C0 File Offset: 0x000072C0
[Token(Token = "0x6000A29")]
[Address(RVA = "0xCBFF90", Offset = "0xCBEF90", VA = "0x180CBFF90")]
public static long Parse(string s)
{
return 0L;
}
/// <summary>Converts the string representation of a number in a specified culture-specific format to its 64-bit signed integer equivalent.</summary>
/// <param name="s">A string containing a number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param>
/// <returns>A 64-bit signed integer equivalent to the number specified in <paramref name="s" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
// Token: 0x06000A2A RID: 2602 RVA: 0x000090D8 File Offset: 0x000072D8
[Token(Token = "0x6000A2A")]
[Address(RVA = "0xCBFF60", Offset = "0xCBEF60", VA = "0x180CBFF60")]
public static long Parse(string s, IFormatProvider provider)
{
return 0L;
}
/// <summary>Converts the string representation of a number in a specified style and culture-specific format to its 64-bit signed integer equivalent.</summary>
/// <param name="s">A string containing a number to convert.</param>
/// <param name="style">A bitwise combination of enumeration values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />.</param>
/// <param name="provider">An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />.</param>
/// <returns>A 64-bit signed integer equivalent to the number specified in <paramref name="s" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value.
/// -or-
/// <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in a format compliant with <paramref name="style" />.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.
/// -or-
/// <paramref name="style" /> supports fractional digits, but <paramref name="s" /> includes non-zero fractional digits.</exception>
// Token: 0x06000A2B RID: 2603 RVA: 0x000090F0 File Offset: 0x000072F0
[Token(Token = "0x6000A2B")]
[Address(RVA = "0xCBFF10", Offset = "0xCBEF10", VA = "0x180CBFF10")]
public static long Parse(string s, NumberStyles style, IFormatProvider provider)
{
return 0L;
}
/// <summary>Converts the string representation of a number to its 64-bit signed integer equivalent. A return value indicates whether the conversion succeeded or failed.</summary>
/// <param name="s">A string containing a number to convert.</param>
/// <param name="result">When this method returns, contains the 64-bit signed integer value equivalent of the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is <see langword="null" /> or <see cref="F:System.String.Empty" />, is not of the correct format, or represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. This parameter is passed uninitialized; any value originally supplied in <paramref name="result" /> will be overwritten.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="s" /> was converted successfully; otherwise, <see langword="false" />.</returns>
// Token: 0x06000A2C RID: 2604 RVA: 0x00009108 File Offset: 0x00007308
[Token(Token = "0x6000A2C")]
[Address(RVA = "0xCC0690", Offset = "0xCBF690", VA = "0x180CC0690")]
public static bool TryParse(string s, out long result)
{
return default(bool);
}
/// <summary>Converts the string representation of a number in a specified style and culture-specific format to its 64-bit signed integer equivalent. A return value indicates whether the conversion succeeded or failed.</summary>
/// <param name="s">A string containing a number to convert. The string is interpreted using the style specified by <paramref name="style" />.</param>
/// <param name="style">A bitwise combination of enumeration values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />.</param>
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param>
/// <param name="result">When this method returns, contains the 64-bit signed integer value equivalent of the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is <see langword="null" /> or <see cref="F:System.String.Empty" />, is not in a format compliant with <paramref name="style" />, or represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. This parameter is passed uninitialized; any value originally supplied in <paramref name="result" /> will be overwritten.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="s" /> was converted successfully; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value.
/// -or-
/// <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values.</exception>
// Token: 0x06000A2D RID: 2605 RVA: 0x00009120 File Offset: 0x00007320
[Token(Token = "0x6000A2D")]
[Address(RVA = "0xCC06D0", Offset = "0xCBF6D0", VA = "0x180CC06D0")]
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out long result)
{
return default(bool);
}
/// <summary>Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Int64" />.</summary>
/// <returns>The enumerated constant, <see cref="F:System.TypeCode.Int64" />.</returns>
// Token: 0x06000A2E RID: 2606 RVA: 0x00009138 File Offset: 0x00007338
[Token(Token = "0x6000A2E")]
[Address(RVA = "0x937A80", Offset = "0x936A80", VA = "0x180937A80", Slot = "6")]
public TypeCode GetTypeCode()
{
return TypeCode.Empty;
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>
/// <see langword="true" /> if the value of the current instance is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x06000A2F RID: 2607 RVA: 0x00009150 File Offset: 0x00007350
[Token(Token = "0x6000A2F")]
[Address(RVA = "0xCBFFC0", Offset = "0xCBEFC0", VA = "0x180CBFFC0", Slot = "7")]
bool IConvertible.ToBoolean(IFormatProvider provider)
{
return default(bool);
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, converted to a <see cref="T:System.Char" />.</returns>
// Token: 0x06000A30 RID: 2608 RVA: 0x00009168 File Offset: 0x00007368
[Token(Token = "0x6000A30")]
[Address(RVA = "0xCC0080", Offset = "0xCBF080", VA = "0x180CC0080", Slot = "8")]
char IConvertible.ToChar(IFormatProvider provider)
{
return '\0';
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, converted to an <see cref="T:System.SByte" />.</returns>
// Token: 0x06000A31 RID: 2609 RVA: 0x00009180 File Offset: 0x00007380
[Token(Token = "0x6000A31")]
[Address(RVA = "0xCC0340", Offset = "0xCBF340", VA = "0x180CC0340", Slot = "9")]
sbyte IConvertible.ToSByte(IFormatProvider provider)
{
return 0;
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, converted to a <see cref="T:System.Byte" />.</returns>
// Token: 0x06000A32 RID: 2610 RVA: 0x00009198 File Offset: 0x00007398
[Token(Token = "0x6000A32")]
[Address(RVA = "0xCC0020", Offset = "0xCBF020", VA = "0x180CC0020", Slot = "10")]
byte IConvertible.ToByte(IFormatProvider provider)
{
return 0;
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, converted to an <see cref="T:System.Int16" />.</returns>
// Token: 0x06000A33 RID: 2611 RVA: 0x000091B0 File Offset: 0x000073B0
[Token(Token = "0x6000A33")]
[Address(RVA = "0xCC0280", Offset = "0xCBF280", VA = "0x180CC0280", Slot = "11")]
short IConvertible.ToInt16(IFormatProvider provider)
{
return 0;
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, converted to a <see cref="T:System.UInt16" />.</returns>
// Token: 0x06000A34 RID: 2612 RVA: 0x000091C8 File Offset: 0x000073C8
[Token(Token = "0x6000A34")]
[Address(RVA = "0xCC0490", Offset = "0xCBF490", VA = "0x180CC0490", Slot = "12")]
ushort IConvertible.ToUInt16(IFormatProvider provider)
{
return 0;
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, converted to an <see cref="T:System.Int32" />.</returns>
// Token: 0x06000A35 RID: 2613 RVA: 0x000091E0 File Offset: 0x000073E0
[Token(Token = "0x6000A35")]
[Address(RVA = "0xCC02E0", Offset = "0xCBF2E0", VA = "0x180CC02E0", Slot = "13")]
int IConvertible.ToInt32(IFormatProvider provider)
{
return 0;
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, converted to a <see cref="T:System.UInt32" />.</returns>
// Token: 0x06000A36 RID: 2614 RVA: 0x000091F8 File Offset: 0x000073F8
[Token(Token = "0x6000A36")]
[Address(RVA = "0xCC04F0", Offset = "0xCBF4F0", VA = "0x180CC04F0", Slot = "14")]
uint IConvertible.ToUInt32(IFormatProvider provider)
{
return 0U;
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, unchanged.</returns>
// Token: 0x06000A37 RID: 2615 RVA: 0x00009210 File Offset: 0x00007410
[Token(Token = "0x6000A37")]
[Address(RVA = "0x63E630", Offset = "0x63D630", VA = "0x18063E630", Slot = "15")]
long IConvertible.ToInt64(IFormatProvider provider)
{
return 0L;
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, converted to a <see cref="T:System.UInt64" />.</returns>
// Token: 0x06000A38 RID: 2616 RVA: 0x00009228 File Offset: 0x00007428
[Token(Token = "0x6000A38")]
[Address(RVA = "0xCC0550", Offset = "0xCBF550", VA = "0x180CC0550", Slot = "16")]
ulong IConvertible.ToUInt64(IFormatProvider provider)
{
return 0UL;
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, converted to a <see cref="T:System.Single" />.</returns>
// Token: 0x06000A39 RID: 2617 RVA: 0x00009240 File Offset: 0x00007440
[Token(Token = "0x6000A39")]
[Address(RVA = "0xCC03A0", Offset = "0xCBF3A0", VA = "0x180CC03A0", Slot = "17")]
float IConvertible.ToSingle(IFormatProvider provider)
{
return 0f;
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, converted to a <see cref="T:System.Double" />.</returns>
// Token: 0x06000A3A RID: 2618 RVA: 0x00009258 File Offset: 0x00007458
[Token(Token = "0x6000A3A")]
[Address(RVA = "0xCC0220", Offset = "0xCBF220", VA = "0x180CC0220", Slot = "18")]
double IConvertible.ToDouble(IFormatProvider provider)
{
return 0.0;
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>The value of the current instance, converted to a <see cref="T:System.Decimal" />.</returns>
// Token: 0x06000A3B RID: 2619 RVA: 0x00009270 File Offset: 0x00007470
[Token(Token = "0x6000A3B")]
[Address(RVA = "0xCC01B0", Offset = "0xCBF1B0", VA = "0x180CC01B0", Slot = "19")]
decimal IConvertible.ToDecimal(IFormatProvider provider)
{
return 0m;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">This parameter is ignored.</param>
/// <returns>This conversion is not supported. No value is returned.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x06000A3C RID: 2620 RVA: 0x00009288 File Offset: 0x00007488
[Token(Token = "0x6000A3C")]
[Address(RVA = "0xCC00E0", Offset = "0xCBF0E0", VA = "0x180CC00E0", Slot = "20")]
DateTime IConvertible.ToDateTime(IFormatProvider provider)
{
return default(DateTime);
}
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />.</summary>
/// <param name="type">The type to which to convert this <see cref="T:System.Int64" /> value.</param>
/// <param name="provider">An <see cref="T:System.IFormatProvider" /> implementation that provides information about the format of the returned value.</param>
/// <returns>The value of the current instance, converted to <paramref name="type" />.</returns>
// Token: 0x06000A3D RID: 2621 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000A3D")]
[Address(RVA = "0xCC0400", Offset = "0xCBF400", VA = "0x180CC0400", Slot = "22")]
object IConvertible.ToType(Type type, IFormatProvider provider)
{
return null;
}
// Token: 0x0400045F RID: 1119
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x400045F")]
internal long m_value;
/// <summary>Represents the largest possible value of an <see langword="Int64" />. This field is constant.</summary>
// Token: 0x04000460 RID: 1120
[Token(Token = "0x4000460")]
public const long MaxValue = 9223372036854775807L;
/// <summary>Represents the smallest possible value of an <see langword="Int64" />. This field is constant.</summary>
// Token: 0x04000461 RID: 1121
[Token(Token = "0x4000461")]
public const long MinValue = -9223372036854775808L;
}
}