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

995 lines
43 KiB
C#

using System;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Data.SqlTypes
{
/// <summary>Represents a numeric value between - 10^38 +1 and 10^38 - 1, with fixed precision and scale.</summary>
// Token: 0x020000A6 RID: 166
[Token(Token = "0x20000A6")]
[XmlSchemaProvider("GetXsdType")]
[Serializable]
public struct SqlDecimal : INullable, IComparable, IXmlSerializable
{
// Token: 0x06000978 RID: 2424 RVA: 0x000056B4 File Offset: 0x000038B4
[Token(Token = "0x6000978")]
[Address(RVA = "0xBC6A20", Offset = "0xBC5A20", VA = "0x180BC6A20")]
private byte CalculatePrecision()
{
return 0;
}
// Token: 0x06000979 RID: 2425 RVA: 0x000056CC File Offset: 0x000038CC
[Token(Token = "0x6000979")]
[Address(RVA = "0xBCA790", Offset = "0xBC9790", VA = "0x180BCA790")]
private bool VerifyPrecision(byte precision)
{
return default(bool);
}
// Token: 0x0600097A RID: 2426 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600097A")]
[Address(RVA = "0xBCB7B0", Offset = "0xBCA7B0", VA = "0x180BCB7B0")]
private SqlDecimal(bool fNull)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure using the supplied <see cref="T:System.Decimal" /> value.</summary>
/// <param name="value">The <see cref="T:System.Decimal" /> value to be stored as a <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
// Token: 0x0600097B RID: 2427 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600097B")]
[Address(RVA = "0xBCB3D0", Offset = "0xBCA3D0", VA = "0x180BCB3D0")]
public SqlDecimal(decimal value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure using the supplied integer value.</summary>
/// <param name="value">The supplied integer value which will the used as the value of the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
// Token: 0x0600097C RID: 2428 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600097C")]
[Address(RVA = "0xBCB6A0", Offset = "0xBCA6A0", VA = "0x180BCB6A0")]
public SqlDecimal(int value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure using the supplied long integer value.</summary>
/// <param name="value">The supplied long integer value which will the used as the value of the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
// Token: 0x0600097D RID: 2429 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600097D")]
[Address(RVA = "0xBCB580", Offset = "0xBCA580", VA = "0x180BCB580")]
public SqlDecimal(long value)
{
}
// Token: 0x0600097E RID: 2430 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600097E")]
[Address(RVA = "0xBCB180", Offset = "0xBCA180", VA = "0x180BCB180")]
private SqlDecimal(uint[] rglData, byte bLen, byte bPrec, byte bScale, bool fPositive)
{
}
/// <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure is null.</summary>
/// <returns>
/// <see langword="true" /> if this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure is null. Otherwise, <see langword="false" />.</returns>
// Token: 0x17000182 RID: 386
// (get) Token: 0x0600097F RID: 2431 RVA: 0x000056E4 File Offset: 0x000038E4
[Token(Token = "0x17000182")]
public bool IsNull
{
[Token(Token = "0x600097F")]
[Address(RVA = "0xBCB970", Offset = "0xBCA970", VA = "0x180BCB970", Slot = "4")]
get
{
return default(bool);
}
}
/// <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure. This property is read-only.</summary>
/// <returns>A number in the range -79,228,162,514,264,337,593,543,950,335 through 79,228,162,514,162,514,264,337,593,543,950,335.</returns>
// Token: 0x17000183 RID: 387
// (get) Token: 0x06000980 RID: 2432 RVA: 0x000056FC File Offset: 0x000038FC
[Token(Token = "0x17000183")]
public decimal Value
{
[Token(Token = "0x6000980")]
[Address(RVA = "0xBCBB90", Offset = "0xBCAB90", VA = "0x180BCBB90")]
get
{
return 0m;
}
}
/// <summary>Indicates whether the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure is greater than zero.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> is assigned to null. Otherwise, <see langword="false" />.</returns>
// Token: 0x17000184 RID: 388
// (get) Token: 0x06000981 RID: 2433 RVA: 0x00005714 File Offset: 0x00003914
[Token(Token = "0x17000184")]
public bool IsPositive
{
[Token(Token = "0x6000981")]
[Address(RVA = "0xBCB9E0", Offset = "0xBCA9E0", VA = "0x180BCB9E0")]
get
{
return default(bool);
}
}
// Token: 0x06000982 RID: 2434 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000982")]
[Address(RVA = "0xBC9810", Offset = "0xBC8810", VA = "0x180BC9810")]
private void SetPositive()
{
}
// Token: 0x06000983 RID: 2435 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000983")]
[Address(RVA = "0xBC9880", Offset = "0xBC8880", VA = "0x180BC9880")]
private void SetSignBit(bool fPositive)
{
}
/// <summary>Gets the number of decimal places to which <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> is resolved.</summary>
/// <returns>The number of decimal places to which the <see langword="Value" /> property is resolved.</returns>
// Token: 0x17000185 RID: 389
// (get) Token: 0x06000984 RID: 2436 RVA: 0x0000572C File Offset: 0x0000392C
[Token(Token = "0x17000185")]
public byte Scale
{
[Token(Token = "0x6000984")]
[Address(RVA = "0xBCBAD0", Offset = "0xBCAAD0", VA = "0x180BCBAD0")]
get
{
return 0;
}
}
/// <summary>Gets the binary representation of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure as an array of integers.</summary>
/// <returns>An array of integers that contains the binary representation of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</returns>
// Token: 0x17000186 RID: 390
// (get) Token: 0x06000985 RID: 2437 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000186")]
public int[] Data
{
[Token(Token = "0x6000985")]
[Address(RVA = "0xBCB820", Offset = "0xBCA820", VA = "0x180BCB820")]
get
{
return null;
}
}
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.String" />.</summary>
/// <returns>A new <see cref="T:System.String" /> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property.</returns>
// Token: 0x06000986 RID: 2438 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000986")]
[Address(RVA = "0xBCA390", Offset = "0xBC9390", VA = "0x180BCA390", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> representation of a number to its <see cref="T:System.Data.SqlTypes.SqlDecimal" /> equivalent.</summary>
/// <param name="s">The <see langword="String" /> to be parsed.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
// Token: 0x06000987 RID: 2439 RVA: 0x00005744 File Offset: 0x00003944
[Token(Token = "0x6000987")]
[Address(RVA = "0xBC9100", Offset = "0xBC8100", VA = "0x180BC9100")]
public static SqlDecimal Parse(string s)
{
return default(SqlDecimal);
}
/// <summary>Returns the a double equal to the contents of the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of this instance.</summary>
/// <returns>The decimal representation of the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property.</returns>
// Token: 0x06000988 RID: 2440 RVA: 0x0000575C File Offset: 0x0000395C
[Token(Token = "0x6000988")]
[Address(RVA = "0xBC9E70", Offset = "0xBC8E70", VA = "0x180BC9E70")]
public double ToDouble()
{
return 0.0;
}
// Token: 0x06000989 RID: 2441 RVA: 0x00005774 File Offset: 0x00003974
[Token(Token = "0x6000989")]
[Address(RVA = "0xBC9D00", Offset = "0xBC8D00", VA = "0x180BC9D00")]
private decimal ToDecimal()
{
return 0m;
}
/// <summary>Converts the <see cref="T:System.Decimal" /> value to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
/// <param name="x">The <see cref="T:System.Decimal" /> value to be converted.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the value of the <see langword="Decimal" /> parameter.</returns>
// Token: 0x0600098A RID: 2442 RVA: 0x0000578C File Offset: 0x0000398C
[Token(Token = "0x600098A")]
[Address(RVA = "0xBCCFF0", Offset = "0xBCBFF0", VA = "0x180BCCFF0")]
public static implicit operator SqlDecimal(decimal x)
{
return default(SqlDecimal);
}
/// <summary>Converts the supplied <see cref="T:System.Int64" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
/// <param name="x">The <see cref="T:System.Int64" /> structure to be converted.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the value of the <see cref="T:System.Int64" /> parameter.</returns>
// Token: 0x0600098B RID: 2443 RVA: 0x000057A4 File Offset: 0x000039A4
[Token(Token = "0x600098B")]
[Address(RVA = "0xBCD1D0", Offset = "0xBCC1D0", VA = "0x180BCD1D0")]
public static implicit operator SqlDecimal(long x)
{
return default(SqlDecimal);
}
/// <summary>The unary minus operator negates the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</summary>
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be negated.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose value contains the results of the negation.</returns>
// Token: 0x0600098C RID: 2444 RVA: 0x000057BC File Offset: 0x000039BC
[Token(Token = "0x600098C")]
[Address(RVA = "0xBCE1D0", Offset = "0xBCD1D0", VA = "0x180BCE1D0")]
public static SqlDecimal operator -(SqlDecimal x)
{
return default(SqlDecimal);
}
/// <summary>Calculates the sum of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operators.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the sum.</returns>
// Token: 0x0600098D RID: 2445 RVA: 0x000057D4 File Offset: 0x000039D4
[Token(Token = "0x600098D")]
[Address(RVA = "0xBCBBC0", Offset = "0xBCABC0", VA = "0x180BCBBC0")]
public static SqlDecimal operator +(SqlDecimal x, SqlDecimal y)
{
return default(SqlDecimal);
}
/// <summary>Calculates the results of subtracting the second <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operand from the first.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose Value property contains the results of the subtraction.</returns>
// Token: 0x0600098E RID: 2446 RVA: 0x000057EC File Offset: 0x000039EC
[Token(Token = "0x600098E")]
[Address(RVA = "0xBCE100", Offset = "0xBCD100", VA = "0x180BCE100")]
public static SqlDecimal operator -(SqlDecimal x, SqlDecimal y)
{
return default(SqlDecimal);
}
/// <summary>The multiplication operator computes the product of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameters.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the product of the multiplication.</returns>
// Token: 0x0600098F RID: 2447 RVA: 0x00005804 File Offset: 0x00003A04
[Token(Token = "0x600098F")]
[Address(RVA = "0xBCD470", Offset = "0xBCC470", VA = "0x180BCD470")]
public static SqlDecimal operator *(SqlDecimal x, SqlDecimal y)
{
return default(SqlDecimal);
}
/// <summary>The division operator calculates the results of dividing the first <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operand by the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the results of the division.</returns>
// Token: 0x06000990 RID: 2448 RVA: 0x0000581C File Offset: 0x00003A1C
[Token(Token = "0x6000990")]
[Address(RVA = "0xBCC430", Offset = "0xBCB430", VA = "0x180BCC430")]
public static SqlDecimal operator /(SqlDecimal x, SqlDecimal y)
{
return default(SqlDecimal);
}
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
// Token: 0x06000991 RID: 2449 RVA: 0x00005834 File Offset: 0x00003A34
[Token(Token = "0x6000991")]
[Address(RVA = "0xBCD100", Offset = "0xBCC100", VA = "0x180BCD100")]
public static implicit operator SqlDecimal(SqlByte x)
{
return default(SqlDecimal);
}
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" /></summary>
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
// Token: 0x06000992 RID: 2450 RVA: 0x0000584C File Offset: 0x00003A4C
[Token(Token = "0x6000992")]
[Address(RVA = "0xBCCE50", Offset = "0xBCBE50", VA = "0x180BCCE50")]
public static implicit operator SqlDecimal(SqlInt16 x)
{
return default(SqlDecimal);
}
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to be converted.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
// Token: 0x06000993 RID: 2451 RVA: 0x00005864 File Offset: 0x00003A64
[Token(Token = "0x6000993")]
[Address(RVA = "0xBCCF20", Offset = "0xBCBF20", VA = "0x180BCCF20")]
public static implicit operator SqlDecimal(SqlInt32 x)
{
return default(SqlDecimal);
}
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to SqlDecimal.</summary>
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to be converted.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
// Token: 0x06000994 RID: 2452 RVA: 0x0000587C File Offset: 0x00003A7C
[Token(Token = "0x6000994")]
[Address(RVA = "0xBCD230", Offset = "0xBCC230", VA = "0x180BCD230")]
public static implicit operator SqlDecimal(SqlInt64 x)
{
return default(SqlDecimal);
}
/// <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlMoney" /> operand to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be converted.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
// Token: 0x06000995 RID: 2453 RVA: 0x00005894 File Offset: 0x00003A94
[Token(Token = "0x6000995")]
[Address(RVA = "0xBCD030", Offset = "0xBCC030", VA = "0x180BCD030")]
public static implicit operator SqlDecimal(SqlMoney x)
{
return default(SqlDecimal);
}
// Token: 0x06000996 RID: 2454 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000996")]
[Address(RVA = "0xBCAA60", Offset = "0xBC9A60", VA = "0x180BCAA60")]
private static void ZeroToMaxLen(uint[] rgulData, int cUI4sCur)
{
}
// Token: 0x06000997 RID: 2455 RVA: 0x000058AC File Offset: 0x00003AAC
[Token(Token = "0x6000997")]
[Address(RVA = "0xBC79C0", Offset = "0xBC69C0", VA = "0x180BC79C0")]
private bool FZero()
{
return default(bool);
}
// Token: 0x06000998 RID: 2456 RVA: 0x000058C4 File Offset: 0x00003AC4
[Token(Token = "0x6000998")]
[Address(RVA = "0xBC7910", Offset = "0xBC6910", VA = "0x180BC7910")]
private bool FGt10_38()
{
return default(bool);
}
// Token: 0x06000999 RID: 2457 RVA: 0x000058DC File Offset: 0x00003ADC
[Token(Token = "0x6000999")]
[Address(RVA = "0xBC7950", Offset = "0xBC6950", VA = "0x180BC7950")]
private bool FGt10_38(uint[] rglData)
{
return default(bool);
}
// Token: 0x0600099A RID: 2458 RVA: 0x000058F4 File Offset: 0x00003AF4
[Token(Token = "0x600099A")]
[Address(RVA = "0xBC63F0", Offset = "0xBC53F0", VA = "0x180BC63F0")]
private static byte BGetPrecUI4(uint value)
{
return 0;
}
// Token: 0x0600099B RID: 2459 RVA: 0x0000590C File Offset: 0x00003B0C
[Token(Token = "0x600099B")]
[Address(RVA = "0xBC65E0", Offset = "0xBC55E0", VA = "0x180BC65E0")]
private static byte BGetPrecUI8(ulong dwlVal)
{
return 0;
}
// Token: 0x0600099C RID: 2460 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600099C")]
[Address(RVA = "0xBC5E30", Offset = "0xBC4E30", VA = "0x180BC5E30")]
private void AddULong(uint ulAdd)
{
}
// Token: 0x0600099D RID: 2461 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600099D")]
[Address(RVA = "0xBC8E60", Offset = "0xBC7E60", VA = "0x180BC8E60")]
private void MultByULong(uint uiMultiplier)
{
}
// Token: 0x0600099E RID: 2462 RVA: 0x00005924 File Offset: 0x00003B24
[Token(Token = "0x600099E")]
[Address(RVA = "0xBC72E0", Offset = "0xBC62E0", VA = "0x180BC72E0")]
private uint DivByULong(uint iDivisor)
{
return 0U;
}
// Token: 0x0600099F RID: 2463 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600099F")]
[Address(RVA = "0xBC6060", Offset = "0xBC5060", VA = "0x180BC6060")]
internal void AdjustScale(int digits, bool fRound)
{
}
// Token: 0x060009A0 RID: 2464 RVA: 0x0000593C File Offset: 0x00003B3C
[Token(Token = "0x60009A0")]
[Address(RVA = "0xBC7C50", Offset = "0xBC6C50", VA = "0x180BC7C50")]
private int LAbsCmp(SqlDecimal snumOp)
{
return 0;
}
// Token: 0x060009A1 RID: 2465 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009A1")]
[Address(RVA = "0xBC8C90", Offset = "0xBC7C90", VA = "0x180BC8C90")]
private static void MpMove(uint[] rgulS, int ciulS, uint[] rgulD, out int ciulD)
{
}
// Token: 0x060009A2 RID: 2466 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009A2")]
[Address(RVA = "0xBC8E20", Offset = "0xBC7E20", VA = "0x180BC8E20")]
private static void MpSet(uint[] rgulD, out int ciulD, uint iulN)
{
}
// Token: 0x060009A3 RID: 2467 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009A3")]
[Address(RVA = "0xA71620", Offset = "0xA70620", VA = "0x180A71620")]
private static void MpNormalize(uint[] rgulU, ref int ciulU)
{
}
// Token: 0x060009A4 RID: 2468 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009A4")]
[Address(RVA = "0xBC8D00", Offset = "0xBC7D00", VA = "0x180BC8D00")]
private static void MpMul1(uint[] piulD, ref int ciulD, uint iulX)
{
}
// Token: 0x060009A5 RID: 2469 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009A5")]
[Address(RVA = "0xBC7F10", Offset = "0xBC6F10", VA = "0x180BC7F10")]
private static void MpDiv1(uint[] rgulU, ref int ciulU, uint iulD, out uint iulR)
{
}
// Token: 0x060009A6 RID: 2470 RVA: 0x00005954 File Offset: 0x00003B54
[Token(Token = "0x60009A6")]
[Address(RVA = "0xBC72D0", Offset = "0xBC62D0", VA = "0x180BC72D0")]
internal static ulong DWL(uint lo, uint hi)
{
return 0UL;
}
// Token: 0x060009A7 RID: 2471 RVA: 0x0000596C File Offset: 0x00003B6C
[Token(Token = "0x60009A7")]
[Address(RVA = "0xBC7C40", Offset = "0xBC6C40", VA = "0x180BC7C40")]
private static uint HI(ulong x)
{
return 0U;
}
// Token: 0x060009A8 RID: 2472 RVA: 0x00005984 File Offset: 0x00003B84
[Token(Token = "0x60009A8")]
[Address(RVA = "0x593060", Offset = "0x592060", VA = "0x180593060")]
private static uint LO(ulong x)
{
return 0U;
}
// Token: 0x060009A9 RID: 2473 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009A9")]
[Address(RVA = "0xBC8040", Offset = "0xBC7040", VA = "0x180BC8040")]
private static void MpDiv(uint[] rgulU, int ciulU, uint[] rgulD, int ciulD, uint[] rgulQ, out int ciulQ, uint[] rgulR, out int ciulR)
{
}
// Token: 0x060009AA RID: 2474 RVA: 0x0000599C File Offset: 0x00003B9C
[Token(Token = "0x60009AA")]
[Address(RVA = "0xBC6DA0", Offset = "0xBC5DA0", VA = "0x180BC6DA0")]
private EComparison CompareNm(SqlDecimal snumOp)
{
return EComparison.LT;
}
// Token: 0x060009AB RID: 2475 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009AB")]
[Address(RVA = "0xBC6CC0", Offset = "0xBC5CC0", VA = "0x180BC6CC0")]
private static void CheckValidPrecScale(byte bPrec, byte bScale)
{
}
/// <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operands to determine whether they are equal.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
// Token: 0x060009AC RID: 2476 RVA: 0x000059B4 File Offset: 0x00003BB4
[Token(Token = "0x60009AC")]
[Address(RVA = "0xBCCB70", Offset = "0xBCBB70", VA = "0x180BCCB70")]
public static SqlBoolean operator ==(SqlDecimal x, SqlDecimal y)
{
return default(SqlBoolean);
}
/// <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures to determine whether the first is less than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
// Token: 0x060009AD RID: 2477 RVA: 0x000059CC File Offset: 0x00003BCC
[Token(Token = "0x60009AD")]
[Address(RVA = "0xBCD300", Offset = "0xBCC300", VA = "0x180BCD300")]
public static SqlBoolean operator <(SqlDecimal x, SqlDecimal y)
{
return default(SqlBoolean);
}
/// <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures to determine whether the first is greater than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
// Token: 0x060009AE RID: 2478 RVA: 0x000059E4 File Offset: 0x00003BE4
[Token(Token = "0x60009AE")]
[Address(RVA = "0xBCCCE0", Offset = "0xBCBCE0", VA = "0x180BCCCE0")]
public static SqlBoolean operator >(SqlDecimal x, SqlDecimal y)
{
return default(SqlBoolean);
}
/// <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures to determine whether the first is less than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
// Token: 0x060009AF RID: 2479 RVA: 0x000059FC File Offset: 0x00003BFC
[Token(Token = "0x60009AF")]
[Address(RVA = "0xBC7E80", Offset = "0xBC6E80", VA = "0x180BC7E80")]
public static SqlBoolean LessThan(SqlDecimal x, SqlDecimal y)
{
return default(SqlBoolean);
}
/// <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures to determine whether the first is greater than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
// Token: 0x060009B0 RID: 2480 RVA: 0x00005A14 File Offset: 0x00003C14
[Token(Token = "0x60009B0")]
[Address(RVA = "0xBC7BB0", Offset = "0xBC6BB0", VA = "0x180BC7BB0")]
public static SqlBoolean GreaterThan(SqlDecimal x, SqlDecimal y)
{
return default(SqlBoolean);
}
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
// Token: 0x060009B1 RID: 2481 RVA: 0x00005A2C File Offset: 0x00003C2C
[Token(Token = "0x60009B1")]
[Address(RVA = "0xBCA010", Offset = "0xBC9010", VA = "0x180BCA010")]
public SqlDouble ToSqlDouble()
{
return default(SqlDouble);
}
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
// Token: 0x060009B2 RID: 2482 RVA: 0x00005A44 File Offset: 0x00003C44
[Token(Token = "0x60009B2")]
[Address(RVA = "0xBCA180", Offset = "0xBC9180", VA = "0x180BCA180")]
public SqlInt64 ToSqlInt64()
{
return default(SqlInt64);
}
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
// Token: 0x060009B3 RID: 2483 RVA: 0x00005A5C File Offset: 0x00003C5C
[Token(Token = "0x60009B3")]
[Address(RVA = "0xBCA210", Offset = "0xBC9210", VA = "0x180BCA210")]
public SqlMoney ToSqlMoney()
{
return default(SqlMoney);
}
// Token: 0x060009B4 RID: 2484 RVA: 0x00005A74 File Offset: 0x00003C74
[Token(Token = "0x60009B4")]
[Address(RVA = "0xA714E0", Offset = "0xA704E0", VA = "0x180A714E0")]
private static char ChFromDigit(uint uiDigit)
{
return '\0';
}
// Token: 0x060009B5 RID: 2485 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009B5")]
[Address(RVA = "0xBC99C0", Offset = "0xBC89C0", VA = "0x180BC99C0")]
private void StoreFromWorkingArray(uint[] rguiData)
{
}
// Token: 0x060009B6 RID: 2486 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009B6")]
[Address(RVA = "0xBC9950", Offset = "0xBC8950", VA = "0x180BC9950")]
private void SetToZero()
{
}
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
/// <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
/// <returns>A signed number that indicates the relative values of the instance and the object.
/// Return Value
///
/// Condition
///
/// Less than zero
///
/// This instance is less than the object.
///
/// Zero
///
/// This instance is the same as the object.
///
/// Greater than zero
///
/// This instance is greater than the object
///
/// -or-
///
/// The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
// Token: 0x060009B7 RID: 2487 RVA: 0x00005A8C File Offset: 0x00003C8C
[Token(Token = "0x60009B7")]
[Address(RVA = "0xBC6F30", Offset = "0xBC5F30", VA = "0x180BC6F30", Slot = "5")]
public int CompareTo(object value)
{
return 0;
}
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> object and returns an indication of their relative values.</summary>
/// <param name="value">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> to be compared.</param>
/// <returns>A signed number that indicates the relative values of the instance and the object.
/// Return value
///
/// Condition
///
/// Less than zero
///
/// This instance is less than the object.
///
/// Zero
///
/// This instance is the same as the object.
///
/// Greater than zero
///
/// This instance is greater than the object
///
/// -or-
///
/// The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
// Token: 0x060009B8 RID: 2488 RVA: 0x00005AA4 File Offset: 0x00003CA4
[Token(Token = "0x60009B8")]
[Address(RVA = "0xBC7040", Offset = "0xBC6040", VA = "0x180BC7040")]
public int CompareTo(SqlDecimal value)
{
return 0;
}
/// <summary>Compares the supplied <see cref="T:System.Object" /> parameter to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> instance.</summary>
/// <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
/// <returns>
/// <see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> and the two are equal. Otherwise, <see langword="false" />.</returns>
// Token: 0x060009B9 RID: 2489 RVA: 0x00005ABC File Offset: 0x00003CBC
[Token(Token = "0x60009B9")]
[Address(RVA = "0xBC7520", Offset = "0xBC6520", VA = "0x180BC7520", Slot = "0")]
public override bool Equals(object value)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x060009BA RID: 2490 RVA: 0x00005AD4 File Offset: 0x00003CD4
[Token(Token = "0x60009BA")]
[Address(RVA = "0xBC79E0", Offset = "0xBC69E0", VA = "0x180BC79E0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
/// <returns>An <see langword="XmlSchema" />.</returns>
// Token: 0x060009BB RID: 2491 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009BB")]
[Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", Slot = "6")]
XmlSchema IXmlSerializable.GetSchema()
{
return null;
}
/// <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
/// <param name="reader">
/// <see langword="XmlReader" />
/// </param>
// Token: 0x060009BC RID: 2492 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009BC")]
[Address(RVA = "0xBC9A50", Offset = "0xBC8A50", VA = "0x180BC9A50", Slot = "7")]
void IXmlSerializable.ReadXml(XmlReader reader)
{
}
/// <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
/// <param name="writer">
/// <see langword="XmlWriter" />
/// </param>
// Token: 0x060009BD RID: 2493 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009BD")]
[Address(RVA = "0xBC9BF0", Offset = "0xBC8BF0", VA = "0x180BC9BF0", Slot = "8")]
void IXmlSerializable.WriteXml(XmlWriter writer)
{
}
/// <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
/// <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
/// <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
// Token: 0x060009BE RID: 2494 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009BE")]
[Address(RVA = "0xBC7B50", Offset = "0xBC6B50", VA = "0x180BC7B50")]
public static XmlQualifiedName GetXsdType(XmlSchemaSet schemaSet)
{
return null;
}
// Token: 0x0400037F RID: 895
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x400037F")]
internal byte _bStatus;
// Token: 0x04000380 RID: 896
[FieldOffset(Offset = "0x1")]
[Token(Token = "0x4000380")]
internal byte _bLen;
// Token: 0x04000381 RID: 897
[FieldOffset(Offset = "0x2")]
[Token(Token = "0x4000381")]
internal byte _bPrec;
// Token: 0x04000382 RID: 898
[FieldOffset(Offset = "0x3")]
[Token(Token = "0x4000382")]
internal byte _bScale;
// Token: 0x04000383 RID: 899
[FieldOffset(Offset = "0x4")]
[Token(Token = "0x4000383")]
internal uint _data1;
// Token: 0x04000384 RID: 900
[FieldOffset(Offset = "0x8")]
[Token(Token = "0x4000384")]
internal uint _data2;
// Token: 0x04000385 RID: 901
[FieldOffset(Offset = "0xC")]
[Token(Token = "0x4000385")]
internal uint _data3;
// Token: 0x04000386 RID: 902
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000386")]
internal uint _data4;
// Token: 0x04000387 RID: 903
[Token(Token = "0x4000387")]
private static readonly byte s_NUMERIC_MAX_PRECISION;
/// <summary>A constant representing the largest possible value for the <see cref="P:System.Data.SqlTypes.SqlDecimal.Precision" /> property.</summary>
// Token: 0x04000388 RID: 904
[Token(Token = "0x4000388")]
public static readonly byte MaxPrecision;
/// <summary>A constant representing the maximum value for the <see cref="P:System.Data.SqlTypes.SqlDecimal.Scale" /> property.</summary>
// Token: 0x04000389 RID: 905
[Token(Token = "0x4000389")]
public static readonly byte MaxScale;
// Token: 0x0400038A RID: 906
[Token(Token = "0x400038A")]
private static readonly byte s_bNullMask;
// Token: 0x0400038B RID: 907
[Token(Token = "0x400038B")]
private static readonly byte s_bIsNull;
// Token: 0x0400038C RID: 908
[Token(Token = "0x400038C")]
private static readonly byte s_bNotNull;
// Token: 0x0400038D RID: 909
[Token(Token = "0x400038D")]
private static readonly byte s_bReverseNullMask;
// Token: 0x0400038E RID: 910
[Token(Token = "0x400038E")]
private static readonly byte s_bSignMask;
// Token: 0x0400038F RID: 911
[Token(Token = "0x400038F")]
private static readonly byte s_bPositive;
// Token: 0x04000390 RID: 912
[Token(Token = "0x4000390")]
private static readonly byte s_bNegative;
// Token: 0x04000391 RID: 913
[Token(Token = "0x4000391")]
private static readonly byte s_bReverseSignMask;
// Token: 0x04000392 RID: 914
[Token(Token = "0x4000392")]
private static readonly uint s_uiZero;
// Token: 0x04000393 RID: 915
[Token(Token = "0x4000393")]
private static readonly int s_cNumeMax;
// Token: 0x04000394 RID: 916
[Token(Token = "0x4000394")]
private static readonly long s_lInt32Base;
// Token: 0x04000395 RID: 917
[Token(Token = "0x4000395")]
private static readonly ulong s_ulInt32Base;
// Token: 0x04000396 RID: 918
[Token(Token = "0x4000396")]
private static readonly ulong s_ulInt32BaseForMod;
// Token: 0x04000397 RID: 919
[Token(Token = "0x4000397")]
internal static readonly ulong s_llMax;
// Token: 0x04000398 RID: 920
[Token(Token = "0x4000398")]
private static readonly uint s_ulBase10;
// Token: 0x04000399 RID: 921
[Token(Token = "0x4000399")]
private static readonly double s_DUINT_BASE;
// Token: 0x0400039A RID: 922
[Token(Token = "0x400039A")]
private static readonly double s_DUINT_BASE2;
// Token: 0x0400039B RID: 923
[Token(Token = "0x400039B")]
private static readonly double s_DUINT_BASE3;
// Token: 0x0400039C RID: 924
[Token(Token = "0x400039C")]
private static readonly double s_DMAX_NUME;
// Token: 0x0400039D RID: 925
[Token(Token = "0x400039D")]
private static readonly uint s_DBL_DIG;
// Token: 0x0400039E RID: 926
[Token(Token = "0x400039E")]
private static readonly byte s_cNumeDivScaleMin;
// Token: 0x0400039F RID: 927
[Token(Token = "0x400039F")]
private static readonly uint[] s_rgulShiftBase;
// Token: 0x040003A0 RID: 928
[Token(Token = "0x40003A0")]
private static readonly uint[] s_decimalHelpersLo;
// Token: 0x040003A1 RID: 929
[Token(Token = "0x40003A1")]
private static readonly uint[] s_decimalHelpersMid;
// Token: 0x040003A2 RID: 930
[Token(Token = "0x40003A2")]
private static readonly uint[] s_decimalHelpersHi;
// Token: 0x040003A3 RID: 931
[Token(Token = "0x40003A3")]
private static readonly uint[] s_decimalHelpersHiHi;
// Token: 0x040003A4 RID: 932
[Token(Token = "0x40003A4")]
private static readonly byte[] s_rgCLenFromPrec;
// Token: 0x040003A5 RID: 933
[Token(Token = "0x40003A5")]
private static readonly uint s_ulT1;
// Token: 0x040003A6 RID: 934
[Token(Token = "0x40003A6")]
private static readonly uint s_ulT2;
// Token: 0x040003A7 RID: 935
[Token(Token = "0x40003A7")]
private static readonly uint s_ulT3;
// Token: 0x040003A8 RID: 936
[Token(Token = "0x40003A8")]
private static readonly uint s_ulT4;
// Token: 0x040003A9 RID: 937
[Token(Token = "0x40003A9")]
private static readonly uint s_ulT5;
// Token: 0x040003AA RID: 938
[Token(Token = "0x40003AA")]
private static readonly uint s_ulT6;
// Token: 0x040003AB RID: 939
[Token(Token = "0x40003AB")]
private static readonly uint s_ulT7;
// Token: 0x040003AC RID: 940
[Token(Token = "0x40003AC")]
private static readonly uint s_ulT8;
// Token: 0x040003AD RID: 941
[Token(Token = "0x40003AD")]
private static readonly uint s_ulT9;
// Token: 0x040003AE RID: 942
[Token(Token = "0x40003AE")]
private static readonly ulong s_dwlT10;
// Token: 0x040003AF RID: 943
[Token(Token = "0x40003AF")]
private static readonly ulong s_dwlT11;
// Token: 0x040003B0 RID: 944
[Token(Token = "0x40003B0")]
private static readonly ulong s_dwlT12;
// Token: 0x040003B1 RID: 945
[Token(Token = "0x40003B1")]
private static readonly ulong s_dwlT13;
// Token: 0x040003B2 RID: 946
[Token(Token = "0x40003B2")]
private static readonly ulong s_dwlT14;
// Token: 0x040003B3 RID: 947
[Token(Token = "0x40003B3")]
private static readonly ulong s_dwlT15;
// Token: 0x040003B4 RID: 948
[Token(Token = "0x40003B4")]
private static readonly ulong s_dwlT16;
// Token: 0x040003B5 RID: 949
[Token(Token = "0x40003B5")]
private static readonly ulong s_dwlT17;
// Token: 0x040003B6 RID: 950
[Token(Token = "0x40003B6")]
private static readonly ulong s_dwlT18;
// Token: 0x040003B7 RID: 951
[Token(Token = "0x40003B7")]
private static readonly ulong s_dwlT19;
/// <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> class.</summary>
// Token: 0x040003B8 RID: 952
[Token(Token = "0x40003B8")]
public static readonly SqlDecimal Null;
/// <summary>A constant representing the minimum value for a <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</summary>
// Token: 0x040003B9 RID: 953
[Token(Token = "0x40003B9")]
public static readonly SqlDecimal MinValue;
/// <summary>A constant representing the maximum value of a <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</summary>
// Token: 0x040003BA RID: 954
[Token(Token = "0x40003BA")]
public static readonly SqlDecimal MaxValue;
}
}