using System;
using System.Globalization;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// Represents a 64-bit signed integer.
// Token: 0x02000116 RID: 278
[Token(Token = "0x2000116")]
[ComVisible(true)]
[Serializable]
public struct Int64 : IComparable, IFormattable, IConvertible, IComparable, IEquatable
{
/// Compares this instance to a specified object and returns an indication of their relative values.
/// An object to compare, or .
/// A signed number indicating the relative values of this instance and .
/// Return Value
///
/// Description
///
/// Less than zero
///
/// This instance is less than .
///
/// Zero
///
/// This instance is equal to .
///
/// Greater than zero
///
/// This instance is greater than .
///
/// -or-
///
/// is .
///
/// is not an .
// 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;
}
/// Compares this instance to a specified 64-bit signed integer and returns an indication of their relative values.
/// An integer to compare.
/// A signed number indicating the relative values of this instance and .
/// Return Value
///
/// Description
///
/// Less than zero
///
/// This instance is less than .
///
/// Zero
///
/// This instance is equal to .
///
/// Greater than zero
///
/// This instance is greater than .
// 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;
}
/// Returns a value indicating whether this instance is equal to a specified object.
/// An object to compare with this instance.
///
/// if is an instance of an and equals the value of this instance; otherwise, .
// 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);
}
/// Returns a value indicating whether this instance is equal to a specified value.
/// An value to compare to this instance.
///
/// if has the same value as this instance; otherwise, .
// 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);
}
/// Returns the hash code for this instance.
/// A 32-bit signed integer hash code.
// 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;
}
/// Converts the numeric value of this instance to its equivalent string representation.
/// 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.
// 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;
}
/// Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information.
/// An that supplies culture-specific formatting information.
/// The string representation of the value of this instance as specified by .
// 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;
}
/// Converts the numeric value of this instance to its equivalent string representation, using the specified format.
/// A numeric format string.
/// The string representation of the value of this instance as specified by .
///
/// is invalid or not supported.
// 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;
}
/// Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information.
/// A numeric format string.
/// An object that supplies culture-specific formatting information about this instance.
/// The string representation of the value of this instance as specified by and .
///
/// is invalid or not supported.
// 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;
}
/// Converts the string representation of a number to its 64-bit signed integer equivalent.
/// A string containing a number to convert.
/// A 64-bit signed integer equivalent to the number contained in .
///
/// is .
///
/// is not in the correct format.
///
/// represents a number less than or greater than .
// 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;
}
/// Converts the string representation of a number in a specified culture-specific format to its 64-bit signed integer equivalent.
/// A string containing a number to convert.
/// An object that supplies culture-specific formatting information about .
/// A 64-bit signed integer equivalent to the number specified in .
///
/// is .
///
/// is not in the correct format.
///
/// represents a number less than or greater than .
// 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;
}
/// Converts the string representation of a number in a specified style and culture-specific format to its 64-bit signed integer equivalent.
/// A string containing a number to convert.
/// A bitwise combination of enumeration values that indicates the style elements that can be present in . A typical value to specify is .
/// An that supplies culture-specific formatting information about .
/// A 64-bit signed integer equivalent to the number specified in .
///
/// is .
///
/// is not a value.
/// -or-
/// is not a combination of and values.
///
/// is not in a format compliant with .
///
/// represents a number less than or greater than .
/// -or-
/// supports fractional digits, but includes non-zero fractional digits.
// 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;
}
/// Converts the string representation of a number to its 64-bit signed integer equivalent. A return value indicates whether the conversion succeeded or failed.
/// A string containing a number to convert.
/// When this method returns, contains the 64-bit signed integer value equivalent of the number contained in , if the conversion succeeded, or zero if the conversion failed. The conversion fails if the parameter is or , is not of the correct format, or represents a number less than or greater than . This parameter is passed uninitialized; any value originally supplied in will be overwritten.
///
/// if was converted successfully; otherwise, .
// 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);
}
/// 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.
/// A string containing a number to convert. The string is interpreted using the style specified by .
/// A bitwise combination of enumeration values that indicates the style elements that can be present in . A typical value to specify is .
/// An object that supplies culture-specific formatting information about .
/// When this method returns, contains the 64-bit signed integer value equivalent of the number contained in , if the conversion succeeded, or zero if the conversion failed. The conversion fails if the parameter is or , is not in a format compliant with , or represents a number less than or greater than . This parameter is passed uninitialized; any value originally supplied in will be overwritten.
///
/// if was converted successfully; otherwise, .
///
/// is not a value.
/// -or-
/// is not a combination of and values.
// 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);
}
/// Returns the for value type .
/// The enumerated constant, .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
///
/// if the value of the current instance is not zero; otherwise, .
// 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);
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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';
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to an .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to an .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to an .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, unchanged.
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// This conversion is not supported. Attempting to use this method throws an .
/// This parameter is ignored.
/// This conversion is not supported. No value is returned.
/// In all cases.
// 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);
}
/// For a description of this member, see .
/// The type to which to convert this value.
/// An implementation that provides information about the format of the returned value.
/// The value of the current instance, converted to .
// 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;
/// Represents the largest possible value of an . This field is constant.
// Token: 0x04000460 RID: 1120
[Token(Token = "0x4000460")]
public const long MaxValue = 9223372036854775807L;
/// Represents the smallest possible value of an . This field is constant.
// Token: 0x04000461 RID: 1121
[Token(Token = "0x4000461")]
public const long MinValue = -9223372036854775808L;
}
}