Files
2026-04-10 22:50:51 +02:00

3363 lines
196 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Converts a base data type to another base data type.</summary>
// Token: 0x020000CE RID: 206
[Token(Token = "0x20000CE")]
public static class Convert
{
/// <summary>Returns the <see cref="T:System.TypeCode" /> for the specified object.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <returns>The <see cref="T:System.TypeCode" /> for <paramref name="value" />, or <see cref="F:System.TypeCode.Empty" /> if <paramref name="value" /> is <see langword="null" />.</returns>
// Token: 0x0600060D RID: 1549 RVA: 0x00005010 File Offset: 0x00003210
[Token(Token = "0x600060D")]
[Address(RVA = "0x2537190", Offset = "0x2535F90", VA = "0x182537190")]
public static TypeCode GetTypeCode(object value)
{
return TypeCode.Empty;
}
/// <summary>Returns an object of the specified type whose value is equivalent to the specified object. A parameter supplies culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="typeCode">The type of object to return.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>An object whose underlying type is <paramref name="typeCode" /> and whose value is equivalent to <paramref name="value" />.
/// -or-
/// A null reference (<see langword="Nothing" /> in Visual Basic), if <paramref name="value" /> is <see langword="null" /> and <paramref name="typeCode" /> is <see cref="F:System.TypeCode.Empty" />, <see cref="F:System.TypeCode.String" />, or <see cref="F:System.TypeCode.Object" />.</returns>
/// <exception cref="T:System.InvalidCastException">This conversion is not supported.
/// -or-
/// <paramref name="value" /> is <see langword="null" /> and <paramref name="typeCode" /> specifies a value type.
/// -or-
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in a format for the <paramref name="typeCode" /> type recognized by <paramref name="provider" />.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is out of the range of the <paramref name="typeCode" /> type.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="typeCode" /> is invalid.</exception>
// Token: 0x0600060E RID: 1550 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600060E")]
[Address(RVA = "0x2534430", Offset = "0x2533230", VA = "0x182534430")]
public static object ChangeType(object value, TypeCode typeCode, IFormatProvider provider)
{
return null;
}
// Token: 0x0600060F RID: 1551 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600060F")]
[Address(RVA = "0x25359A0", Offset = "0x25347A0", VA = "0x1825359A0")]
internal static object DefaultToType(IConvertible value, Type targetType, IFormatProvider provider)
{
return null;
}
/// <summary>Returns an object of the specified type and whose value is equivalent to the specified object.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="conversionType">The type of object to return.</param>
/// <returns>An object whose type is <paramref name="conversionType" /> and whose value is equivalent to <paramref name="value" />.
/// -or-
/// A null reference (<see langword="Nothing" /> in Visual Basic), if <paramref name="value" /> is <see langword="null" /> and <paramref name="conversionType" /> is not a value type.</returns>
/// <exception cref="T:System.InvalidCastException">This conversion is not supported.
/// -or-
/// <paramref name="value" /> is <see langword="null" /> and <paramref name="conversionType" /> is a value type.
/// -or-
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in a format recognized by <paramref name="conversionType" />.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is out of the range of <paramref name="conversionType" />.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="conversionType" /> is <see langword="null" />.</exception>
// Token: 0x06000610 RID: 1552 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000610")]
[Address(RVA = "0x2535670", Offset = "0x2534470", VA = "0x182535670")]
public static object ChangeType(object value, Type conversionType)
{
return null;
}
/// <summary>Returns an object of the specified type whose value is equivalent to the specified object. A parameter supplies culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="conversionType">The type of object to return.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>An object whose type is <paramref name="conversionType" /> and whose value is equivalent to <paramref name="value" />.
/// -or-
/// <paramref name="value" />, if the <see cref="T:System.Type" /> of <paramref name="value" /> and <paramref name="conversionType" /> are equal.
/// -or-
/// A null reference (<see langword="Nothing" /> in Visual Basic), if <paramref name="value" /> is <see langword="null" /> and <paramref name="conversionType" /> is not a value type.</returns>
/// <exception cref="T:System.InvalidCastException">This conversion is not supported.
/// -or-
/// <paramref name="value" /> is <see langword="null" /> and <paramref name="conversionType" /> is a value type.
/// -or-
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in a format for <paramref name="conversionType" /> recognized by <paramref name="provider" />.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is out of the range of <paramref name="conversionType" />.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="conversionType" /> is <see langword="null" />.</exception>
// Token: 0x06000611 RID: 1553 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000611")]
[Address(RVA = "0x2534890", Offset = "0x2533690", VA = "0x182534890")]
public static object ChangeType(object value, Type conversionType, IFormatProvider provider)
{
return null;
}
/// <summary>Converts the value of the specified object to an equivalent Boolean value, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>
/// <see langword="true" /> or <see langword="false" />, which reflects the value returned by invoking the <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" /> method for the underlying type of <paramref name="value" />. If <paramref name="value" /> is <see langword="null" />, the method returns <see langword="false" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is a string that does not equal <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion of <paramref name="value" /> to a <see cref="T:System.Boolean" /> is not supported.</exception>
// Token: 0x06000612 RID: 1554 RVA: 0x00005028 File Offset: 0x00003228
[Token(Token = "0x6000612")]
[Address(RVA = "0x2537CC0", Offset = "0x2536AC0", VA = "0x182537CC0")]
public static bool ToBoolean(object value, IFormatProvider provider)
{
return default(bool);
}
/// <summary>Converts the value of the specified 8-bit signed integer to an equivalent Boolean value.</summary>
/// <param name="value">The 8-bit signed integer to convert.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x06000613 RID: 1555 RVA: 0x00005040 File Offset: 0x00003240
[Token(Token = "0x6000613")]
[Address(RVA = "0x2537DD0", Offset = "0x2536BD0", VA = "0x182537DD0")]
[CLSCompliant(false)]
public static bool ToBoolean(sbyte value)
{
return default(bool);
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to an equivalent Boolean value.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x06000614 RID: 1556 RVA: 0x00005058 File Offset: 0x00003258
[Token(Token = "0x6000614")]
[Address(RVA = "0x2537DD0", Offset = "0x2536BD0", VA = "0x182537DD0")]
public static bool ToBoolean(byte value)
{
return default(bool);
}
/// <summary>Converts the value of the specified 16-bit signed integer to an equivalent Boolean value.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x06000615 RID: 1557 RVA: 0x00005070 File Offset: 0x00003270
[Token(Token = "0x6000615")]
[Address(RVA = "0x2537C10", Offset = "0x2536A10", VA = "0x182537C10")]
public static bool ToBoolean(short value)
{
return default(bool);
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to an equivalent Boolean value.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x06000616 RID: 1558 RVA: 0x00005088 File Offset: 0x00003288
[Token(Token = "0x6000616")]
[Address(RVA = "0x2537C10", Offset = "0x2536A10", VA = "0x182537C10")]
[CLSCompliant(false)]
public static bool ToBoolean(ushort value)
{
return default(bool);
}
/// <summary>Converts the value of the specified 32-bit signed integer to an equivalent Boolean value.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x06000617 RID: 1559 RVA: 0x000050A0 File Offset: 0x000032A0
[Token(Token = "0x6000617")]
[Address(RVA = "0x69B050", Offset = "0x699E50", VA = "0x18069B050")]
public static bool ToBoolean(int value)
{
return default(bool);
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent Boolean value.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x06000618 RID: 1560 RVA: 0x000050B8 File Offset: 0x000032B8
[Token(Token = "0x6000618")]
[Address(RVA = "0x69B050", Offset = "0x699E50", VA = "0x18069B050")]
[CLSCompliant(false)]
public static bool ToBoolean(uint value)
{
return default(bool);
}
/// <summary>Converts the value of the specified 64-bit signed integer to an equivalent Boolean value.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x06000619 RID: 1561 RVA: 0x000050D0 File Offset: 0x000032D0
[Token(Token = "0x6000619")]
[Address(RVA = "0x40B190", Offset = "0x409F90", VA = "0x18040B190")]
public static bool ToBoolean(long value)
{
return default(bool);
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent Boolean value.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x0600061A RID: 1562 RVA: 0x000050E8 File Offset: 0x000032E8
[Token(Token = "0x600061A")]
[Address(RVA = "0x40B190", Offset = "0x409F90", VA = "0x18040B190")]
[CLSCompliant(false)]
public static bool ToBoolean(ulong value)
{
return default(bool);
}
/// <summary>Converts the specified string representation of a logical value to its Boolean equivalent.</summary>
/// <param name="value">A string that contains the value of either <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> equals <see cref="F:System.Boolean.TrueString" />, or <see langword="false" /> if <paramref name="value" /> equals <see cref="F:System.Boolean.FalseString" /> or <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not equal to <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</exception>
// Token: 0x0600061B RID: 1563 RVA: 0x00005100 File Offset: 0x00003300
[Token(Token = "0x600061B")]
[Address(RVA = "0x2537DE0", Offset = "0x2536BE0", VA = "0x182537DE0")]
public static bool ToBoolean(string value)
{
return default(bool);
}
/// <summary>Converts the specified string representation of a logical value to its Boolean equivalent, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains the value of either <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</param>
/// <param name="provider">An object that supplies culture-specific formatting information. This parameter is ignored.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> equals <see cref="F:System.Boolean.TrueString" />, or <see langword="false" /> if <paramref name="value" /> equals <see cref="F:System.Boolean.FalseString" /> or <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not equal to <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</exception>
// Token: 0x0600061C RID: 1564 RVA: 0x00005118 File Offset: 0x00003318
[Token(Token = "0x600061C")]
[Address(RVA = "0x2537D70", Offset = "0x2536B70", VA = "0x182537D70")]
public static bool ToBoolean(string value, IFormatProvider provider)
{
return default(bool);
}
/// <summary>Converts the value of the specified single-precision floating-point number to an equivalent Boolean value.</summary>
/// <param name="value">The single-precision floating-point number to convert.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x0600061D RID: 1565 RVA: 0x00005130 File Offset: 0x00003330
[Token(Token = "0x600061D")]
[Address(RVA = "0x2537E40", Offset = "0x2536C40", VA = "0x182537E40")]
public static bool ToBoolean(float value)
{
return default(bool);
}
/// <summary>Converts the value of the specified double-precision floating-point number to an equivalent Boolean value.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x0600061E RID: 1566 RVA: 0x00005148 File Offset: 0x00003348
[Token(Token = "0x600061E")]
[Address(RVA = "0x2537C20", Offset = "0x2536A20", VA = "0x182537C20")]
public static bool ToBoolean(double value)
{
return default(bool);
}
/// <summary>Converts the value of the specified decimal number to an equivalent Boolean value.</summary>
/// <param name="value">The number to convert.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
// Token: 0x0600061F RID: 1567 RVA: 0x00005160 File Offset: 0x00003360
[Token(Token = "0x600061F")]
[Address(RVA = "0x2537C40", Offset = "0x2536A40", VA = "0x182537C40")]
public static bool ToBoolean(decimal value)
{
return default(bool);
}
/// <summary>Converts the value of the specified object to its equivalent Unicode character, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A Unicode character that is equivalent to <paramref name="value" />, or <see cref="F:System.Char.MinValue" /> if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="value" /> is a null string.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion of <paramref name="value" /> to a <see cref="T:System.Char" /> is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />.</exception>
// Token: 0x06000620 RID: 1568 RVA: 0x00005178 File Offset: 0x00003378
[Token(Token = "0x6000620")]
[Address(RVA = "0x2538970", Offset = "0x2537770", VA = "0x182538970")]
public static char ToChar(object value, IFormatProvider provider)
{
return '\0';
}
/// <summary>Converts the value of the specified 8-bit signed integer to its equivalent Unicode character.</summary>
/// <param name="value">The 8-bit signed integer to convert.</param>
/// <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" />.</exception>
// Token: 0x06000621 RID: 1569 RVA: 0x00005190 File Offset: 0x00003390
[Token(Token = "0x6000621")]
[Address(RVA = "0x25387F0", Offset = "0x25375F0", VA = "0x1825387F0")]
[CLSCompliant(false)]
public static char ToChar(sbyte value)
{
return '\0';
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to its equivalent Unicode character.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
// Token: 0x06000622 RID: 1570 RVA: 0x000051A8 File Offset: 0x000033A8
[Token(Token = "0x6000622")]
[Address(RVA = "0x1E3D0F0", Offset = "0x1E3BEF0", VA = "0x181E3D0F0")]
public static char ToChar(byte value)
{
return '\0';
}
/// <summary>Converts the value of the specified 16-bit signed integer to its equivalent Unicode character.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" />.</exception>
// Token: 0x06000623 RID: 1571 RVA: 0x000051C0 File Offset: 0x000033C0
[Token(Token = "0x6000623")]
[Address(RVA = "0x2538A20", Offset = "0x2537820", VA = "0x182538A20")]
public static char ToChar(short value)
{
return '\0';
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to its equivalent Unicode character.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
// Token: 0x06000624 RID: 1572 RVA: 0x000051D8 File Offset: 0x000033D8
[Token(Token = "0x6000624")]
[Address(RVA = "0x164F550", Offset = "0x164E350", VA = "0x18164F550")]
[CLSCompliant(false)]
public static char ToChar(ushort value)
{
return '\0';
}
/// <summary>Converts the value of the specified 32-bit signed integer to its equivalent Unicode character.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />.</exception>
// Token: 0x06000625 RID: 1573 RVA: 0x000051F0 File Offset: 0x000033F0
[Token(Token = "0x6000625")]
[Address(RVA = "0x2538870", Offset = "0x2537670", VA = "0x182538870")]
public static char ToChar(int value)
{
return '\0';
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to its equivalent Unicode character.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Char.MaxValue" />.</exception>
// Token: 0x06000626 RID: 1574 RVA: 0x00005208 File Offset: 0x00003408
[Token(Token = "0x6000626")]
[Address(RVA = "0x2538770", Offset = "0x2537570", VA = "0x182538770")]
[CLSCompliant(false)]
public static char ToChar(uint value)
{
return '\0';
}
/// <summary>Converts the value of the specified 64-bit signed integer to its equivalent Unicode character.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />.</exception>
// Token: 0x06000627 RID: 1575 RVA: 0x00005220 File Offset: 0x00003420
[Token(Token = "0x6000627")]
[Address(RVA = "0x25388F0", Offset = "0x25376F0", VA = "0x1825388F0")]
public static char ToChar(long value)
{
return '\0';
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to its equivalent Unicode character.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Char.MaxValue" />.</exception>
// Token: 0x06000628 RID: 1576 RVA: 0x00005238 File Offset: 0x00003438
[Token(Token = "0x6000628")]
[Address(RVA = "0x2538B60", Offset = "0x2537960", VA = "0x182538B60")]
[CLSCompliant(false)]
public static char ToChar(ulong value)
{
return '\0';
}
/// <summary>Converts the first character of a specified string to a Unicode character.</summary>
/// <param name="value">A string of length 1.</param>
/// <returns>A Unicode character that is equivalent to the first and only character in <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="value" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">The length of <paramref name="value" /> is not 1.</exception>
// Token: 0x06000629 RID: 1577 RVA: 0x00005250 File Offset: 0x00003450
[Token(Token = "0x6000629")]
[Address(RVA = "0x2538BE0", Offset = "0x25379E0", VA = "0x182538BE0")]
public static char ToChar(string value)
{
return '\0';
}
/// <summary>Converts the first character of a specified string to a Unicode character, using specified culture-specific formatting information.</summary>
/// <param name="value">A string of length 1 or <see langword="null" />.</param>
/// <param name="provider">An object that supplies culture-specific formatting information. This parameter is ignored.</param>
/// <returns>A Unicode character that is equivalent to the first and only character in <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="value" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">The length of <paramref name="value" /> is not 1.</exception>
// Token: 0x0600062A RID: 1578 RVA: 0x00005268 File Offset: 0x00003468
[Token(Token = "0x600062A")]
[Address(RVA = "0x2538AA0", Offset = "0x25378A0", VA = "0x182538AA0")]
public static char ToChar(string value, IFormatProvider provider)
{
return '\0';
}
/// <summary>Converts the value of the specified object to an 8-bit signed integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
// Token: 0x0600062B RID: 1579 RVA: 0x00005280 File Offset: 0x00003480
[Token(Token = "0x600062B")]
[Address(RVA = "0x253AD80", Offset = "0x2539B80", VA = "0x18253AD80")]
[CLSCompliant(false)]
public static sbyte ToSByte(object value, IFormatProvider provider)
{
return 0;
}
/// <summary>Converts the specified Boolean value to the equivalent 8-bit signed integer.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
// Token: 0x0600062C RID: 1580 RVA: 0x00005298 File Offset: 0x00003498
[Token(Token = "0x600062C")]
[Address(RVA = "0x2537DD0", Offset = "0x2536BD0", VA = "0x182537DD0")]
[CLSCompliant(false)]
public static sbyte ToSByte(bool value)
{
return 0;
}
/// <summary>Converts the value of the specified Unicode character to the equivalent 8-bit signed integer.</summary>
/// <param name="value">The Unicode character to convert.</param>
/// <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />.</exception>
// Token: 0x0600062D RID: 1581 RVA: 0x000052B0 File Offset: 0x000034B0
[Token(Token = "0x600062D")]
[Address(RVA = "0x253AC70", Offset = "0x2539A70", VA = "0x18253AC70")]
[CLSCompliant(false)]
public static sbyte ToSByte(char value)
{
return 0;
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 8-bit signed integer.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />.</exception>
// Token: 0x0600062E RID: 1582 RVA: 0x000052C8 File Offset: 0x000034C8
[Token(Token = "0x600062E")]
[Address(RVA = "0x253B110", Offset = "0x2539F10", VA = "0x18253B110")]
[CLSCompliant(false)]
public static sbyte ToSByte(byte value)
{
return 0;
}
/// <summary>Converts the value of the specified 16-bit signed integer to the equivalent 8-bit signed integer.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
// Token: 0x0600062F RID: 1583 RVA: 0x000052E0 File Offset: 0x000034E0
[Token(Token = "0x600062F")]
[Address(RVA = "0x253B220", Offset = "0x253A020", VA = "0x18253B220")]
[CLSCompliant(false)]
public static sbyte ToSByte(short value)
{
return 0;
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 8-bit signed integer.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />.</exception>
// Token: 0x06000630 RID: 1584 RVA: 0x000052F8 File Offset: 0x000034F8
[Token(Token = "0x6000630")]
[Address(RVA = "0x253AF90", Offset = "0x2539D90", VA = "0x18253AF90")]
[CLSCompliant(false)]
public static sbyte ToSByte(ushort value)
{
return 0;
}
/// <summary>Converts the value of the specified 32-bit signed integer to an equivalent 8-bit signed integer.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
// Token: 0x06000631 RID: 1585 RVA: 0x00005310 File Offset: 0x00003510
[Token(Token = "0x6000631")]
[Address(RVA = "0x253B090", Offset = "0x2539E90", VA = "0x18253B090")]
[CLSCompliant(false)]
public static sbyte ToSByte(int value)
{
return 0;
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 8-bit signed integer.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
// Token: 0x06000632 RID: 1586 RVA: 0x00005328 File Offset: 0x00003528
[Token(Token = "0x6000632")]
[Address(RVA = "0x253AF10", Offset = "0x2539D10", VA = "0x18253AF10")]
[CLSCompliant(false)]
public static sbyte ToSByte(uint value)
{
return 0;
}
/// <summary>Converts the value of the specified 64-bit signed integer to an equivalent 8-bit signed integer.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
// Token: 0x06000633 RID: 1587 RVA: 0x00005340 File Offset: 0x00003540
[Token(Token = "0x6000633")]
[Address(RVA = "0x253ACF0", Offset = "0x2539AF0", VA = "0x18253ACF0")]
[CLSCompliant(false)]
public static sbyte ToSByte(long value)
{
return 0;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 8-bit signed integer.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
// Token: 0x06000634 RID: 1588 RVA: 0x00005358 File Offset: 0x00003558
[Token(Token = "0x6000634")]
[Address(RVA = "0x253B010", Offset = "0x2539E10", VA = "0x18253B010")]
[CLSCompliant(false)]
public static sbyte ToSByte(ulong value)
{
return 0;
}
/// <summary>Converts the value of the specified single-precision floating-point number to an equivalent 8-bit signed integer.</summary>
/// <param name="value">The single-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
// Token: 0x06000635 RID: 1589 RVA: 0x00005370 File Offset: 0x00003570
[Token(Token = "0x6000635")]
[Address(RVA = "0x253B2B0", Offset = "0x253A0B0", VA = "0x18253B2B0")]
[CLSCompliant(false)]
public static sbyte ToSByte(float value)
{
return 0;
}
/// <summary>Converts the value of the specified double-precision floating-point number to an equivalent 8-bit signed integer.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
// Token: 0x06000636 RID: 1590 RVA: 0x00005388 File Offset: 0x00003588
[Token(Token = "0x6000636")]
[Address(RVA = "0x253AE30", Offset = "0x2539C30", VA = "0x18253AE30")]
[CLSCompliant(false)]
public static sbyte ToSByte(double value)
{
return 0;
}
/// <summary>Converts the value of the specified decimal number to an equivalent 8-bit signed integer.</summary>
/// <param name="value">The decimal number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
// Token: 0x06000637 RID: 1591 RVA: 0x000053A0 File Offset: 0x000035A0
[Token(Token = "0x6000637")]
[Address(RVA = "0x253B190", Offset = "0x2539F90", VA = "0x18253B190")]
[CLSCompliant(false)]
public static sbyte ToSByte(decimal value)
{
return 0;
}
/// <summary>Converts the specified string representation of a number to an equivalent 8-bit signed integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="value" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
// Token: 0x06000638 RID: 1592 RVA: 0x000053B8 File Offset: 0x000035B8
[Token(Token = "0x6000638")]
[Address(RVA = "0x253B210", Offset = "0x253A010", VA = "0x18253B210")]
[CLSCompliant(false)]
public static sbyte ToSByte(string value, IFormatProvider provider)
{
return 0;
}
/// <summary>Converts the value of the specified object to an 8-bit unsigned integer.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in the property format for a <see cref="T:System.Byte" /> value.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />.
/// -or-
/// Conversion from <paramref name="value" /> to the <see cref="T:System.Byte" /> type is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x06000639 RID: 1593 RVA: 0x000053D0 File Offset: 0x000035D0
[Token(Token = "0x6000639")]
[Address(RVA = "0x2537E50", Offset = "0x2536C50", VA = "0x182537E50")]
public static byte ToByte(object value)
{
return 0;
}
/// <summary>Converts the value of the specified object to an 8-bit unsigned integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in the property format for a <see cref="T:System.Byte" /> value.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />.
/// -or-
/// Conversion from <paramref name="value" /> to the <see cref="T:System.Byte" /> type is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x0600063A RID: 1594 RVA: 0x000053E8 File Offset: 0x000035E8
[Token(Token = "0x600063A")]
[Address(RVA = "0x25381D0", Offset = "0x2536FD0", VA = "0x1825381D0")]
public static byte ToByte(object value, IFormatProvider provider)
{
return 0;
}
/// <summary>Converts the specified Boolean value to the equivalent 8-bit unsigned integer.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
// Token: 0x0600063B RID: 1595 RVA: 0x00005400 File Offset: 0x00003600
[Token(Token = "0x600063B")]
[Address(RVA = "0x2537DD0", Offset = "0x2536BD0", VA = "0x182537DD0")]
public static byte ToByte(bool value)
{
return 0;
}
/// <summary>Converts the value of the specified Unicode character to the equivalent 8-bit unsigned integer.</summary>
/// <param name="value">The Unicode character to convert.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x0600063C RID: 1596 RVA: 0x00005418 File Offset: 0x00003618
[Token(Token = "0x600063C")]
[Address(RVA = "0x2538680", Offset = "0x2537480", VA = "0x182538680")]
public static byte ToByte(char value)
{
return 0;
}
/// <summary>Converts the value of the specified 8-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">The 8-bit signed integer to be converted.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" />.</exception>
// Token: 0x0600063D RID: 1597 RVA: 0x00005430 File Offset: 0x00003630
[Token(Token = "0x600063D")]
[Address(RVA = "0x2538280", Offset = "0x2537080", VA = "0x182538280")]
[CLSCompliant(false)]
public static byte ToByte(sbyte value)
{
return 0;
}
/// <summary>Converts the value of the specified 16-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x0600063E RID: 1598 RVA: 0x00005448 File Offset: 0x00003648
[Token(Token = "0x600063E")]
[Address(RVA = "0x2537EF0", Offset = "0x2536CF0", VA = "0x182537EF0")]
public static byte ToByte(short value)
{
return 0;
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x0600063F RID: 1599 RVA: 0x00005460 File Offset: 0x00003660
[Token(Token = "0x600063F")]
[Address(RVA = "0x2537F70", Offset = "0x2536D70", VA = "0x182537F70")]
[CLSCompliant(false)]
public static byte ToByte(ushort value)
{
return 0;
}
/// <summary>Converts the value of the specified 32-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x06000640 RID: 1600 RVA: 0x00005478 File Offset: 0x00003678
[Token(Token = "0x6000640")]
[Address(RVA = "0x25385E0", Offset = "0x25373E0", VA = "0x1825385E0")]
public static byte ToByte(int value)
{
return 0;
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x06000641 RID: 1601 RVA: 0x00005490 File Offset: 0x00003690
[Token(Token = "0x6000641")]
[Address(RVA = "0x2537FF0", Offset = "0x2536DF0", VA = "0x182537FF0")]
[CLSCompliant(false)]
public static byte ToByte(uint value)
{
return 0;
}
/// <summary>Converts the value of the specified 64-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x06000642 RID: 1602 RVA: 0x000054A8 File Offset: 0x000036A8
[Token(Token = "0x6000642")]
[Address(RVA = "0x2538070", Offset = "0x2536E70", VA = "0x182538070")]
public static byte ToByte(long value)
{
return 0;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x06000643 RID: 1603 RVA: 0x000054C0 File Offset: 0x000036C0
[Token(Token = "0x6000643")]
[Address(RVA = "0x2538450", Offset = "0x2537250", VA = "0x182538450")]
[CLSCompliant(false)]
public static byte ToByte(ulong value)
{
return 0;
}
/// <summary>Converts the value of the specified single-precision floating-point number to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">A single-precision floating-point number.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 8-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />.</exception>
// Token: 0x06000644 RID: 1604 RVA: 0x000054D8 File Offset: 0x000036D8
[Token(Token = "0x6000644")]
[Address(RVA = "0x25384D0", Offset = "0x25372D0", VA = "0x1825384D0")]
public static byte ToByte(float value)
{
return 0;
}
/// <summary>Converts the value of the specified double-precision floating-point number to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 8-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />.</exception>
// Token: 0x06000645 RID: 1605 RVA: 0x000054F0 File Offset: 0x000036F0
[Token(Token = "0x6000645")]
[Address(RVA = "0x2538300", Offset = "0x2537100", VA = "0x182538300")]
public static byte ToByte(double value)
{
return 0;
}
/// <summary>Converts the value of the specified decimal number to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">The number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 8-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />.</exception>
// Token: 0x06000646 RID: 1606 RVA: 0x00005508 File Offset: 0x00003708
[Token(Token = "0x6000646")]
[Address(RVA = "0x25383D0", Offset = "0x25371D0", VA = "0x1825383D0")]
public static byte ToByte(decimal value)
{
return 0;
}
/// <summary>Converts the specified string representation of a number to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x06000647 RID: 1607 RVA: 0x00005520 File Offset: 0x00003720
[Token(Token = "0x6000647")]
[Address(RVA = "0x2538700", Offset = "0x2537500", VA = "0x182538700")]
public static byte ToByte(string value)
{
return 0;
}
/// <summary>Converts the specified string representation of a number to an equivalent 8-bit unsigned integer, using specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x06000648 RID: 1608 RVA: 0x00005538 File Offset: 0x00003738
[Token(Token = "0x6000648")]
[Address(RVA = "0x2538660", Offset = "0x2537460", VA = "0x182538660")]
public static byte ToByte(string value, IFormatProvider provider)
{
return 0;
}
/// <summary>Converts the value of the specified object to a 16-bit signed integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format for an <see cref="T:System.Int16" /> type.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
// Token: 0x06000649 RID: 1609 RVA: 0x00005550 File Offset: 0x00003750
[Token(Token = "0x6000649")]
[Address(RVA = "0x2539CC0", Offset = "0x2538AC0", VA = "0x182539CC0")]
public static short ToInt16(object value, IFormatProvider provider)
{
return 0;
}
/// <summary>Converts the specified Boolean value to the equivalent 16-bit signed integer.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
// Token: 0x0600064A RID: 1610 RVA: 0x00005568 File Offset: 0x00003768
[Token(Token = "0x600064A")]
[Address(RVA = "0x2539FE0", Offset = "0x2538DE0", VA = "0x182539FE0")]
public static short ToInt16(bool value)
{
return 0;
}
/// <summary>Converts the value of the specified Unicode character to the equivalent 16-bit signed integer.</summary>
/// <param name="value">The Unicode character to convert.</param>
/// <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />.</exception>
// Token: 0x0600064B RID: 1611 RVA: 0x00005580 File Offset: 0x00003780
[Token(Token = "0x600064B")]
[Address(RVA = "0x2539D70", Offset = "0x2538B70", VA = "0x182539D70")]
public static short ToInt16(char value)
{
return 0;
}
/// <summary>Converts the value of the specified 8-bit signed integer to the equivalent 16-bit signed integer.</summary>
/// <param name="value">The 8-bit signed integer to convert.</param>
/// <returns>A 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600064C RID: 1612 RVA: 0x00005598 File Offset: 0x00003798
[Token(Token = "0x600064C")]
[Address(RVA = "0x2539B10", Offset = "0x2538910", VA = "0x182539B10")]
[CLSCompliant(false)]
public static short ToInt16(sbyte value)
{
return 0;
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 16-bit signed integer.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600064D RID: 1613 RVA: 0x000055B0 File Offset: 0x000037B0
[Token(Token = "0x600064D")]
[Address(RVA = "0x1E3D0F0", Offset = "0x1E3BEF0", VA = "0x181E3D0F0")]
public static short ToInt16(byte value)
{
return 0;
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 16-bit signed integer.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />.</exception>
// Token: 0x0600064E RID: 1614 RVA: 0x000055C8 File Offset: 0x000037C8
[Token(Token = "0x600064E")]
[Address(RVA = "0x2539B20", Offset = "0x2538920", VA = "0x182539B20")]
[CLSCompliant(false)]
public static short ToInt16(ushort value)
{
return 0;
}
/// <summary>Converts the value of the specified 32-bit signed integer to an equivalent 16-bit signed integer.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>The 16-bit signed integer equivalent of <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />.</exception>
// Token: 0x0600064F RID: 1615 RVA: 0x000055E0 File Offset: 0x000037E0
[Token(Token = "0x600064F")]
[Address(RVA = "0x2539900", Offset = "0x2538700", VA = "0x182539900")]
public static short ToInt16(int value)
{
return 0;
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 16-bit signed integer.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />.</exception>
// Token: 0x06000650 RID: 1616 RVA: 0x000055F8 File Offset: 0x000037F8
[Token(Token = "0x6000650")]
[Address(RVA = "0x2539FF0", Offset = "0x2538DF0", VA = "0x182539FF0")]
[CLSCompliant(false)]
public static short ToInt16(uint value)
{
return 0;
}
/// <summary>Converts the value of the specified 64-bit signed integer to an equivalent 16-bit signed integer.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />.</exception>
// Token: 0x06000651 RID: 1617 RVA: 0x00005610 File Offset: 0x00003810
[Token(Token = "0x6000651")]
[Address(RVA = "0x2539A60", Offset = "0x2538860", VA = "0x182539A60")]
public static short ToInt16(long value)
{
return 0;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 16-bit signed integer.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />.</exception>
// Token: 0x06000652 RID: 1618 RVA: 0x00005628 File Offset: 0x00003828
[Token(Token = "0x6000652")]
[Address(RVA = "0x2539E70", Offset = "0x2538C70", VA = "0x182539E70")]
[CLSCompliant(false)]
public static short ToInt16(ulong value)
{
return 0;
}
/// <summary>Converts the value of the specified single-precision floating-point number to an equivalent 16-bit signed integer.</summary>
/// <param name="value">The single-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />.</exception>
// Token: 0x06000653 RID: 1619 RVA: 0x00005640 File Offset: 0x00003840
[Token(Token = "0x6000653")]
[Address(RVA = "0x2539BA0", Offset = "0x25389A0", VA = "0x182539BA0")]
public static short ToInt16(float value)
{
return 0;
}
/// <summary>Converts the value of the specified double-precision floating-point number to an equivalent 16-bit signed integer.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />.</exception>
// Token: 0x06000654 RID: 1620 RVA: 0x00005658 File Offset: 0x00003858
[Token(Token = "0x6000654")]
[Address(RVA = "0x2539980", Offset = "0x2538780", VA = "0x182539980")]
public static short ToInt16(double value)
{
return 0;
}
/// <summary>Converts the value of the specified decimal number to an equivalent 16-bit signed integer.</summary>
/// <param name="value">The decimal number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />.</exception>
// Token: 0x06000655 RID: 1621 RVA: 0x00005670 File Offset: 0x00003870
[Token(Token = "0x6000655")]
[Address(RVA = "0x2539DF0", Offset = "0x2538BF0", VA = "0x182539DF0")]
public static short ToInt16(decimal value)
{
return 0;
}
/// <summary>Converts the specified string representation of a number to an equivalent 16-bit signed integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 16-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
// Token: 0x06000656 RID: 1622 RVA: 0x00005688 File Offset: 0x00003888
[Token(Token = "0x6000656")]
[Address(RVA = "0x2539AF0", Offset = "0x25388F0", VA = "0x182539AF0")]
public static short ToInt16(string value, IFormatProvider provider)
{
return 0;
}
/// <summary>Converts the value of the specified object to a 16-bit unsigned integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
// Token: 0x06000657 RID: 1623 RVA: 0x000056A0 File Offset: 0x000038A0
[Token(Token = "0x6000657")]
[Address(RVA = "0x253C1D0", Offset = "0x253AFD0", VA = "0x18253C1D0")]
[CLSCompliant(false)]
public static ushort ToUInt16(object value, IFormatProvider provider)
{
return 0;
}
/// <summary>Converts the specified Boolean value to the equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
// Token: 0x06000658 RID: 1624 RVA: 0x000056B8 File Offset: 0x000038B8
[Token(Token = "0x6000658")]
[Address(RVA = "0x2539FE0", Offset = "0x2538DE0", VA = "0x182539FE0")]
[CLSCompliant(false)]
public static ushort ToUInt16(bool value)
{
return 0;
}
/// <summary>Converts the value of the specified Unicode character to the equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The Unicode character to convert.</param>
/// <returns>The 16-bit unsigned integer equivalent to <paramref name="value" />.</returns>
// Token: 0x06000659 RID: 1625 RVA: 0x000056D0 File Offset: 0x000038D0
[Token(Token = "0x6000659")]
[Address(RVA = "0x164F550", Offset = "0x164E350", VA = "0x18164F550")]
[CLSCompliant(false)]
public static ushort ToUInt16(char value)
{
return 0;
}
/// <summary>Converts the value of the specified 8-bit signed integer to the equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The 8-bit signed integer to convert.</param>
/// <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero.</exception>
// Token: 0x0600065A RID: 1626 RVA: 0x000056E8 File Offset: 0x000038E8
[Token(Token = "0x600065A")]
[Address(RVA = "0x253BFB0", Offset = "0x253ADB0", VA = "0x18253BFB0")]
[CLSCompliant(false)]
public static ushort ToUInt16(sbyte value)
{
return 0;
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600065B RID: 1627 RVA: 0x00005700 File Offset: 0x00003900
[Token(Token = "0x600065B")]
[Address(RVA = "0x1E3D0F0", Offset = "0x1E3BEF0", VA = "0x181E3D0F0")]
[CLSCompliant(false)]
public static ushort ToUInt16(byte value)
{
return 0;
}
/// <summary>Converts the value of the specified 16-bit signed integer to the equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero.</exception>
// Token: 0x0600065C RID: 1628 RVA: 0x00005718 File Offset: 0x00003918
[Token(Token = "0x600065C")]
[Address(RVA = "0x253C030", Offset = "0x253AE30", VA = "0x18253C030")]
[CLSCompliant(false)]
public static ushort ToUInt16(short value)
{
return 0;
}
/// <summary>Converts the value of the specified 32-bit signed integer to an equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
// Token: 0x0600065D RID: 1629 RVA: 0x00005730 File Offset: 0x00003930
[Token(Token = "0x600065D")]
[Address(RVA = "0x253C0B0", Offset = "0x253AEB0", VA = "0x18253C0B0")]
[CLSCompliant(false)]
public static ushort ToUInt16(int value)
{
return 0;
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
// Token: 0x0600065E RID: 1630 RVA: 0x00005748 File Offset: 0x00003948
[Token(Token = "0x600065E")]
[Address(RVA = "0x253BF30", Offset = "0x253AD30", VA = "0x18253BF30")]
[CLSCompliant(false)]
public static ushort ToUInt16(uint value)
{
return 0;
}
/// <summary>Converts the value of the specified 64-bit signed integer to an equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
// Token: 0x0600065F RID: 1631 RVA: 0x00005760 File Offset: 0x00003960
[Token(Token = "0x600065F")]
[Address(RVA = "0x253C130", Offset = "0x253AF30", VA = "0x18253C130")]
[CLSCompliant(false)]
public static ushort ToUInt16(long value)
{
return 0;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
// Token: 0x06000660 RID: 1632 RVA: 0x00005778 File Offset: 0x00003978
[Token(Token = "0x6000660")]
[Address(RVA = "0x253C350", Offset = "0x253B150", VA = "0x18253C350")]
[CLSCompliant(false)]
public static ushort ToUInt16(ulong value)
{
return 0;
}
/// <summary>Converts the value of the specified single-precision floating-point number to an equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The single-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
// Token: 0x06000661 RID: 1633 RVA: 0x00005790 File Offset: 0x00003990
[Token(Token = "0x6000661")]
[Address(RVA = "0x253BE20", Offset = "0x253AC20", VA = "0x18253BE20")]
[CLSCompliant(false)]
public static ushort ToUInt16(float value)
{
return 0;
}
/// <summary>Converts the value of the specified double-precision floating-point number to an equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
// Token: 0x06000662 RID: 1634 RVA: 0x000057A8 File Offset: 0x000039A8
[Token(Token = "0x6000662")]
[Address(RVA = "0x253C280", Offset = "0x253B080", VA = "0x18253C280")]
[CLSCompliant(false)]
public static ushort ToUInt16(double value)
{
return 0;
}
/// <summary>Converts the value of the specified decimal number to an equivalent 16-bit unsigned integer.</summary>
/// <param name="value">The decimal number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
// Token: 0x06000663 RID: 1635 RVA: 0x000057C0 File Offset: 0x000039C0
[Token(Token = "0x6000663")]
[Address(RVA = "0x253BDA0", Offset = "0x253ABA0", VA = "0x18253BDA0")]
[CLSCompliant(false)]
public static ushort ToUInt16(decimal value)
{
return 0;
}
/// <summary>Converts the specified string representation of a number to an equivalent 16-bit unsigned integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 16-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
// Token: 0x06000664 RID: 1636 RVA: 0x000057D8 File Offset: 0x000039D8
[Token(Token = "0x6000664")]
[Address(RVA = "0x253C1B0", Offset = "0x253AFB0", VA = "0x18253C1B0")]
[CLSCompliant(false)]
public static ushort ToUInt16(string value, IFormatProvider provider)
{
return 0;
}
/// <summary>Converts the value of the specified object to a 32-bit signed integer.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
/// <returns>A 32-bit signed integer equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
// Token: 0x06000665 RID: 1637 RVA: 0x000057F0 File Offset: 0x000039F0
[Token(Token = "0x6000665")]
[Address(RVA = "0x253A5B0", Offset = "0x25393B0", VA = "0x18253A5B0")]
public static int ToInt32(object value)
{
return 0;
}
/// <summary>Converts the value of the specified object to a 32-bit signed integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
// Token: 0x06000666 RID: 1638 RVA: 0x00005808 File Offset: 0x00003A08
[Token(Token = "0x6000666")]
[Address(RVA = "0x253A2F0", Offset = "0x25390F0", VA = "0x18253A2F0")]
public static int ToInt32(object value, IFormatProvider provider)
{
return 0;
}
/// <summary>Converts the specified Boolean value to the equivalent 32-bit signed integer.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
// Token: 0x06000667 RID: 1639 RVA: 0x00005820 File Offset: 0x00003A20
[Token(Token = "0x6000667")]
[Address(RVA = "0x229C650", Offset = "0x229B450", VA = "0x18229C650")]
public static int ToInt32(bool value)
{
return 0;
}
/// <summary>Converts the value of the specified Unicode character to the equivalent 32-bit signed integer.</summary>
/// <param name="value">The Unicode character to convert.</param>
/// <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x06000668 RID: 1640 RVA: 0x00005838 File Offset: 0x00003A38
[Token(Token = "0x6000668")]
[Address(RVA = "0x164F550", Offset = "0x164E350", VA = "0x18164F550")]
public static int ToInt32(char value)
{
return 0;
}
/// <summary>Converts the value of the specified 8-bit signed integer to the equivalent 32-bit signed integer.</summary>
/// <param name="value">The 8-bit signed integer to convert.</param>
/// <returns>A 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x06000669 RID: 1641 RVA: 0x00005850 File Offset: 0x00003A50
[Token(Token = "0x6000669")]
[Address(RVA = "0x2539B10", Offset = "0x2538910", VA = "0x182539B10")]
[CLSCompliant(false)]
public static int ToInt32(sbyte value)
{
return 0;
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit signed integer.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600066A RID: 1642 RVA: 0x00005868 File Offset: 0x00003A68
[Token(Token = "0x600066A")]
[Address(RVA = "0x1E3D0F0", Offset = "0x1E3BEF0", VA = "0x181E3D0F0")]
public static int ToInt32(byte value)
{
return 0;
}
/// <summary>Converts the value of the specified 16-bit signed integer to an equivalent 32-bit signed integer.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600066B RID: 1643 RVA: 0x00005880 File Offset: 0x00003A80
[Token(Token = "0x600066B")]
[Address(RVA = "0x1EBCA60", Offset = "0x1EBB860", VA = "0x181EBCA60")]
public static int ToInt32(short value)
{
return 0;
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 32-bit signed integer.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600066C RID: 1644 RVA: 0x00005898 File Offset: 0x00003A98
[Token(Token = "0x600066C")]
[Address(RVA = "0x164F550", Offset = "0x164E350", VA = "0x18164F550")]
[CLSCompliant(false)]
public static int ToInt32(ushort value)
{
return 0;
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 32-bit signed integer.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
// Token: 0x0600066D RID: 1645 RVA: 0x000058B0 File Offset: 0x00003AB0
[Token(Token = "0x600066D")]
[Address(RVA = "0x253A4B0", Offset = "0x25392B0", VA = "0x18253A4B0")]
[CLSCompliant(false)]
public static int ToInt32(uint value)
{
return 0;
}
/// <summary>Converts the value of the specified 64-bit signed integer to an equivalent 32-bit signed integer.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />.</exception>
// Token: 0x0600066E RID: 1646 RVA: 0x000058C8 File Offset: 0x00003AC8
[Token(Token = "0x600066E")]
[Address(RVA = "0x253A260", Offset = "0x2539060", VA = "0x18253A260")]
public static int ToInt32(long value)
{
return 0;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 32-bit signed integer.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
// Token: 0x0600066F RID: 1647 RVA: 0x000058E0 File Offset: 0x00003AE0
[Token(Token = "0x600066F")]
[Address(RVA = "0x253A1E0", Offset = "0x2538FE0", VA = "0x18253A1E0")]
[CLSCompliant(false)]
public static int ToInt32(ulong value)
{
return 0;
}
/// <summary>Converts the value of the specified single-precision floating-point number to an equivalent 32-bit signed integer.</summary>
/// <param name="value">The single-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />.</exception>
// Token: 0x06000670 RID: 1648 RVA: 0x000058F8 File Offset: 0x00003AF8
[Token(Token = "0x6000670")]
[Address(RVA = "0x253A530", Offset = "0x2539330", VA = "0x18253A530")]
public static int ToInt32(float value)
{
return 0;
}
/// <summary>Converts the value of the specified double-precision floating-point number to an equivalent 32-bit signed integer.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />.</exception>
// Token: 0x06000671 RID: 1649 RVA: 0x00005910 File Offset: 0x00003B10
[Token(Token = "0x6000671")]
[Address(RVA = "0x253A070", Offset = "0x2538E70", VA = "0x18253A070")]
public static int ToInt32(double value)
{
return 0;
}
/// <summary>Converts the value of the specified decimal number to an equivalent 32-bit signed integer.</summary>
/// <param name="value">The decimal number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />.</exception>
// Token: 0x06000672 RID: 1650 RVA: 0x00005928 File Offset: 0x00003B28
[Token(Token = "0x6000672")]
[Address(RVA = "0x253A180", Offset = "0x2538F80", VA = "0x18253A180")]
public static int ToInt32(decimal value)
{
return 0;
}
/// <summary>Converts the specified string representation of a number to an equivalent 32-bit signed integer.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <returns>A 32-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
// Token: 0x06000673 RID: 1651 RVA: 0x00005940 File Offset: 0x00003B40
[Token(Token = "0x6000673")]
[Address(RVA = "0x253A440", Offset = "0x2539240", VA = "0x18253A440")]
public static int ToInt32(string value)
{
return 0;
}
/// <summary>Converts the specified string representation of a number to an equivalent 32-bit signed integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 32-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
// Token: 0x06000674 RID: 1652 RVA: 0x00005958 File Offset: 0x00003B58
[Token(Token = "0x6000674")]
[Address(RVA = "0x253A590", Offset = "0x2539390", VA = "0x18253A590")]
public static int ToInt32(string value, IFormatProvider provider)
{
return 0;
}
/// <summary>Converts the value of the specified object to a 32-bit unsigned integer.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
// Token: 0x06000675 RID: 1653 RVA: 0x00005970 File Offset: 0x00003B70
[Token(Token = "0x6000675")]
[Address(RVA = "0x253C5D0", Offset = "0x253B3D0", VA = "0x18253C5D0")]
[CLSCompliant(false)]
public static uint ToUInt32(object value)
{
return 0U;
}
/// <summary>Converts the value of the specified object to a 32-bit unsigned integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
// Token: 0x06000676 RID: 1654 RVA: 0x00005988 File Offset: 0x00003B88
[Token(Token = "0x6000676")]
[Address(RVA = "0x253C7F0", Offset = "0x253B5F0", VA = "0x18253C7F0")]
[CLSCompliant(false)]
public static uint ToUInt32(object value, IFormatProvider provider)
{
return 0U;
}
/// <summary>Converts the specified Boolean value to the equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
// Token: 0x06000677 RID: 1655 RVA: 0x000059A0 File Offset: 0x00003BA0
[Token(Token = "0x6000677")]
[Address(RVA = "0x229C650", Offset = "0x229B450", VA = "0x18229C650")]
[CLSCompliant(false)]
public static uint ToUInt32(bool value)
{
return 0U;
}
/// <summary>Converts the value of the specified Unicode character to the equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The Unicode character to convert.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x06000678 RID: 1656 RVA: 0x000059B8 File Offset: 0x00003BB8
[Token(Token = "0x6000678")]
[Address(RVA = "0x164F550", Offset = "0x164E350", VA = "0x18164F550")]
[CLSCompliant(false)]
public static uint ToUInt32(char value)
{
return 0U;
}
/// <summary>Converts the value of the specified 8-bit signed integer to the equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The 8-bit signed integer to convert.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero.</exception>
// Token: 0x06000679 RID: 1657 RVA: 0x000059D0 File Offset: 0x00003BD0
[Token(Token = "0x6000679")]
[Address(RVA = "0x253C670", Offset = "0x253B470", VA = "0x18253C670")]
[CLSCompliant(false)]
public static uint ToUInt32(sbyte value)
{
return 0U;
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600067A RID: 1658 RVA: 0x000059E8 File Offset: 0x00003BE8
[Token(Token = "0x600067A")]
[Address(RVA = "0x1E3D0F0", Offset = "0x1E3BEF0", VA = "0x181E3D0F0")]
[CLSCompliant(false)]
public static uint ToUInt32(byte value)
{
return 0U;
}
/// <summary>Converts the value of the specified 16-bit signed integer to the equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero.</exception>
// Token: 0x0600067B RID: 1659 RVA: 0x00005A00 File Offset: 0x00003C00
[Token(Token = "0x600067B")]
[Address(RVA = "0x253C970", Offset = "0x253B770", VA = "0x18253C970")]
[CLSCompliant(false)]
public static uint ToUInt32(short value)
{
return 0U;
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600067C RID: 1660 RVA: 0x00005A18 File Offset: 0x00003C18
[Token(Token = "0x600067C")]
[Address(RVA = "0x164F550", Offset = "0x164E350", VA = "0x18164F550")]
[CLSCompliant(false)]
public static uint ToUInt32(ushort value)
{
return 0U;
}
/// <summary>Converts the value of the specified 32-bit signed integer to an equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero.</exception>
// Token: 0x0600067D RID: 1661 RVA: 0x00005A30 File Offset: 0x00003C30
[Token(Token = "0x600067D")]
[Address(RVA = "0x253C770", Offset = "0x253B570", VA = "0x18253C770")]
[CLSCompliant(false)]
public static uint ToUInt32(int value)
{
return 0U;
}
/// <summary>Converts the value of the specified 64-bit signed integer to an equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
// Token: 0x0600067E RID: 1662 RVA: 0x00005A48 File Offset: 0x00003C48
[Token(Token = "0x600067E")]
[Address(RVA = "0x253CA10", Offset = "0x253B810", VA = "0x18253CA10")]
[CLSCompliant(false)]
public static uint ToUInt32(long value)
{
return 0U;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
// Token: 0x0600067F RID: 1663 RVA: 0x00005A60 File Offset: 0x00003C60
[Token(Token = "0x600067F")]
[Address(RVA = "0x253C6F0", Offset = "0x253B4F0", VA = "0x18253C6F0")]
[CLSCompliant(false)]
public static uint ToUInt32(ulong value)
{
return 0U;
}
/// <summary>Converts the value of the specified single-precision floating-point number to an equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The single-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
// Token: 0x06000680 RID: 1664 RVA: 0x00005A78 File Offset: 0x00003C78
[Token(Token = "0x6000680")]
[Address(RVA = "0x253CA90", Offset = "0x253B890", VA = "0x18253CA90")]
[CLSCompliant(false)]
public static uint ToUInt32(float value)
{
return 0U;
}
/// <summary>Converts the value of the specified double-precision floating-point number to an equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
// Token: 0x06000681 RID: 1665 RVA: 0x00005A90 File Offset: 0x00003C90
[Token(Token = "0x6000681")]
[Address(RVA = "0x253C8A0", Offset = "0x253B6A0", VA = "0x18253C8A0")]
[CLSCompliant(false)]
public static uint ToUInt32(double value)
{
return 0U;
}
/// <summary>Converts the value of the specified decimal number to an equivalent 32-bit unsigned integer.</summary>
/// <param name="value">The decimal number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
// Token: 0x06000682 RID: 1666 RVA: 0x00005AA8 File Offset: 0x00003CA8
[Token(Token = "0x6000682")]
[Address(RVA = "0x253C4B0", Offset = "0x253B2B0", VA = "0x18253C4B0")]
[CLSCompliant(false)]
public static uint ToUInt32(decimal value)
{
return 0U;
}
/// <summary>Converts the specified string representation of a number to an equivalent 32-bit unsigned integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
// Token: 0x06000683 RID: 1667 RVA: 0x00005AC0 File Offset: 0x00003CC0
[Token(Token = "0x6000683")]
[Address(RVA = "0x253C9F0", Offset = "0x253B7F0", VA = "0x18253C9F0")]
[CLSCompliant(false)]
public static uint ToUInt32(string value, IFormatProvider provider)
{
return 0U;
}
/// <summary>Converts the value of the specified object to a 64-bit signed integer.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
/// <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
// Token: 0x06000684 RID: 1668 RVA: 0x00005AD8 File Offset: 0x00003CD8
[Token(Token = "0x6000684")]
[Address(RVA = "0x253A710", Offset = "0x2539510", VA = "0x18253A710")]
public static long ToInt64(object value)
{
return 0L;
}
/// <summary>Converts the value of the specified object to a 64-bit signed integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
// Token: 0x06000685 RID: 1669 RVA: 0x00005AF0 File Offset: 0x00003CF0
[Token(Token = "0x6000685")]
[Address(RVA = "0x253AAB0", Offset = "0x25398B0", VA = "0x18253AAB0")]
public static long ToInt64(object value, IFormatProvider provider)
{
return 0L;
}
/// <summary>Converts the specified Boolean value to the equivalent 64-bit signed integer.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
// Token: 0x06000686 RID: 1670 RVA: 0x00005B08 File Offset: 0x00003D08
[Token(Token = "0x6000686")]
[Address(RVA = "0x253AB60", Offset = "0x2539960", VA = "0x18253AB60")]
public static long ToInt64(bool value)
{
return 0L;
}
/// <summary>Converts the value of the specified Unicode character to the equivalent 64-bit signed integer.</summary>
/// <param name="value">The Unicode character to convert.</param>
/// <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x06000687 RID: 1671 RVA: 0x00005B20 File Offset: 0x00003D20
[Token(Token = "0x6000687")]
[Address(RVA = "0x164F550", Offset = "0x164E350", VA = "0x18164F550")]
public static long ToInt64(char value)
{
return 0L;
}
/// <summary>Converts the value of the specified 8-bit signed integer to the equivalent 64-bit signed integer.</summary>
/// <param name="value">The 8-bit signed integer to convert.</param>
/// <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x06000688 RID: 1672 RVA: 0x00005B38 File Offset: 0x00003D38
[Token(Token = "0x6000688")]
[Address(RVA = "0x253AB70", Offset = "0x2539970", VA = "0x18253AB70")]
[CLSCompliant(false)]
public static long ToInt64(sbyte value)
{
return 0L;
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 64-bit signed integer.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x06000689 RID: 1673 RVA: 0x00005B50 File Offset: 0x00003D50
[Token(Token = "0x6000689")]
[Address(RVA = "0x1E3D0F0", Offset = "0x1E3BEF0", VA = "0x181E3D0F0")]
public static long ToInt64(byte value)
{
return 0L;
}
/// <summary>Converts the value of the specified 16-bit signed integer to an equivalent 64-bit signed integer.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600068A RID: 1674 RVA: 0x00005B68 File Offset: 0x00003D68
[Token(Token = "0x600068A")]
[Address(RVA = "0x253A650", Offset = "0x2539450", VA = "0x18253A650")]
public static long ToInt64(short value)
{
return 0L;
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 64-bit signed integer.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600068B RID: 1675 RVA: 0x00005B80 File Offset: 0x00003D80
[Token(Token = "0x600068B")]
[Address(RVA = "0x164F550", Offset = "0x164E350", VA = "0x18164F550")]
[CLSCompliant(false)]
public static long ToInt64(ushort value)
{
return 0L;
}
/// <summary>Converts the value of the specified 32-bit signed integer to an equivalent 64-bit signed integer.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600068C RID: 1676 RVA: 0x00005B98 File Offset: 0x00003D98
[Token(Token = "0x600068C")]
[Address(RVA = "0x253A7B0", Offset = "0x25395B0", VA = "0x18253A7B0")]
public static long ToInt64(int value)
{
return 0L;
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 64-bit signed integer.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600068D RID: 1677 RVA: 0x00005BB0 File Offset: 0x00003DB0
[Token(Token = "0x600068D")]
[Address(RVA = "0x8DB900", Offset = "0x8DA700", VA = "0x1808DB900")]
[CLSCompliant(false)]
public static long ToInt64(uint value)
{
return 0L;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 64-bit signed integer.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" />.</exception>
// Token: 0x0600068E RID: 1678 RVA: 0x00005BC8 File Offset: 0x00003DC8
[Token(Token = "0x600068E")]
[Address(RVA = "0x253A660", Offset = "0x2539460", VA = "0x18253A660")]
[CLSCompliant(false)]
public static long ToInt64(ulong value)
{
return 0L;
}
/// <summary>Converts the value of the specified single-precision floating-point number to an equivalent 64-bit signed integer.</summary>
/// <param name="value">The single-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />.</exception>
// Token: 0x0600068F RID: 1679 RVA: 0x00005BE0 File Offset: 0x00003DE0
[Token(Token = "0x600068F")]
[Address(RVA = "0x253A8D0", Offset = "0x25396D0", VA = "0x18253A8D0")]
public static long ToInt64(float value)
{
return 0L;
}
/// <summary>Converts the value of the specified double-precision floating-point number to an equivalent 64-bit signed integer.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />.</exception>
// Token: 0x06000690 RID: 1680 RVA: 0x00005BF8 File Offset: 0x00003DF8
[Token(Token = "0x6000690")]
[Address(RVA = "0x253A7C0", Offset = "0x25395C0", VA = "0x18253A7C0")]
public static long ToInt64(double value)
{
return 0L;
}
/// <summary>Converts the value of the specified decimal number to an equivalent 64-bit signed integer.</summary>
/// <param name="value">The decimal number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />.</exception>
// Token: 0x06000691 RID: 1681 RVA: 0x00005C10 File Offset: 0x00003E10
[Token(Token = "0x6000691")]
[Address(RVA = "0x253A850", Offset = "0x2539650", VA = "0x18253A850")]
public static long ToInt64(decimal value)
{
return 0L;
}
/// <summary>Converts the specified string representation of a number to an equivalent 64-bit signed integer.</summary>
/// <param name="value">A string that contains a number to convert.</param>
/// <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
// Token: 0x06000692 RID: 1682 RVA: 0x00005C28 File Offset: 0x00003E28
[Token(Token = "0x6000692")]
[Address(RVA = "0x253AA40", Offset = "0x2539840", VA = "0x18253AA40")]
public static long ToInt64(string value)
{
return 0L;
}
/// <summary>Converts the specified string representation of a number to an equivalent 64-bit signed integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
// Token: 0x06000693 RID: 1683 RVA: 0x00005C40 File Offset: 0x00003E40
[Token(Token = "0x6000693")]
[Address(RVA = "0x253A6F0", Offset = "0x25394F0", VA = "0x18253A6F0")]
public static long ToInt64(string value, IFormatProvider provider)
{
return 0L;
}
/// <summary>Converts the value of the specified object to a 64-bit unsigned integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
// Token: 0x06000694 RID: 1684 RVA: 0x00005C58 File Offset: 0x00003E58
[Token(Token = "0x6000694")]
[Address(RVA = "0x253CF90", Offset = "0x253BD90", VA = "0x18253CF90")]
[CLSCompliant(false)]
public static ulong ToUInt64(object value, IFormatProvider provider)
{
return 0UL;
}
/// <summary>Converts the specified Boolean value to the equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
// Token: 0x06000695 RID: 1685 RVA: 0x00005C70 File Offset: 0x00003E70
[Token(Token = "0x6000695")]
[Address(RVA = "0x229C650", Offset = "0x229B450", VA = "0x18229C650")]
[CLSCompliant(false)]
public static ulong ToUInt64(bool value)
{
return 0UL;
}
/// <summary>Converts the value of the specified Unicode character to the equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The Unicode character to convert.</param>
/// <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x06000696 RID: 1686 RVA: 0x00005C88 File Offset: 0x00003E88
[Token(Token = "0x6000696")]
[Address(RVA = "0x164F550", Offset = "0x164E350", VA = "0x18164F550")]
[CLSCompliant(false)]
public static ulong ToUInt64(char value)
{
return 0UL;
}
/// <summary>Converts the value of the specified 8-bit signed integer to the equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The 8-bit signed integer to convert.</param>
/// <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero.</exception>
// Token: 0x06000697 RID: 1687 RVA: 0x00005CA0 File Offset: 0x00003EA0
[Token(Token = "0x6000697")]
[Address(RVA = "0x253CC10", Offset = "0x253BA10", VA = "0x18253CC10")]
[CLSCompliant(false)]
public static ulong ToUInt64(sbyte value)
{
return 0UL;
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x06000698 RID: 1688 RVA: 0x00005CB8 File Offset: 0x00003EB8
[Token(Token = "0x6000698")]
[Address(RVA = "0x1E3D0F0", Offset = "0x1E3BEF0", VA = "0x181E3D0F0")]
[CLSCompliant(false)]
public static ulong ToUInt64(byte value)
{
return 0UL;
}
/// <summary>Converts the value of the specified 16-bit signed integer to the equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero.</exception>
// Token: 0x06000699 RID: 1689 RVA: 0x00005CD0 File Offset: 0x00003ED0
[Token(Token = "0x6000699")]
[Address(RVA = "0x253CE50", Offset = "0x253BC50", VA = "0x18253CE50")]
[CLSCompliant(false)]
public static ulong ToUInt64(short value)
{
return 0UL;
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600069A RID: 1690 RVA: 0x00005CE8 File Offset: 0x00003EE8
[Token(Token = "0x600069A")]
[Address(RVA = "0x164F550", Offset = "0x164E350", VA = "0x18164F550")]
[CLSCompliant(false)]
public static ulong ToUInt64(ushort value)
{
return 0UL;
}
/// <summary>Converts the value of the specified 32-bit signed integer to an equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero.</exception>
// Token: 0x0600069B RID: 1691 RVA: 0x00005D00 File Offset: 0x00003F00
[Token(Token = "0x600069B")]
[Address(RVA = "0x253CC90", Offset = "0x253BA90", VA = "0x18253CC90")]
[CLSCompliant(false)]
public static ulong ToUInt64(int value)
{
return 0UL;
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x0600069C RID: 1692 RVA: 0x00005D18 File Offset: 0x00003F18
[Token(Token = "0x600069C")]
[Address(RVA = "0x8DB900", Offset = "0x8DA700", VA = "0x1808DB900")]
[CLSCompliant(false)]
public static ulong ToUInt64(uint value)
{
return 0UL;
}
/// <summary>Converts the value of the specified 64-bit signed integer to an equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero.</exception>
// Token: 0x0600069D RID: 1693 RVA: 0x00005D30 File Offset: 0x00003F30
[Token(Token = "0x600069D")]
[Address(RVA = "0x253D130", Offset = "0x253BF30", VA = "0x18253D130")]
[CLSCompliant(false)]
public static ulong ToUInt64(long value)
{
return 0UL;
}
/// <summary>Converts the value of the specified single-precision floating-point number to an equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The single-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
// Token: 0x0600069E RID: 1694 RVA: 0x00005D48 File Offset: 0x00003F48
[Token(Token = "0x600069E")]
[Address(RVA = "0x253D040", Offset = "0x253BE40", VA = "0x18253D040")]
[CLSCompliant(false)]
public static ulong ToUInt64(float value)
{
return 0UL;
}
/// <summary>Converts the value of the specified double-precision floating-point number to an equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
// Token: 0x0600069F RID: 1695 RVA: 0x00005D60 File Offset: 0x00003F60
[Token(Token = "0x600069F")]
[Address(RVA = "0x253CED0", Offset = "0x253BCD0", VA = "0x18253CED0")]
[CLSCompliant(false)]
public static ulong ToUInt64(double value)
{
return 0UL;
}
/// <summary>Converts the value of the specified decimal number to an equivalent 64-bit unsigned integer.</summary>
/// <param name="value">The decimal number to convert.</param>
/// <returns>
/// <paramref name="value" />, rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
// Token: 0x060006A0 RID: 1696 RVA: 0x00005D78 File Offset: 0x00003F78
[Token(Token = "0x60006A0")]
[Address(RVA = "0x253CD10", Offset = "0x253BB10", VA = "0x18253CD10")]
[CLSCompliant(false)]
public static ulong ToUInt64(decimal value)
{
return 0UL;
}
/// <summary>Converts the specified string representation of a number to an equivalent 64-bit unsigned integer.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
// Token: 0x060006A1 RID: 1697 RVA: 0x00005D90 File Offset: 0x00003F90
[Token(Token = "0x60006A1")]
[Address(RVA = "0x253CBA0", Offset = "0x253B9A0", VA = "0x18253CBA0")]
[CLSCompliant(false)]
public static ulong ToUInt64(string value)
{
return 0UL;
}
/// <summary>Converts the specified string representation of a number to an equivalent 64-bit unsigned integer, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A 64-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
// Token: 0x060006A2 RID: 1698 RVA: 0x00005DA8 File Offset: 0x00003FA8
[Token(Token = "0x60006A2")]
[Address(RVA = "0x253CD90", Offset = "0x253BB90", VA = "0x18253CD90")]
[CLSCompliant(false)]
public static ulong ToUInt64(string value, IFormatProvider provider)
{
return 0UL;
}
/// <summary>Converts the value of the specified object to an single-precision floating-point number, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />.</exception>
// Token: 0x060006A3 RID: 1699 RVA: 0x00005DC0 File Offset: 0x00003FC0
[Token(Token = "0x60006A3")]
[Address(RVA = "0x253B540", Offset = "0x253A340", VA = "0x18253B540")]
public static float ToSingle(object value, IFormatProvider provider)
{
return 0f;
}
/// <summary>Converts the value of the specified 8-bit signed integer to the equivalent single-precision floating-point number.</summary>
/// <param name="value">The 8-bit signed integer to convert.</param>
/// <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006A4 RID: 1700 RVA: 0x00005DD8 File Offset: 0x00003FD8
[Token(Token = "0x60006A4")]
[Address(RVA = "0x253B4A0", Offset = "0x253A2A0", VA = "0x18253B4A0")]
[CLSCompliant(false)]
public static float ToSingle(sbyte value)
{
return 0f;
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent single-precision floating-point number.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006A5 RID: 1701 RVA: 0x00005DF0 File Offset: 0x00003FF0
[Token(Token = "0x60006A5")]
[Address(RVA = "0x253B3D0", Offset = "0x253A1D0", VA = "0x18253B3D0")]
public static float ToSingle(byte value)
{
return 0f;
}
/// <summary>Converts the value of the specified 16-bit signed integer to an equivalent single-precision floating-point number.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006A6 RID: 1702 RVA: 0x00005E08 File Offset: 0x00004008
[Token(Token = "0x60006A6")]
[Address(RVA = "0x253B460", Offset = "0x253A260", VA = "0x18253B460")]
public static float ToSingle(short value)
{
return 0f;
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent single-precision floating-point number.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006A7 RID: 1703 RVA: 0x00005E20 File Offset: 0x00004020
[Token(Token = "0x60006A7")]
[Address(RVA = "0x253B610", Offset = "0x253A410", VA = "0x18253B610")]
[CLSCompliant(false)]
public static float ToSingle(ushort value)
{
return 0f;
}
/// <summary>Converts the value of the specified 32-bit signed integer to an equivalent single-precision floating-point number.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006A8 RID: 1704 RVA: 0x00005E38 File Offset: 0x00004038
[Token(Token = "0x60006A8")]
[Address(RVA = "0x253B470", Offset = "0x253A270", VA = "0x18253B470")]
public static float ToSingle(int value)
{
return 0f;
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent single-precision floating-point number.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006A9 RID: 1705 RVA: 0x00005E50 File Offset: 0x00004050
[Token(Token = "0x60006A9")]
[Address(RVA = "0x253B4B0", Offset = "0x253A2B0", VA = "0x18253B4B0")]
[CLSCompliant(false)]
public static float ToSingle(uint value)
{
return 0f;
}
/// <summary>Converts the value of the specified 64-bit signed integer to an equivalent single-precision floating-point number.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006AA RID: 1706 RVA: 0x00005E68 File Offset: 0x00004068
[Token(Token = "0x60006AA")]
[Address(RVA = "0x253B450", Offset = "0x253A250", VA = "0x18253B450")]
public static float ToSingle(long value)
{
return 0f;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent single-precision floating-point number.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006AB RID: 1707 RVA: 0x00005E80 File Offset: 0x00004080
[Token(Token = "0x60006AB")]
[Address(RVA = "0x253B5F0", Offset = "0x253A3F0", VA = "0x18253B5F0")]
[CLSCompliant(false)]
public static float ToSingle(ulong value)
{
return 0f;
}
/// <summary>Converts the value of the specified double-precision floating-point number to an equivalent single-precision floating-point number.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.
/// <paramref name="value" /> is rounded using rounding to nearest. For example, when rounded to two decimals, the value 2.345 becomes 2.34 and the value 2.355 becomes 2.36.</returns>
// Token: 0x060006AC RID: 1708 RVA: 0x00005E98 File Offset: 0x00004098
[Token(Token = "0x60006AC")]
[Address(RVA = "0x253B530", Offset = "0x253A330", VA = "0x18253B530")]
public static float ToSingle(double value)
{
return 0f;
}
/// <summary>Converts the value of the specified decimal number to an equivalent single-precision floating-point number.</summary>
/// <param name="value">The decimal number to convert.</param>
/// <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.
/// <paramref name="value" /> is rounded using rounding to nearest. For example, when rounded to two decimals, the value 2.345 becomes 2.34 and the value 2.355 becomes 2.36.</returns>
// Token: 0x060006AD RID: 1709 RVA: 0x00005EB0 File Offset: 0x000040B0
[Token(Token = "0x60006AD")]
[Address(RVA = "0x253B4D0", Offset = "0x253A2D0", VA = "0x18253B4D0")]
public static float ToSingle(decimal value)
{
return 0f;
}
/// <summary>Converts the specified string representation of a number to an equivalent single-precision floating-point number.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <returns>A single-precision floating-point number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not a number in a valid format.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />.</exception>
// Token: 0x060006AE RID: 1710 RVA: 0x00005EC8 File Offset: 0x000040C8
[Token(Token = "0x60006AE")]
[Address(RVA = "0x253B3E0", Offset = "0x253A1E0", VA = "0x18253B3E0")]
public static float ToSingle(string value)
{
return 0f;
}
/// <summary>Converts the specified string representation of a number to an equivalent single-precision floating-point number, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A single-precision floating-point number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not a number in a valid format.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />.</exception>
// Token: 0x060006AF RID: 1711 RVA: 0x00005EE0 File Offset: 0x000040E0
[Token(Token = "0x60006AF")]
[Address(RVA = "0x253B480", Offset = "0x253A280", VA = "0x18253B480")]
public static float ToSingle(string value, IFormatProvider provider)
{
return 0f;
}
/// <summary>Converts the specified Boolean value to the equivalent single-precision floating-point number.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
// Token: 0x060006B0 RID: 1712 RVA: 0x00005EF8 File Offset: 0x000040F8
[Token(Token = "0x60006B0")]
[Address(RVA = "0x253B4C0", Offset = "0x253A2C0", VA = "0x18253B4C0")]
public static float ToSingle(bool value)
{
return 0f;
}
/// <summary>Converts the value of the specified object to a double-precision floating-point number.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
/// <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format for a <see cref="T:System.Double" /> type.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />.</exception>
// Token: 0x060006B1 RID: 1713 RVA: 0x00005F10 File Offset: 0x00004110
[Token(Token = "0x60006B1")]
[Address(RVA = "0x25397D0", Offset = "0x25385D0", VA = "0x1825397D0")]
public static double ToDouble(object value)
{
return 0.0;
}
/// <summary>Converts the value of the specified object to an double-precision floating-point number, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format for a <see cref="T:System.Double" /> type.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />.</exception>
// Token: 0x060006B2 RID: 1714 RVA: 0x00005F28 File Offset: 0x00004128
[Token(Token = "0x60006B2")]
[Address(RVA = "0x2539620", Offset = "0x2538420", VA = "0x182539620")]
public static double ToDouble(object value, IFormatProvider provider)
{
return 0.0;
}
/// <summary>Converts the value of the specified 8-bit signed integer to the equivalent double-precision floating-point number.</summary>
/// <param name="value">The 8-bit signed integer to convert.</param>
/// <returns>The 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006B3 RID: 1715 RVA: 0x00005F40 File Offset: 0x00004140
[Token(Token = "0x60006B3")]
[Address(RVA = "0x25396F0", Offset = "0x25384F0", VA = "0x1825396F0")]
[CLSCompliant(false)]
public static double ToDouble(sbyte value)
{
return 0.0;
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent double-precision floating-point number.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>The double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006B4 RID: 1716 RVA: 0x00005F58 File Offset: 0x00004158
[Token(Token = "0x60006B4")]
[Address(RVA = "0x25398F0", Offset = "0x25386F0", VA = "0x1825398F0")]
public static double ToDouble(byte value)
{
return 0.0;
}
/// <summary>Converts the value of the specified 16-bit signed integer to an equivalent double-precision floating-point number.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>A double-precision floating-point number equivalent to <paramref name="value" />.</returns>
// Token: 0x060006B5 RID: 1717 RVA: 0x00005F70 File Offset: 0x00004170
[Token(Token = "0x60006B5")]
[Address(RVA = "0x25397B0", Offset = "0x25385B0", VA = "0x1825397B0")]
public static double ToDouble(short value)
{
return 0.0;
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent double-precision floating-point number.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006B6 RID: 1718 RVA: 0x00005F88 File Offset: 0x00004188
[Token(Token = "0x60006B6")]
[Address(RVA = "0x2539700", Offset = "0x2538500", VA = "0x182539700")]
[CLSCompliant(false)]
public static double ToDouble(ushort value)
{
return 0.0;
}
/// <summary>Converts the value of the specified 32-bit signed integer to an equivalent double-precision floating-point number.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006B7 RID: 1719 RVA: 0x00005FA0 File Offset: 0x000041A0
[Token(Token = "0x60006B7")]
[Address(RVA = "0x2539870", Offset = "0x2538670", VA = "0x182539870")]
public static double ToDouble(int value)
{
return 0.0;
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent double-precision floating-point number.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006B8 RID: 1720 RVA: 0x00005FB8 File Offset: 0x000041B8
[Token(Token = "0x60006B8")]
[Address(RVA = "0x25397C0", Offset = "0x25385C0", VA = "0x1825397C0")]
[CLSCompliant(false)]
public static double ToDouble(uint value)
{
return 0.0;
}
/// <summary>Converts the value of the specified 64-bit signed integer to an equivalent double-precision floating-point number.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006B9 RID: 1721 RVA: 0x00005FD0 File Offset: 0x000041D0
[Token(Token = "0x60006B9")]
[Address(RVA = "0x2539710", Offset = "0x2538510", VA = "0x182539710")]
public static double ToDouble(long value)
{
return 0.0;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent double-precision floating-point number.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006BA RID: 1722 RVA: 0x00005FE8 File Offset: 0x000041E8
[Token(Token = "0x60006BA")]
[Address(RVA = "0x25396D0", Offset = "0x25384D0", VA = "0x1825396D0")]
[CLSCompliant(false)]
public static double ToDouble(ulong value)
{
return 0.0;
}
/// <summary>Converts the value of the specified single-precision floating-point number to an equivalent double-precision floating-point number.</summary>
/// <param name="value">The single-precision floating-point number.</param>
/// <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006BB RID: 1723 RVA: 0x00006000 File Offset: 0x00004200
[Token(Token = "0x60006BB")]
[Address(RVA = "0x2539720", Offset = "0x2538520", VA = "0x182539720")]
public static double ToDouble(float value)
{
return 0.0;
}
/// <summary>Converts the value of the specified decimal number to an equivalent double-precision floating-point number.</summary>
/// <param name="value">The decimal number to convert.</param>
/// <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006BC RID: 1724 RVA: 0x00006018 File Offset: 0x00004218
[Token(Token = "0x60006BC")]
[Address(RVA = "0x2539880", Offset = "0x2538680", VA = "0x182539880")]
public static double ToDouble(decimal value)
{
return 0.0;
}
/// <summary>Converts the specified string representation of a number to an equivalent double-precision floating-point number, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A double-precision floating-point number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not a number in a valid format.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />.</exception>
// Token: 0x060006BD RID: 1725 RVA: 0x00006030 File Offset: 0x00004230
[Token(Token = "0x60006BD")]
[Address(RVA = "0x2539730", Offset = "0x2538530", VA = "0x182539730")]
public static double ToDouble(string value, IFormatProvider provider)
{
return 0.0;
}
/// <summary>Converts the specified Boolean value to the equivalent double-precision floating-point number.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
// Token: 0x060006BE RID: 1726 RVA: 0x00006048 File Offset: 0x00004248
[Token(Token = "0x60006BE")]
[Address(RVA = "0x25398E0", Offset = "0x25386E0", VA = "0x1825398E0")]
public static double ToDouble(bool value)
{
return 0.0;
}
/// <summary>Converts the value of the specified object to an equivalent decimal number, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A decimal number that is equivalent to <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not in an appropriate format for a <see cref="T:System.Decimal" /> type.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion is not supported.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />.</exception>
// Token: 0x060006BF RID: 1727 RVA: 0x00006060 File Offset: 0x00004260
[Token(Token = "0x60006BF")]
[Address(RVA = "0x2539270", Offset = "0x2538070", VA = "0x182539270")]
public static decimal ToDecimal(object value, IFormatProvider provider)
{
return 0m;
}
/// <summary>Converts the value of the specified 8-bit signed integer to the equivalent decimal number.</summary>
/// <param name="value">The 8-bit signed integer to convert.</param>
/// <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006C0 RID: 1728 RVA: 0x00006078 File Offset: 0x00004278
[Token(Token = "0x60006C0")]
[Address(RVA = "0x2539050", Offset = "0x2537E50", VA = "0x182539050")]
[CLSCompliant(false)]
public static decimal ToDecimal(sbyte value)
{
return 0m;
}
/// <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent decimal number.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <returns>The decimal number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006C1 RID: 1729 RVA: 0x00006090 File Offset: 0x00004290
[Token(Token = "0x60006C1")]
[Address(RVA = "0x2538F70", Offset = "0x2537D70", VA = "0x182538F70")]
public static decimal ToDecimal(byte value)
{
return 0m;
}
/// <summary>Converts the value of the specified 16-bit signed integer to an equivalent decimal number.</summary>
/// <param name="value">The 16-bit signed integer to convert.</param>
/// <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006C2 RID: 1730 RVA: 0x000060A8 File Offset: 0x000042A8
[Token(Token = "0x60006C2")]
[Address(RVA = "0x25393F0", Offset = "0x25381F0", VA = "0x1825393F0")]
public static decimal ToDecimal(short value)
{
return 0m;
}
/// <summary>Converts the value of the specified 16-bit unsigned integer to an equivalent decimal number.</summary>
/// <param name="value">The 16-bit unsigned integer to convert.</param>
/// <returns>The decimal number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006C3 RID: 1731 RVA: 0x000060C0 File Offset: 0x000042C0
[Token(Token = "0x60006C3")]
[Address(RVA = "0x25395B0", Offset = "0x25383B0", VA = "0x1825395B0")]
[CLSCompliant(false)]
public static decimal ToDecimal(ushort value)
{
return 0m;
}
/// <summary>Converts the value of the specified 32-bit signed integer to an equivalent decimal number.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006C4 RID: 1732 RVA: 0x000060D8 File Offset: 0x000042D8
[Token(Token = "0x60006C4")]
[Address(RVA = "0x25390C0", Offset = "0x2537EC0", VA = "0x1825390C0")]
public static decimal ToDecimal(int value)
{
return 0m;
}
/// <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent decimal number.</summary>
/// <param name="value">The 32-bit unsigned integer to convert.</param>
/// <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006C5 RID: 1733 RVA: 0x000060F0 File Offset: 0x000042F0
[Token(Token = "0x60006C5")]
[Address(RVA = "0x2538FE0", Offset = "0x2537DE0", VA = "0x182538FE0")]
[CLSCompliant(false)]
public static decimal ToDecimal(uint value)
{
return 0m;
}
/// <summary>Converts the value of the specified 64-bit signed integer to an equivalent decimal number.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006C6 RID: 1734 RVA: 0x00006108 File Offset: 0x00004308
[Token(Token = "0x60006C6")]
[Address(RVA = "0x2539460", Offset = "0x2538260", VA = "0x182539460")]
public static decimal ToDecimal(long value)
{
return 0m;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent decimal number.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
// Token: 0x060006C7 RID: 1735 RVA: 0x00006120 File Offset: 0x00004320
[Token(Token = "0x60006C7")]
[Address(RVA = "0x2539200", Offset = "0x2538000", VA = "0x182539200")]
[CLSCompliant(false)]
public static decimal ToDecimal(ulong value)
{
return 0m;
}
/// <summary>Converts the value of the specified single-precision floating-point number to the equivalent decimal number.</summary>
/// <param name="value">The single-precision floating-point number to convert.</param>
/// <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Decimal.MaxValue" /> or less than <see cref="F:System.Decimal.MinValue" />.</exception>
// Token: 0x060006C8 RID: 1736 RVA: 0x00006138 File Offset: 0x00004338
[Token(Token = "0x60006C8")]
[Address(RVA = "0x2538F00", Offset = "0x2537D00", VA = "0x182538F00")]
public static decimal ToDecimal(float value)
{
return 0m;
}
/// <summary>Converts the value of the specified double-precision floating-point number to an equivalent decimal number.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> is greater than <see cref="F:System.Decimal.MaxValue" /> or less than <see cref="F:System.Decimal.MinValue" />.</exception>
// Token: 0x060006C9 RID: 1737 RVA: 0x00006150 File Offset: 0x00004350
[Token(Token = "0x60006C9")]
[Address(RVA = "0x2539540", Offset = "0x2538340", VA = "0x182539540")]
public static decimal ToDecimal(double value)
{
return 0m;
}
/// <summary>Converts the specified string representation of a number to an equivalent decimal number, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains a number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A decimal number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not a number in a valid format.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />.</exception>
// Token: 0x060006CA RID: 1738 RVA: 0x00006168 File Offset: 0x00004368
[Token(Token = "0x60006CA")]
[Address(RVA = "0x2539130", Offset = "0x2537F30", VA = "0x182539130")]
public static decimal ToDecimal(string value, IFormatProvider provider)
{
return 0m;
}
/// <summary>Returns the specified decimal number; no actual conversion is performed.</summary>
/// <param name="value">A decimal number.</param>
/// <returns>
/// <paramref name="value" /> is returned unchanged.</returns>
// Token: 0x060006CB RID: 1739 RVA: 0x00006180 File Offset: 0x00004380
[Token(Token = "0x60006CB")]
[Address(RVA = "0x723D40", Offset = "0x722B40", VA = "0x180723D40")]
public static decimal ToDecimal(decimal value)
{
return 0m;
}
/// <summary>Converts the specified Boolean value to the equivalent decimal number.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
// Token: 0x060006CC RID: 1740 RVA: 0x00006198 File Offset: 0x00004398
[Token(Token = "0x60006CC")]
[Address(RVA = "0x25394D0", Offset = "0x25382D0", VA = "0x1825394D0")]
public static decimal ToDecimal(bool value)
{
return 0m;
}
/// <summary>Converts the value of the specified object to a <see cref="T:System.DateTime" /> object, using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>The date and time equivalent of the value of <paramref name="value" />, or the date and time equivalent of <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not a valid date and time value.</exception>
/// <exception cref="T:System.InvalidCastException">
/// <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
/// -or-
/// The conversion is not supported.</exception>
// Token: 0x060006CD RID: 1741 RVA: 0x000061B0 File Offset: 0x000043B0
[Token(Token = "0x60006CD")]
[Address(RVA = "0x2538D90", Offset = "0x2537B90", VA = "0x182538D90")]
public static DateTime ToDateTime(object value, IFormatProvider provider)
{
return default(DateTime);
}
/// <summary>Converts the specified string representation of a date and time to an equivalent date and time value.</summary>
/// <param name="value">The string representation of a date and time.</param>
/// <returns>The date and time equivalent of the value of <paramref name="value" />, or the date and time equivalent of <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not a properly formatted date and time string.</exception>
// Token: 0x060006CE RID: 1742 RVA: 0x000061C8 File Offset: 0x000043C8
[Token(Token = "0x60006CE")]
[Address(RVA = "0x2538CE0", Offset = "0x2537AE0", VA = "0x182538CE0")]
public static DateTime ToDateTime(string value)
{
return default(DateTime);
}
/// <summary>Converts the specified string representation of a number to an equivalent date and time, using the specified culture-specific formatting information.</summary>
/// <param name="value">A string that contains a date and time to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>The date and time equivalent of the value of <paramref name="value" />, or the date and time equivalent of <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not a properly formatted date and time string.</exception>
// Token: 0x060006CF RID: 1743 RVA: 0x000061E0 File Offset: 0x000043E0
[Token(Token = "0x60006CF")]
[Address(RVA = "0x2538E70", Offset = "0x2537C70", VA = "0x182538E70")]
public static DateTime ToDateTime(string value, IFormatProvider provider)
{
return default(DateTime);
}
/// <summary>Converts the value of the specified object to its equivalent string representation.</summary>
/// <param name="value">An object that supplies the value to convert, or <see langword="null" />.</param>
/// <returns>The string representation of <paramref name="value" />, or <see cref="F:System.String.Empty" /> if <paramref name="value" /> is <see langword="null" />.</returns>
// Token: 0x060006D0 RID: 1744 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006D0")]
[Address(RVA = "0x253B8F0", Offset = "0x253A6F0", VA = "0x18253B8F0")]
public static string ToString(object value)
{
return null;
}
/// <summary>Converts the value of the specified object to its equivalent string representation using the specified culture-specific formatting information.</summary>
/// <param name="value">An object that supplies the value to convert, or <see langword="null" />.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>The string representation of <paramref name="value" />, or <see cref="F:System.String.Empty" /> if <paramref name="value" /> is an object whose value is <see langword="null" />. If <paramref name="value" /> is <see langword="null" />, the method returns <see langword="null" />.</returns>
// Token: 0x060006D1 RID: 1745 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006D1")]
[Address(RVA = "0x253B660", Offset = "0x253A460", VA = "0x18253B660")]
public static string ToString(object value, IFormatProvider provider)
{
return null;
}
/// <summary>Converts the specified Boolean value to its equivalent string representation.</summary>
/// <param name="value">The Boolean value to convert.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006D2 RID: 1746 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006D2")]
[Address(RVA = "0x253B8B0", Offset = "0x253A6B0", VA = "0x18253B8B0")]
public static string ToString(bool value)
{
return null;
}
/// <summary>Converts the value of the specified Unicode character to its equivalent string representation.</summary>
/// <param name="value">The Unicode character to convert.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006D3 RID: 1747 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006D3")]
[Address(RVA = "0x253B7D0", Offset = "0x253A5D0", VA = "0x18253B7D0")]
public static string ToString(char value)
{
return null;
}
/// <summary>Converts the value of the specified Unicode character to its equivalent string representation, using the specified culture-specific formatting information.</summary>
/// <param name="value">The Unicode character to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information. This parameter is ignored.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006D4 RID: 1748 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006D4")]
[Address(RVA = "0x253B7B0", Offset = "0x253A5B0", VA = "0x18253B7B0")]
public static string ToString(char value, IFormatProvider provider)
{
return null;
}
/// <summary>Converts the value of the specified 32-bit signed integer to its equivalent string representation.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006D5 RID: 1749 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006D5")]
[Address(RVA = "0x253BAF0", Offset = "0x253A8F0", VA = "0x18253BAF0")]
public static string ToString(int value)
{
return null;
}
/// <summary>Converts the value of the specified 32-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006D6 RID: 1750 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006D6")]
[Address(RVA = "0x253B640", Offset = "0x253A440", VA = "0x18253B640")]
public static string ToString(int value, IFormatProvider provider)
{
return null;
}
/// <summary>Converts the value of the specified 64-bit signed integer to its equivalent string representation.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006D7 RID: 1751 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006D7")]
[Address(RVA = "0x253B850", Offset = "0x253A650", VA = "0x18253B850")]
public static string ToString(long value)
{
return null;
}
/// <summary>Converts the value of the specified 64-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006D8 RID: 1752 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006D8")]
[Address(RVA = "0x253BC80", Offset = "0x253AA80", VA = "0x18253BC80")]
public static string ToString(long value, IFormatProvider provider)
{
return null;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to its equivalent string representation.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006D9 RID: 1753 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006D9")]
[Address(RVA = "0x253BB70", Offset = "0x253A970", VA = "0x18253BB70")]
[CLSCompliant(false)]
public static string ToString(ulong value)
{
return null;
}
/// <summary>Converts the value of the specified 64-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
/// <param name="value">The 64-bit unsigned integer to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006DA RID: 1754 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006DA")]
[Address(RVA = "0x253B8D0", Offset = "0x253A6D0", VA = "0x18253B8D0")]
[CLSCompliant(false)]
public static string ToString(ulong value, IFormatProvider provider)
{
return null;
}
/// <summary>Converts the value of the specified single-precision floating-point number to its equivalent string representation.</summary>
/// <param name="value">The single-precision floating-point number to convert.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006DB RID: 1755 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006DB")]
[Address(RVA = "0x253BCA0", Offset = "0x253AAA0", VA = "0x18253BCA0")]
public static string ToString(float value)
{
return null;
}
/// <summary>Converts the value of the specified double-precision floating-point number to its equivalent string representation.</summary>
/// <param name="value">The double-precision floating-point number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006DC RID: 1756 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006DC")]
[Address(RVA = "0x253B620", Offset = "0x253A420", VA = "0x18253B620")]
public static string ToString(double value, IFormatProvider provider)
{
return null;
}
/// <summary>Converts the value of the specified decimal number to its equivalent string representation, using the specified culture-specific formatting information.</summary>
/// <param name="value">The decimal number to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006DD RID: 1757 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006DD")]
[Address(RVA = "0x253BB50", Offset = "0x253A950", VA = "0x18253BB50")]
public static string ToString(decimal value, IFormatProvider provider)
{
return null;
}
/// <summary>Converts the value of the specified <see cref="T:System.DateTime" /> to its equivalent string representation, using the specified culture-specific formatting information.</summary>
/// <param name="value">The date and time value to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>The string representation of <paramref name="value" />.</returns>
// Token: 0x060006DE RID: 1758 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006DE")]
[Address(RVA = "0x253B830", Offset = "0x253A630", VA = "0x18253B830")]
public static string ToString(DateTime value, IFormatProvider provider)
{
return null;
}
/// <summary>Converts the string representation of a number in a specified base to an equivalent 8-bit unsigned integer.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
/// <returns>An 8-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="fromBase" /> is not 2, 8, 10, or 16.
/// -or-
/// <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" />, which represents a base 10 unsigned number, is prefixed with a negative sign.
/// -or-
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x060006DF RID: 1759 RVA: 0x000061F8 File Offset: 0x000043F8
[Token(Token = "0x60006DF")]
[Address(RVA = "0x25380F0", Offset = "0x2536EF0", VA = "0x1825380F0")]
public static byte ToByte(string value, int fromBase)
{
return 0;
}
/// <summary>Converts the string representation of a number in a specified base to an equivalent 8-bit signed integer.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
/// <returns>An 8-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="fromBase" /> is not 2, 8, 10, or 16.
/// -or-
/// <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.
/// -or-
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
// Token: 0x060006E0 RID: 1760 RVA: 0x00006210 File Offset: 0x00004410
[Token(Token = "0x60006E0")]
[Address(RVA = "0x253AB80", Offset = "0x2539980", VA = "0x18253AB80")]
[CLSCompliant(false)]
public static sbyte ToSByte(string value, int fromBase)
{
return 0;
}
/// <summary>Converts the string representation of a number in a specified base to an equivalent 16-bit signed integer.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
/// <returns>A 16-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="fromBase" /> is not 2, 8, 10, or 16.
/// -or-
/// <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.
/// -or-
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
// Token: 0x060006E1 RID: 1761 RVA: 0x00006228 File Offset: 0x00004428
[Token(Token = "0x60006E1")]
[Address(RVA = "0x2539EF0", Offset = "0x2538CF0", VA = "0x182539EF0")]
public static short ToInt16(string value, int fromBase)
{
return 0;
}
/// <summary>Converts the string representation of a number in a specified base to an equivalent 16-bit unsigned integer.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
/// <returns>A 16-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="fromBase" /> is not 2, 8, 10, or 16.
/// -or-
/// <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.
/// -or-
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
// Token: 0x060006E2 RID: 1762 RVA: 0x00006240 File Offset: 0x00004440
[Token(Token = "0x60006E2")]
[Address(RVA = "0x253C3D0", Offset = "0x253B1D0", VA = "0x18253C3D0")]
[CLSCompliant(false)]
public static ushort ToUInt16(string value, int fromBase)
{
return 0;
}
/// <summary>Converts the string representation of a number in a specified base to an equivalent 32-bit signed integer.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
/// <returns>A 32-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="fromBase" /> is not 2, 8, 10, or 16.
/// -or-
/// <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.
/// -or-
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
// Token: 0x060006E3 RID: 1763 RVA: 0x00006258 File Offset: 0x00004458
[Token(Token = "0x60006E3")]
[Address(RVA = "0x253A3A0", Offset = "0x25391A0", VA = "0x18253A3A0")]
public static int ToInt32(string value, int fromBase)
{
return 0;
}
/// <summary>Converts the string representation of a number in a specified base to an equivalent 32-bit unsigned integer.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
/// <returns>A 32-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="fromBase" /> is not 2, 8, 10, or 16.
/// -or-
/// <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.
/// -or-
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
// Token: 0x060006E4 RID: 1764 RVA: 0x00006270 File Offset: 0x00004470
[Token(Token = "0x60006E4")]
[Address(RVA = "0x253C530", Offset = "0x253B330", VA = "0x18253C530")]
[CLSCompliant(false)]
public static uint ToUInt32(string value, int fromBase)
{
return 0U;
}
/// <summary>Converts the string representation of a number in a specified base to an equivalent 64-bit signed integer.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
/// <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="fromBase" /> is not 2, 8, 10, or 16.
/// -or-
/// <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.
/// -or-
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
// Token: 0x060006E5 RID: 1765 RVA: 0x00006288 File Offset: 0x00004488
[Token(Token = "0x60006E5")]
[Address(RVA = "0x253A9A0", Offset = "0x25397A0", VA = "0x18253A9A0")]
public static long ToInt64(string value, int fromBase)
{
return 0L;
}
/// <summary>Converts the string representation of a number in a specified base to an equivalent 64-bit unsigned integer.</summary>
/// <param name="value">A string that contains the number to convert.</param>
/// <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
/// <returns>A 64-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="fromBase" /> is not 2, 8, 10, or 16.
/// -or-
/// <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.
/// -or-
/// <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
// Token: 0x060006E6 RID: 1766 RVA: 0x000062A0 File Offset: 0x000044A0
[Token(Token = "0x60006E6")]
[Address(RVA = "0x253CDB0", Offset = "0x253BBB0", VA = "0x18253CDB0")]
[CLSCompliant(false)]
public static ulong ToUInt64(string value, int fromBase)
{
return 0UL;
}
/// <summary>Converts the value of an 8-bit unsigned integer to its equivalent string representation in a specified base.</summary>
/// <param name="value">The 8-bit unsigned integer to convert.</param>
/// <param name="toBase">The base of the return value, which must be 2, 8, 10, or 16.</param>
/// <returns>The string representation of <paramref name="value" /> in base <paramref name="toBase" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="toBase" /> is not 2, 8, 10, or 16.</exception>
// Token: 0x060006E7 RID: 1767 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006E7")]
[Address(RVA = "0x253BBD0", Offset = "0x253A9D0", VA = "0x18253BBD0")]
public static string ToString(byte value, int toBase)
{
return null;
}
/// <summary>Converts the value of a 32-bit signed integer to its equivalent string representation in a specified base.</summary>
/// <param name="value">The 32-bit signed integer to convert.</param>
/// <param name="toBase">The base of the return value, which must be 2, 8, 10, or 16.</param>
/// <returns>The string representation of <paramref name="value" /> in base <paramref name="toBase" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="toBase" /> is not 2, 8, 10, or 16.</exception>
// Token: 0x060006E8 RID: 1768 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006E8")]
[Address(RVA = "0x253BD00", Offset = "0x253AB00", VA = "0x18253BD00")]
public static string ToString(int value, int toBase)
{
return null;
}
/// <summary>Converts the value of a 64-bit signed integer to its equivalent string representation in a specified base.</summary>
/// <param name="value">The 64-bit signed integer to convert.</param>
/// <param name="toBase">The base of the return value, which must be 2, 8, 10, or 16.</param>
/// <returns>The string representation of <paramref name="value" /> in base <paramref name="toBase" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="toBase" /> is not 2, 8, 10, or 16.</exception>
// Token: 0x060006E9 RID: 1769 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006E9")]
[Address(RVA = "0x253BA50", Offset = "0x253A850", VA = "0x18253BA50")]
public static string ToString(long value, int toBase)
{
return null;
}
/// <summary>Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits.</summary>
/// <param name="inArray">An array of 8-bit unsigned integers.</param>
/// <returns>The string representation, in base 64, of the contents of <paramref name="inArray" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="inArray" /> is <see langword="null" />.</exception>
// Token: 0x060006EA RID: 1770 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006EA")]
[Address(RVA = "0x2537A80", Offset = "0x2536880", VA = "0x182537A80")]
public static string ToBase64String(byte[] inArray)
{
return null;
}
/// <summary>Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. A parameter specifies whether to insert line breaks in the return value.</summary>
/// <param name="inArray">An array of 8-bit unsigned integers.</param>
/// <param name="options">
/// <see cref="F:System.Base64FormattingOptions.InsertLineBreaks" /> to insert a line break every 76 characters, or <see cref="F:System.Base64FormattingOptions.None" /> to not insert line breaks.</param>
/// <returns>The string representation in base 64 of the elements in <paramref name="inArray" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="inArray" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="options" /> is not a valid <see cref="T:System.Base64FormattingOptions" /> value.</exception>
// Token: 0x060006EB RID: 1771 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006EB")]
[Address(RVA = "0x25379D0", Offset = "0x25367D0", VA = "0x1825379D0")]
[ComVisible(false)]
public static string ToBase64String(byte[] inArray, Base64FormattingOptions options)
{
return null;
}
/// <summary>Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. Parameters specify the subset as an offset in the input array, and the number of elements in the array to convert.</summary>
/// <param name="inArray">An array of 8-bit unsigned integers.</param>
/// <param name="offset">An offset in <paramref name="inArray" />.</param>
/// <param name="length">The number of elements of <paramref name="inArray" /> to convert.</param>
/// <returns>The string representation in base 64 of <paramref name="length" /> elements of <paramref name="inArray" />, starting at position <paramref name="offset" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="inArray" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="offset" /> or <paramref name="length" /> is negative.
/// -or-
/// <paramref name="offset" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />.</exception>
// Token: 0x060006EC RID: 1772 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006EC")]
[Address(RVA = "0x2537950", Offset = "0x2536750", VA = "0x182537950")]
public static string ToBase64String(byte[] inArray, int offset, int length)
{
return null;
}
/// <summary>Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. Parameters specify the subset as an offset in the input array, the number of elements in the array to convert, and whether to insert line breaks in the return value.</summary>
/// <param name="inArray">An array of 8-bit unsigned integers.</param>
/// <param name="offset">An offset in <paramref name="inArray" />.</param>
/// <param name="length">The number of elements of <paramref name="inArray" /> to convert.</param>
/// <param name="options">
/// <see cref="F:System.Base64FormattingOptions.InsertLineBreaks" /> to insert a line break every 76 characters, or <see cref="F:System.Base64FormattingOptions.None" /> to not insert line breaks.</param>
/// <returns>The string representation in base 64 of <paramref name="length" /> elements of <paramref name="inArray" />, starting at position <paramref name="offset" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="inArray" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="offset" /> or <paramref name="length" /> is negative.
/// -or-
/// <paramref name="offset" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="options" /> is not a valid <see cref="T:System.Base64FormattingOptions" /> value.</exception>
// Token: 0x060006ED RID: 1773 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006ED")]
[Address(RVA = "0x2537660", Offset = "0x2536460", VA = "0x182537660")]
[ComVisible(false)]
public static string ToBase64String(byte[] inArray, int offset, int length, Base64FormattingOptions options)
{
return null;
}
/// <summary>Converts a subset of an 8-bit unsigned integer array to an equivalent subset of a Unicode character array encoded with base-64 digits. Parameters specify the subsets as offsets in the input and output arrays, and the number of elements in the input array to convert.</summary>
/// <param name="inArray">An input array of 8-bit unsigned integers.</param>
/// <param name="offsetIn">A position within <paramref name="inArray" />.</param>
/// <param name="length">The number of elements of <paramref name="inArray" /> to convert.</param>
/// <param name="outArray">An output array of Unicode characters.</param>
/// <param name="offsetOut">A position within <paramref name="outArray" />.</param>
/// <returns>A 32-bit signed integer containing the number of bytes in <paramref name="outArray" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="inArray" /> or <paramref name="outArray" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="offsetIn" />, <paramref name="offsetOut" />, or <paramref name="length" /> is negative.
/// -or-
/// <paramref name="offsetIn" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />.
/// -or-
/// <paramref name="offsetOut" /> plus the number of elements to return is greater than the length of <paramref name="outArray" />.</exception>
// Token: 0x060006EE RID: 1774 RVA: 0x000062B8 File Offset: 0x000044B8
[Token(Token = "0x60006EE")]
[Address(RVA = "0x2537200", Offset = "0x2536000", VA = "0x182537200")]
public static int ToBase64CharArray(byte[] inArray, int offsetIn, int length, char[] outArray, int offsetOut)
{
return 0;
}
/// <summary>Converts a subset of an 8-bit unsigned integer array to an equivalent subset of a Unicode character array encoded with base-64 digits. Parameters specify the subsets as offsets in the input and output arrays, the number of elements in the input array to convert, and whether line breaks are inserted in the output array.</summary>
/// <param name="inArray">An input array of 8-bit unsigned integers.</param>
/// <param name="offsetIn">A position within <paramref name="inArray" />.</param>
/// <param name="length">The number of elements of <paramref name="inArray" /> to convert.</param>
/// <param name="outArray">An output array of Unicode characters.</param>
/// <param name="offsetOut">A position within <paramref name="outArray" />.</param>
/// <param name="options">
/// <see cref="F:System.Base64FormattingOptions.InsertLineBreaks" /> to insert a line break every 76 characters, or <see cref="F:System.Base64FormattingOptions.None" /> to not insert line breaks.</param>
/// <returns>A 32-bit signed integer containing the number of bytes in <paramref name="outArray" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="inArray" /> or <paramref name="outArray" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="offsetIn" />, <paramref name="offsetOut" />, or <paramref name="length" /> is negative.
/// -or-
/// <paramref name="offsetIn" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />.
/// -or-
/// <paramref name="offsetOut" /> plus the number of elements to return is greater than the length of <paramref name="outArray" />.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="options" /> is not a valid <see cref="T:System.Base64FormattingOptions" /> value.</exception>
// Token: 0x060006EF RID: 1775 RVA: 0x000062D0 File Offset: 0x000044D0
[Token(Token = "0x60006EF")]
[Address(RVA = "0x2537290", Offset = "0x2536090", VA = "0x182537290")]
[ComVisible(false)]
public static int ToBase64CharArray(byte[] inArray, int offsetIn, int length, char[] outArray, int offsetOut, Base64FormattingOptions options)
{
return 0;
}
// Token: 0x060006F0 RID: 1776 RVA: 0x000062E8 File Offset: 0x000044E8
[Token(Token = "0x60006F0")]
[Address(RVA = "0x2535700", Offset = "0x2534500", VA = "0x182535700")]
private unsafe static int ConvertToBase64Array(char* outChars, byte* inData, int offset, int length, bool insertLineBreaks)
{
return 0;
}
// Token: 0x060006F1 RID: 1777 RVA: 0x00006300 File Offset: 0x00004500
[Token(Token = "0x60006F1")]
[Address(RVA = "0x2537B20", Offset = "0x2536920", VA = "0x182537B20")]
private static int ToBase64_CalculateAndValidateOutputLength(int inputLength, bool insertLineBreaks)
{
return 0;
}
/// <summary>Converts the specified string, which encodes binary data as base-64 digits, to an equivalent 8-bit unsigned integer array.</summary>
/// <param name="s">The string to convert.</param>
/// <returns>An array of 8-bit unsigned integers that is equivalent to <paramref name="s" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">The length of <paramref name="s" />, ignoring white-space characters, is not zero or a multiple of 4.
/// -or-
/// The format of <paramref name="s" /> is invalid. <paramref name="s" /> contains a non-base-64 character, more than two padding characters, or a non-white space-character among the padding characters.</exception>
// Token: 0x060006F2 RID: 1778 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006F2")]
[Address(RVA = "0x2536D00", Offset = "0x2535B00", VA = "0x182536D00")]
public static byte[] FromBase64String(string s)
{
return null;
}
/// <summary>Converts a subset of a Unicode character array, which encodes binary data as base-64 digits, to an equivalent 8-bit unsigned integer array. Parameters specify the subset in the input array and the number of elements to convert.</summary>
/// <param name="inArray">A Unicode character array.</param>
/// <param name="offset">A position within <paramref name="inArray" />.</param>
/// <param name="length">The number of elements in <paramref name="inArray" /> to convert.</param>
/// <returns>An array of 8-bit unsigned integers equivalent to <paramref name="length" /> elements at position <paramref name="offset" /> in <paramref name="inArray" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="inArray" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="offset" /> or <paramref name="length" /> is less than 0.
/// -or-
/// <paramref name="offset" /> plus <paramref name="length" /> indicates a position not within <paramref name="inArray" />.</exception>
/// <exception cref="T:System.FormatException">The length of <paramref name="inArray" />, ignoring white-space characters, is not zero or a multiple of 4.
/// -or-
/// The format of <paramref name="inArray" /> is invalid. <paramref name="inArray" /> contains a non-base-64 character, more than two padding characters, or a non-white-space character among the padding characters.</exception>
// Token: 0x060006F3 RID: 1779 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006F3")]
[Address(RVA = "0x2536980", Offset = "0x2535780", VA = "0x182536980")]
public static byte[] FromBase64CharArray(char[] inArray, int offset, int length)
{
return null;
}
// Token: 0x060006F4 RID: 1780 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60006F4")]
[Address(RVA = "0x2536B20", Offset = "0x2535920", VA = "0x182536B20")]
private unsafe static byte[] FromBase64CharPtr(char* inputPtr, int inputLength)
{
return null;
}
// Token: 0x060006F5 RID: 1781 RVA: 0x00006318 File Offset: 0x00004518
[Token(Token = "0x60006F5")]
[Address(RVA = "0x2536E90", Offset = "0x2535C90", VA = "0x182536E90")]
private unsafe static int FromBase64_Decode(char* startInputPtr, int inputLength, byte* startDestPtr, int destLength)
{
return 0;
}
// Token: 0x060006F6 RID: 1782 RVA: 0x00006330 File Offset: 0x00004530
[Token(Token = "0x60006F6")]
[Address(RVA = "0x2536DB0", Offset = "0x2535BB0", VA = "0x182536DB0")]
private unsafe static int FromBase64_ComputeResultLength(char* inputPtr, int inputLength)
{
return 0;
}
// Token: 0x040002DD RID: 733
[Token(Token = "0x40002DD")]
internal static readonly RuntimeType[] ConvertTypes;
// Token: 0x040002DE RID: 734
[Token(Token = "0x40002DE")]
private static readonly RuntimeType EnumType;
// Token: 0x040002DF RID: 735
[Token(Token = "0x40002DF")]
internal static readonly char[] base64Table;
/// <summary>A constant that represents a database column that is absent of data; that is, database null.</summary>
// Token: 0x040002E0 RID: 736
[Token(Token = "0x40002E0")]
public static readonly object DBNull;
}
}