using System;
using System.Globalization;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// Represents a 64-bit signed integer.
// Token: 0x0200010F RID: 271
[Token(Token = "0x200010F")]
[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: 0x060009F6 RID: 2550 RVA: 0x00008E38 File Offset: 0x00007038
[Token(Token = "0x60009F6")]
[Address(RVA = "0x25FB550", Offset = "0x25FA350", VA = "0x1825FB550", 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: 0x060009F7 RID: 2551 RVA: 0x00008E50 File Offset: 0x00007050
[Token(Token = "0x60009F7")]
[Address(RVA = "0x25FB530", Offset = "0x25FA330", VA = "0x1825FB530", 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: 0x060009F8 RID: 2552 RVA: 0x00008E68 File Offset: 0x00007068
[Token(Token = "0x60009F8")]
[Address(RVA = "0x25FB630", Offset = "0x25FA430", VA = "0x1825FB630", 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: 0x060009F9 RID: 2553 RVA: 0x00008E80 File Offset: 0x00007080
[Token(Token = "0x60009F9")]
[Address(RVA = "0x164AF50", Offset = "0x1649D50", VA = "0x18164AF50", 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: 0x060009FA RID: 2554 RVA: 0x00008E98 File Offset: 0x00007098
[Token(Token = "0x60009FA")]
[Address(RVA = "0x1DAB930", Offset = "0x1DAA730", VA = "0x181DAB930", 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: 0x060009FB RID: 2555 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60009FB")]
[Address(RVA = "0x25FBDD0", Offset = "0x25FABD0", VA = "0x1825FBDD0", 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: 0x060009FC RID: 2556 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60009FC")]
[Address(RVA = "0x25FBD60", Offset = "0x25FAB60", VA = "0x1825FBD60", 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: 0x060009FD RID: 2557 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60009FD")]
[Address(RVA = "0x25FBD90", Offset = "0x25FAB90", VA = "0x1825FBD90")]
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: 0x060009FE RID: 2558 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60009FE")]
[Address(RVA = "0x25FBE00", Offset = "0x25FAC00", VA = "0x1825FBE00", 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: 0x060009FF RID: 2559 RVA: 0x00008EB0 File Offset: 0x000070B0
[Token(Token = "0x60009FF")]
[Address(RVA = "0x25FB740", Offset = "0x25FA540", VA = "0x1825FB740")]
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: 0x06000A00 RID: 2560 RVA: 0x00008EC8 File Offset: 0x000070C8
[Token(Token = "0x6000A00")]
[Address(RVA = "0x25FB710", Offset = "0x25FA510", VA = "0x1825FB710")]
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: 0x06000A01 RID: 2561 RVA: 0x00008EE0 File Offset: 0x000070E0
[Token(Token = "0x6000A01")]
[Address(RVA = "0x25FB6C0", Offset = "0x25FA4C0", VA = "0x1825FB6C0")]
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: 0x06000A02 RID: 2562 RVA: 0x00008EF8 File Offset: 0x000070F8
[Token(Token = "0x6000A02")]
[Address(RVA = "0x25FBE40", Offset = "0x25FAC40", VA = "0x1825FBE40")]
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: 0x06000A03 RID: 2563 RVA: 0x00008F10 File Offset: 0x00007110
[Token(Token = "0x6000A03")]
[Address(RVA = "0x25FBE80", Offset = "0x25FAC80", VA = "0x1825FBE80")]
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: 0x06000A04 RID: 2564 RVA: 0x00008F28 File Offset: 0x00007128
[Token(Token = "0x6000A04")]
[Address(RVA = "0x466830", Offset = "0x465630", VA = "0x180466830", 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: 0x06000A05 RID: 2565 RVA: 0x00008F40 File Offset: 0x00007140
[Token(Token = "0x6000A05")]
[Address(RVA = "0x25FB770", Offset = "0x25FA570", VA = "0x1825FB770", 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: 0x06000A06 RID: 2566 RVA: 0x00008F58 File Offset: 0x00007158
[Token(Token = "0x6000A06")]
[Address(RVA = "0x25FB830", Offset = "0x25FA630", VA = "0x1825FB830", 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: 0x06000A07 RID: 2567 RVA: 0x00008F70 File Offset: 0x00007170
[Token(Token = "0x6000A07")]
[Address(RVA = "0x25FBAF0", Offset = "0x25FA8F0", VA = "0x1825FBAF0", 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: 0x06000A08 RID: 2568 RVA: 0x00008F88 File Offset: 0x00007188
[Token(Token = "0x6000A08")]
[Address(RVA = "0x25FB7D0", Offset = "0x25FA5D0", VA = "0x1825FB7D0", 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: 0x06000A09 RID: 2569 RVA: 0x00008FA0 File Offset: 0x000071A0
[Token(Token = "0x6000A09")]
[Address(RVA = "0x25FBA30", Offset = "0x25FA830", VA = "0x1825FBA30", 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: 0x06000A0A RID: 2570 RVA: 0x00008FB8 File Offset: 0x000071B8
[Token(Token = "0x6000A0A")]
[Address(RVA = "0x25FBC40", Offset = "0x25FAA40", VA = "0x1825FBC40", 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: 0x06000A0B RID: 2571 RVA: 0x00008FD0 File Offset: 0x000071D0
[Token(Token = "0x6000A0B")]
[Address(RVA = "0x25FBA90", Offset = "0x25FA890", VA = "0x1825FBA90", 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: 0x06000A0C RID: 2572 RVA: 0x00008FE8 File Offset: 0x000071E8
[Token(Token = "0x6000A0C")]
[Address(RVA = "0x25FBCA0", Offset = "0x25FAAA0", VA = "0x1825FBCA0", 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: 0x06000A0D RID: 2573 RVA: 0x00009000 File Offset: 0x00007200
[Token(Token = "0x6000A0D")]
[Address(RVA = "0x41D090", Offset = "0x41BE90", VA = "0x18041D090", 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: 0x06000A0E RID: 2574 RVA: 0x00009018 File Offset: 0x00007218
[Token(Token = "0x6000A0E")]
[Address(RVA = "0x25FBD00", Offset = "0x25FAB00", VA = "0x1825FBD00", 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: 0x06000A0F RID: 2575 RVA: 0x00009030 File Offset: 0x00007230
[Token(Token = "0x6000A0F")]
[Address(RVA = "0x25FBB50", Offset = "0x25FA950", VA = "0x1825FBB50", 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: 0x06000A10 RID: 2576 RVA: 0x00009048 File Offset: 0x00007248
[Token(Token = "0x6000A10")]
[Address(RVA = "0x25FB9D0", Offset = "0x25FA7D0", VA = "0x1825FB9D0", 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: 0x06000A11 RID: 2577 RVA: 0x00009060 File Offset: 0x00007260
[Token(Token = "0x6000A11")]
[Address(RVA = "0x25FB960", Offset = "0x25FA760", VA = "0x1825FB960", 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: 0x06000A12 RID: 2578 RVA: 0x00009078 File Offset: 0x00007278
[Token(Token = "0x6000A12")]
[Address(RVA = "0x25FB890", Offset = "0x25FA690", VA = "0x1825FB890", 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: 0x06000A13 RID: 2579 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000A13")]
[Address(RVA = "0x25FBBB0", Offset = "0x25FA9B0", VA = "0x1825FBBB0", Slot = "22")]
object IConvertible.ToType(Type type, IFormatProvider provider)
{
return null;
}
// Token: 0x04000455 RID: 1109
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000455")]
internal long m_value;
/// Represents the largest possible value of an . This field is constant.
// Token: 0x04000456 RID: 1110
[Token(Token = "0x4000456")]
public const long MaxValue = 9223372036854775807L;
/// Represents the smallest possible value of an . This field is constant.
// Token: 0x04000457 RID: 1111
[Token(Token = "0x4000457")]
public const long MinValue = -9223372036854775808L;
}
}