using System; using System.Globalization; using Cpp2IlInjected; namespace System.Numerics { /// Represents an arbitrarily large signed integer. // Token: 0x02000003 RID: 3 [Token(Token = "0x2000003")] [Serializable] public struct BigInteger : IFormattable, IComparable, IComparable, IEquatable { /// Initializes a new instance of the structure using a 32-bit signed integer value. /// A 32-bit signed integer. // Token: 0x06000002 RID: 2 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000002")] [Address(RVA = "0x117BF50", Offset = "0x117AF50", VA = "0x18117BF50")] public BigInteger(int value) { } /// Initializes a new instance of the structure using an unsigned 32-bit integer value. /// An unsigned 32-bit integer value. // Token: 0x06000003 RID: 3 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000003")] [Address(RVA = "0x117BFE0", Offset = "0x117AFE0", VA = "0x18117BFE0")] [CLSCompliant(false)] public BigInteger(uint value) { } /// Initializes a new instance of the structure using a 64-bit signed integer value. /// A 64-bit signed integer. // Token: 0x06000004 RID: 4 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000004")] [Address(RVA = "0x117BCA0", Offset = "0x117ACA0", VA = "0x18117BCA0")] public BigInteger(long value) { } /// Initializes a new instance of the structure with an unsigned 64-bit integer value. /// An unsigned 64-bit integer. // Token: 0x06000005 RID: 5 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000005")] [Address(RVA = "0x117BE40", Offset = "0x117AE40", VA = "0x18117BE40")] [CLSCompliant(false)] public BigInteger(ulong value) { } /// Initializes a new instance of the structure using the values in a byte array. /// An array of byte values in little-endian order. /// /// is . // Token: 0x06000006 RID: 6 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000006")] [Address(RVA = "0x117BBE0", Offset = "0x117ABE0", VA = "0x18117BBE0")] [CLSCompliant(false)] public BigInteger(byte[] value) { } // Token: 0x06000007 RID: 7 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000007")] [Address(RVA = "0x117C240", Offset = "0x117B240", VA = "0x18117C240")] public BigInteger(ReadOnlySpan value) { } // Token: 0x06000008 RID: 8 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000008")] [Address(RVA = "0x478700", Offset = "0x477700", VA = "0x180478700")] internal BigInteger(int n, uint[] rgu) { } // Token: 0x06000009 RID: 9 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000009")] [Address(RVA = "0x117C080", Offset = "0x117B080", VA = "0x18117C080")] internal BigInteger(uint[] value, bool negative) { } /// Gets a value that represents the number 0 (zero). /// An integer whose value is 0 (zero). // Token: 0x17000001 RID: 1 // (get) Token: 0x0600000A RID: 10 RVA: 0x00002058 File Offset: 0x00000258 [Token(Token = "0x17000001")] public static BigInteger Zero { [Token(Token = "0x600000A")] [Address(RVA = "0x117C730", Offset = "0x117B730", VA = "0x18117C730")] get { return default(BigInteger); } } /// Indicates whether the value of the current object is . /// /// if the value of the object is ; otherwise, . // Token: 0x17000002 RID: 2 // (get) Token: 0x0600000B RID: 11 RVA: 0x00002070 File Offset: 0x00000270 [Token(Token = "0x17000002")] public bool IsZero { [Token(Token = "0x600000B")] [Address(RVA = "0x8BCAA0", Offset = "0x8BBAA0", VA = "0x1808BCAA0")] get { return default(bool); } } /// Converts the string representation of a number in a specified culture-specific format to its equivalent. /// A string that contains a number to convert. /// An object that provides culture-specific formatting information about . /// A value that is equivalent to the number specified in the parameter. /// /// is . /// /// is not in the correct format. // Token: 0x0600000C RID: 12 RVA: 0x00002088 File Offset: 0x00000288 [Token(Token = "0x600000C")] [Address(RVA = "0x117B030", Offset = "0x117A030", VA = "0x18117B030")] public static BigInteger Parse(string value, IFormatProvider provider) { return default(BigInteger); } /// Converts the string representation of a number in a specified style and culture-specific format to its equivalent. /// A string that contains a number to convert. /// A bitwise combination of the enumeration values that specify the permitted format of . /// An object that provides culture-specific formatting information about . /// A value that is equivalent to the number specified in the parameter. /// /// is not a value. /// -or- /// includes the or flag along with another value. /// /// is . /// /// does not comply with the input pattern specified by . // Token: 0x0600000D RID: 13 RVA: 0x000020A0 File Offset: 0x000002A0 [Token(Token = "0x600000D")] [Address(RVA = "0x117B0D0", Offset = "0x117A0D0", VA = "0x18117B0D0")] public static BigInteger Parse(string value, NumberStyles style, IFormatProvider provider) { return default(BigInteger); } /// Returns the hash code for the current object. /// A 32-bit signed integer hash code. // Token: 0x0600000E RID: 14 RVA: 0x000020B8 File Offset: 0x000002B8 [Token(Token = "0x600000E")] [Address(RVA = "0x117AFD0", Offset = "0x1179FD0", VA = "0x18117AFD0", Slot = "2")] public override int GetHashCode() { return 0; } /// Returns a value that indicates whether the current instance and a specified object have the same value. /// The object to compare. /// /// if the argument is a object, and its value is equal to the value of the current instance; otherwise, . // Token: 0x0600000F RID: 15 RVA: 0x000020D0 File Offset: 0x000002D0 [Token(Token = "0x600000F")] [Address(RVA = "0x117AED0", Offset = "0x1179ED0", VA = "0x18117AED0", Slot = "0")] public override bool Equals(object obj) { return default(bool); } /// Returns a value that indicates whether the current instance and a signed 64-bit integer have the same value. /// The signed 64-bit integer value to compare. /// /// if the signed 64-bit integer and the current instance have the same value; otherwise, . // Token: 0x06000010 RID: 16 RVA: 0x000020E8 File Offset: 0x000002E8 [Token(Token = "0x6000010")] [Address(RVA = "0x117AE20", Offset = "0x1179E20", VA = "0x18117AE20")] public bool Equals(long other) { return default(bool); } /// Returns a value that indicates whether the current instance and a specified object have the same value. /// The object to compare. /// /// if this object and have the same value; otherwise, . // Token: 0x06000011 RID: 17 RVA: 0x00002100 File Offset: 0x00000300 [Token(Token = "0x6000011")] [Address(RVA = "0x117AD10", Offset = "0x1179D10", VA = "0x18117AD10", Slot = "7")] public bool Equals(BigInteger other) { return default(bool); } /// Compares this instance to a signed 64-bit integer and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the signed 64-bit integer. /// The signed 64-bit integer to compare. /// A signed integer value that indicates the relationship of this instance to , as shown in the following table. /// Return value /// /// Description /// /// Less than zero /// /// The current instance is less than . /// /// Zero /// /// The current instance equals . /// /// Greater than zero /// /// The current instance is greater than . // Token: 0x06000012 RID: 18 RVA: 0x00002118 File Offset: 0x00000318 [Token(Token = "0x6000012")] [Address(RVA = "0x117AC30", Offset = "0x1179C30", VA = "0x18117AC30")] public int CompareTo(long other) { return 0; } /// Compares this instance to a second and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified object. /// The object to compare. /// A signed integer value that indicates the relationship of this instance to , as shown in the following table. /// Return value /// /// Description /// /// Less than zero /// /// The current instance is less than . /// /// Zero /// /// The current instance equals . /// /// Greater than zero /// /// The current instance is greater than . // Token: 0x06000013 RID: 19 RVA: 0x00002130 File Offset: 0x00000330 [Token(Token = "0x6000013")] [Address(RVA = "0x117AA90", Offset = "0x1179A90", VA = "0x18117AA90", Slot = "6")] public int CompareTo(BigInteger other) { return 0; } /// Compares this instance to a specified object and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified object. /// The object to compare. /// A signed integer that indicates the relationship of the current instance to the parameter, as shown in the following table. /// Return value /// /// Description /// /// Less than zero /// /// The current instance is less than . /// /// Zero /// /// The current instance equals . /// /// Greater than zero /// /// The current instance is greater than , or the parameter is . /// /// is not a . // Token: 0x06000014 RID: 20 RVA: 0x00002148 File Offset: 0x00000348 [Token(Token = "0x6000014")] [Address(RVA = "0x117A9C0", Offset = "0x11799C0", VA = "0x18117A9C0", Slot = "5")] public int CompareTo(object obj) { return 0; } /// Converts a value to a byte array. /// The value of the current object converted to an array of bytes. // Token: 0x06000015 RID: 21 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000015")] [Address(RVA = "0x117B390", Offset = "0x117A390", VA = "0x18117B390")] public byte[] ToByteArray() { return null; } // Token: 0x06000016 RID: 22 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000016")] [Address(RVA = "0x117B4A0", Offset = "0x117A4A0", VA = "0x18117B4A0")] private byte[] TryGetBytes(BigInteger.GetBytesMode mode, Span destination, ref int bytesWritten) { return null; } /// Converts the numeric value of the current object to its equivalent string representation. /// The string representation of the current value. // Token: 0x06000017 RID: 23 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000017")] [Address(RVA = "0x117B420", Offset = "0x117A420", VA = "0x18117B420", Slot = "3")] public override string ToString() { return null; } /// Converts the numeric value of the current object to its equivalent string representation by using the specified culture-specific formatting information. /// An object that supplies culture-specific formatting information. /// The string representation of the current value in the format specified by the parameter. // Token: 0x06000018 RID: 24 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000018")] [Address(RVA = "0x117B3E0", Offset = "0x117A3E0", VA = "0x18117B3E0")] public string ToString(IFormatProvider provider) { return null; } /// Converts the numeric value of the current object to its equivalent string representation by using the specified format and culture-specific format information. /// A standard or custom numeric format string. /// An object that supplies culture-specific formatting information. /// The string representation of the current value as specified by the and parameters. /// /// is not a valid format string. // Token: 0x06000019 RID: 25 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000019")] [Address(RVA = "0x117B460", Offset = "0x117A460", VA = "0x18117B460", Slot = "4")] public string ToString(string format, IFormatProvider provider) { return null; } // Token: 0x0600001A RID: 26 RVA: 0x00002160 File Offset: 0x00000360 [Token(Token = "0x600001A")] [Address(RVA = "0x117A7D0", Offset = "0x11797D0", VA = "0x18117A7D0")] private static BigInteger Add(uint[] leftBits, int leftSign, uint[] rightBits, int rightSign) { return default(BigInteger); } /// Subtracts a value from another value. /// The value to subtract from (the minuend). /// The value to subtract (the subtrahend). /// The result of subtracting from . // Token: 0x0600001B RID: 27 RVA: 0x00002178 File Offset: 0x00000378 [Token(Token = "0x600001B")] [Address(RVA = "0x117DAD0", Offset = "0x117CAD0", VA = "0x18117DAD0")] public static BigInteger operator -(BigInteger left, BigInteger right) { return default(BigInteger); } // Token: 0x0600001C RID: 28 RVA: 0x00002190 File Offset: 0x00000390 [Token(Token = "0x600001C")] [Address(RVA = "0x117B130", Offset = "0x117A130", VA = "0x18117B130")] private static BigInteger Subtract(uint[] leftBits, int leftSign, uint[] rightBits, int rightSign) { return default(BigInteger); } /// Defines an implicit conversion of an unsigned byte to a value. /// The value to convert to a . /// An object that contains the value of the parameter. // Token: 0x0600001D RID: 29 RVA: 0x000021A8 File Offset: 0x000003A8 [Token(Token = "0x600001D")] [Address(RVA = "0x117D5D0", Offset = "0x117C5D0", VA = "0x18117D5D0")] public static implicit operator BigInteger(byte value) { return default(BigInteger); } /// Defines an implicit conversion of an 8-bit signed integer to a value. /// This API is not CLS-compliant. The compliant alternative is . /// The value to convert to a . /// An object that contains the value of the parameter. // Token: 0x0600001E RID: 30 RVA: 0x000021C0 File Offset: 0x000003C0 [Token(Token = "0x600001E")] [Address(RVA = "0x117D4E0", Offset = "0x117C4E0", VA = "0x18117D4E0")] [CLSCompliant(false)] public static implicit operator BigInteger(sbyte value) { return default(BigInteger); } /// Defines an implicit conversion of a signed 16-bit integer to a value. /// The value to convert to a . /// An object that contains the value of the parameter. // Token: 0x0600001F RID: 31 RVA: 0x000021D8 File Offset: 0x000003D8 [Token(Token = "0x600001F")] [Address(RVA = "0x117D540", Offset = "0x117C540", VA = "0x18117D540")] public static implicit operator BigInteger(short value) { return default(BigInteger); } /// Defines an implicit conversion of a 16-bit unsigned integer to a value. /// This API is not CLS-compliant. The compliant alternative is . /// The value to convert to a . /// An object that contains the value of the parameter. // Token: 0x06000020 RID: 32 RVA: 0x000021F0 File Offset: 0x000003F0 [Token(Token = "0x6000020")] [Address(RVA = "0x117D570", Offset = "0x117C570", VA = "0x18117D570")] [CLSCompliant(false)] public static implicit operator BigInteger(ushort value) { return default(BigInteger); } /// Defines an implicit conversion of a signed 32-bit integer to a value. /// The value to convert to a . /// An object that contains the value of the parameter. // Token: 0x06000021 RID: 33 RVA: 0x00002208 File Offset: 0x00000408 [Token(Token = "0x6000021")] [Address(RVA = "0x117D600", Offset = "0x117C600", VA = "0x18117D600")] public static implicit operator BigInteger(int value) { return default(BigInteger); } /// Defines an implicit conversion of a 32-bit unsigned integer to a value. /// This API is not CLS-compliant. The compliant alternative is . /// The value to convert to a . /// An object that contains the value of the parameter. // Token: 0x06000022 RID: 34 RVA: 0x00002220 File Offset: 0x00000420 [Token(Token = "0x6000022")] [Address(RVA = "0x117D4B0", Offset = "0x117C4B0", VA = "0x18117D4B0")] [CLSCompliant(false)] public static implicit operator BigInteger(uint value) { return default(BigInteger); } /// Defines an implicit conversion of a signed 64-bit integer to a value. /// The value to convert to a . /// An object that contains the value of the parameter. // Token: 0x06000023 RID: 35 RVA: 0x00002238 File Offset: 0x00000438 [Token(Token = "0x6000023")] [Address(RVA = "0x117D510", Offset = "0x117C510", VA = "0x18117D510")] public static implicit operator BigInteger(long value) { return default(BigInteger); } /// Defines an implicit conversion of a 64-bit unsigned integer to a value. /// This API is not CLS-compliant. The compliant alternative is . /// The value to convert to a . /// An object that contains the value of the parameter. // Token: 0x06000024 RID: 36 RVA: 0x00002250 File Offset: 0x00000450 [Token(Token = "0x6000024")] [Address(RVA = "0x117D5A0", Offset = "0x117C5A0", VA = "0x18117D5A0")] [CLSCompliant(false)] public static implicit operator BigInteger(ulong value) { return default(BigInteger); } /// Defines an explicit conversion of a object to an unsigned byte value. /// The value to convert to a . /// An object that contains the value of the parameter. /// /// is less than or greater than . // Token: 0x06000025 RID: 37 RVA: 0x00002268 File Offset: 0x00000468 [Token(Token = "0x6000025")] [Address(RVA = "0x117D2E0", Offset = "0x117C2E0", VA = "0x18117D2E0")] public static explicit operator byte(BigInteger value) { return 0; } /// Defines an explicit conversion of a object to a signed 8-bit value. /// This API is not CLS-compliant. The compliant alternative is . /// The value to convert to a signed 8-bit value. /// An object that contains the value of the parameter. /// /// is less than or is greater than . // Token: 0x06000026 RID: 38 RVA: 0x00002280 File Offset: 0x00000480 [Token(Token = "0x6000026")] [Address(RVA = "0x117CDB0", Offset = "0x117BDB0", VA = "0x18117CDB0")] [CLSCompliant(false)] public static explicit operator sbyte(BigInteger value) { return 0; } /// Defines an explicit conversion of a object to a 16-bit signed integer value. /// The value to convert to a 16-bit signed integer. /// An object that contains the value of the parameter. /// /// is less than or is greater than . // Token: 0x06000027 RID: 39 RVA: 0x00002298 File Offset: 0x00000498 [Token(Token = "0x6000027")] [Address(RVA = "0x117CFB0", Offset = "0x117BFB0", VA = "0x18117CFB0")] public static explicit operator short(BigInteger value) { return 0; } /// Defines an explicit conversion of a object to an unsigned 16-bit integer value. /// This API is not CLS-compliant. The compliant alternative is . /// The value to convert to an unsigned 16-bit integer. /// An object that contains the value of the parameter. /// /// is less than or is greater than . // Token: 0x06000028 RID: 40 RVA: 0x000022B0 File Offset: 0x000004B0 [Token(Token = "0x6000028")] [Address(RVA = "0x117CD30", Offset = "0x117BD30", VA = "0x18117CD30")] [CLSCompliant(false)] public static explicit operator ushort(BigInteger value) { return 0; } /// Defines an explicit conversion of a object to a 32-bit signed integer value. /// The value to convert to a 32-bit signed integer. /// An object that contains the value of the parameter. /// /// is less than or is greater than . // Token: 0x06000029 RID: 41 RVA: 0x000022C8 File Offset: 0x000004C8 [Token(Token = "0x6000029")] [Address(RVA = "0x117CBB0", Offset = "0x117BBB0", VA = "0x18117CBB0")] public static explicit operator int(BigInteger value) { return 0; } /// Defines an explicit conversion of a object to an unsigned 32-bit integer value. /// This API is not CLS-compliant. The compliant alternative is . /// The value to convert to an unsigned 32-bit integer. /// An object that contains the value of the parameter. /// /// is less than or is greater than . // Token: 0x0600002A RID: 42 RVA: 0x000022E0 File Offset: 0x000004E0 [Token(Token = "0x600002A")] [Address(RVA = "0x117D030", Offset = "0x117C030", VA = "0x18117D030")] [CLSCompliant(false)] public static explicit operator uint(BigInteger value) { return 0U; } /// Defines an explicit conversion of a object to a 64-bit signed integer value. /// The value to convert to a 64-bit signed integer. /// An object that contains the value of the parameter. /// /// is less than or is greater than . // Token: 0x0600002B RID: 43 RVA: 0x000022F8 File Offset: 0x000004F8 [Token(Token = "0x600002B")] [Address(RVA = "0x117C8F0", Offset = "0x117B8F0", VA = "0x18117C8F0")] public static explicit operator long(BigInteger value) { return 0L; } /// Defines an explicit conversion of a object to an unsigned 64-bit integer value. /// This API is not CLS-compliant. The compliant alternative is . /// The value to convert to an unsigned 64-bit integer. /// An object that contains the value of the parameter. /// /// is less than or is greater than . // Token: 0x0600002C RID: 44 RVA: 0x00002310 File Offset: 0x00000510 [Token(Token = "0x600002C")] [Address(RVA = "0x117CA80", Offset = "0x117BA80", VA = "0x18117CA80")] [CLSCompliant(false)] public static explicit operator ulong(BigInteger value) { return 0UL; } /// Defines an explicit conversion of a object to a single-precision floating-point value. /// The value to convert to a single-precision floating-point value. /// An object that contains the closest possible representation of the parameter. // Token: 0x0600002D RID: 45 RVA: 0x00002328 File Offset: 0x00000528 [Token(Token = "0x600002D")] [Address(RVA = "0x117CE30", Offset = "0x117BE30", VA = "0x18117CE30")] public static explicit operator float(BigInteger value) { return 0f; } /// Defines an explicit conversion of a object to a value. /// The value to convert to a . /// An object that contains the value of the parameter. // Token: 0x0600002E RID: 46 RVA: 0x00002340 File Offset: 0x00000540 [Token(Token = "0x600002E")] [Address(RVA = "0x117D360", Offset = "0x117C360", VA = "0x18117D360")] public static explicit operator double(BigInteger value) { return 0.0; } /// Defines an explicit conversion of a object to a value. /// The value to convert to a . /// An object that contains the value of the parameter. /// /// is less than or greater than . // Token: 0x0600002F RID: 47 RVA: 0x00002358 File Offset: 0x00000558 [Token(Token = "0x600002F")] [Address(RVA = "0x117D100", Offset = "0x117C100", VA = "0x18117D100")] public static explicit operator decimal(BigInteger value) { return 0m; } /// Negates a specified BigInteger value. /// The value to negate. /// The result of the parameter multiplied by negative one (-1). // Token: 0x06000030 RID: 48 RVA: 0x00002370 File Offset: 0x00000570 [Token(Token = "0x6000030")] [Address(RVA = "0x117DC00", Offset = "0x117CC00", VA = "0x18117DC00")] public static BigInteger operator -(BigInteger value) { return default(BigInteger); } /// Adds the values of two specified objects. /// The first value to add. /// The second value to add. /// The sum of and . // Token: 0x06000031 RID: 49 RVA: 0x00002388 File Offset: 0x00000588 [Token(Token = "0x6000031")] [Address(RVA = "0x117C7A0", Offset = "0x117B7A0", VA = "0x18117C7A0")] public static BigInteger operator +(BigInteger left, BigInteger right) { return default(BigInteger); } /// Multiplies two specified values. /// The first value to multiply. /// The second value to multiply. /// The product of and . // Token: 0x06000032 RID: 50 RVA: 0x000023A0 File Offset: 0x000005A0 [Token(Token = "0x6000032")] [Address(RVA = "0x117D730", Offset = "0x117C730", VA = "0x18117D730")] public static BigInteger operator *(BigInteger left, BigInteger right) { return default(BigInteger); } /// Returns a value that indicates whether a value is less than or equal to another value. /// The first value to compare. /// The second value to compare. /// /// if is less than or equal to ; otherwise, . // Token: 0x06000033 RID: 51 RVA: 0x000023B8 File Offset: 0x000005B8 [Token(Token = "0x6000033")] [Address(RVA = "0x117D680", Offset = "0x117C680", VA = "0x18117D680")] public static bool operator <=(BigInteger left, BigInteger right) { return default(bool); } /// Returns a value that indicates whether two objects have different values. /// The first value to compare. /// The second value to compare. /// /// if and are not equal; otherwise, . // Token: 0x06000034 RID: 52 RVA: 0x000023D0 File Offset: 0x000005D0 [Token(Token = "0x6000034")] [Address(RVA = "0x117D650", Offset = "0x117C650", VA = "0x18117D650")] public static bool operator !=(BigInteger left, BigInteger right) { return default(bool); } /// Returns a value that indicates whether a value is less than a 64-bit signed integer. /// The first value to compare. /// The second value to compare. /// /// if is less than ; otherwise, . // Token: 0x06000035 RID: 53 RVA: 0x000023E8 File Offset: 0x000005E8 [Token(Token = "0x6000035")] [Address(RVA = "0x117D6F0", Offset = "0x117C6F0", VA = "0x18117D6F0")] public static bool operator <(BigInteger left, long right) { return default(bool); } /// Returns a value that indicates whether a value is less than or equal to a 64-bit signed integer. /// The first value to compare. /// The second value to compare. /// /// if is less than or equal to ; otherwise, . // Token: 0x06000036 RID: 54 RVA: 0x00002400 File Offset: 0x00000600 [Token(Token = "0x6000036")] [Address(RVA = "0x117D6B0", Offset = "0x117C6B0", VA = "0x18117D6B0")] public static bool operator <=(BigInteger left, long right) { return default(bool); } /// Returns a value that indicates whether a value and a signed long integer value are equal. /// The first value to compare. /// The second value to compare. /// /// if the and parameters have the same value; otherwise, . // Token: 0x06000037 RID: 55 RVA: 0x00002418 File Offset: 0x00000618 [Token(Token = "0x6000037")] [Address(RVA = "0x117C8D0", Offset = "0x117B8D0", VA = "0x18117C8D0")] public static bool operator ==(BigInteger left, long right) { return default(bool); } /// Returns a value that indicates whether a value and a 64-bit signed integer are not equal. /// The first value to compare. /// The second value to compare. /// /// if and are not equal; otherwise, . // Token: 0x06000038 RID: 56 RVA: 0x00002430 File Offset: 0x00000630 [Token(Token = "0x6000038")] [Address(RVA = "0x117D630", Offset = "0x117C630", VA = "0x18117D630")] public static bool operator !=(BigInteger left, long right) { return default(bool); } /// Returns a value that indicates whether a 64-bit signed integer is less than a value. /// The first value to compare. /// The second value to compare. /// /// if is less than ; otherwise, . // Token: 0x06000039 RID: 57 RVA: 0x00002448 File Offset: 0x00000648 [Token(Token = "0x6000039")] [Address(RVA = "0x117D710", Offset = "0x117C710", VA = "0x18117D710")] public static bool operator <(long left, BigInteger right) { return default(bool); } /// Returns a value that indicates whether a 64-bit signed integer is less than or equal to a value. /// The first value to compare. /// The second value to compare. /// /// if is less than or equal to ; otherwise, . // Token: 0x0600003A RID: 58 RVA: 0x00002460 File Offset: 0x00000660 [Token(Token = "0x600003A")] [Address(RVA = "0x117D6D0", Offset = "0x117C6D0", VA = "0x18117D6D0")] public static bool operator <=(long left, BigInteger right) { return default(bool); } // Token: 0x0600003B RID: 59 RVA: 0x00002478 File Offset: 0x00000678 [Token(Token = "0x600003B")] [Address(RVA = "0x117AF60", Offset = "0x1179F60", VA = "0x18117AF60")] internal static int GetDiffLength(uint[] rgu1, uint[] rgu2, int cu) { return 0; } // Token: 0x04000001 RID: 1 [FieldOffset(Offset = "0x0")] [Token(Token = "0x4000001")] internal readonly int _sign; // Token: 0x04000002 RID: 2 [FieldOffset(Offset = "0x8")] [Token(Token = "0x4000002")] internal readonly uint[] _bits; // Token: 0x04000003 RID: 3 [Token(Token = "0x4000003")] private static readonly BigInteger s_bnMinInt; // Token: 0x04000004 RID: 4 [Token(Token = "0x4000004")] private static readonly BigInteger s_bnOneInt; // Token: 0x04000005 RID: 5 [Token(Token = "0x4000005")] private static readonly BigInteger s_bnZeroInt; // Token: 0x04000006 RID: 6 [Token(Token = "0x4000006")] private static readonly BigInteger s_bnMinusOneInt; // Token: 0x04000007 RID: 7 [Token(Token = "0x4000007")] private static readonly byte[] s_success; // Token: 0x02000004 RID: 4 [Token(Token = "0x2000004")] private enum GetBytesMode { // Token: 0x04000009 RID: 9 [Token(Token = "0x4000009")] AllocateArray, // Token: 0x0400000A RID: 10 [Token(Token = "0x400000A")] Count, // Token: 0x0400000B RID: 11 [Token(Token = "0x400000B")] Span } } }