using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides a type converter to convert objects to and from various other representations.
// Token: 0x0200010B RID: 267
[Token(Token = "0x200010B")]
public class DecimalConverter : BaseNumberConverter
{
// Token: 0x17000127 RID: 295
// (get) Token: 0x06000685 RID: 1669 RVA: 0x00004968 File Offset: 0x00002B68
[Token(Token = "0x17000127")]
internal override bool AllowHex
{
[Token(Token = "0x6000685")]
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "16")]
get
{
return default(bool);
}
}
// Token: 0x17000128 RID: 296
// (get) Token: 0x06000686 RID: 1670 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000128")]
internal override Type TargetType
{
[Token(Token = "0x6000686")]
[Address(RVA = "0xB9D9D0", Offset = "0xB9C9D0", VA = "0x180B9D9D0", Slot = "17")]
get
{
return null;
}
}
/// Gets a value indicating whether this converter can convert an object to the given destination type using the context.
/// An that provides a format context.
/// A that represents the type you wish to convert to.
///
/// if this converter can perform the conversion; otherwise, .
// Token: 0x06000687 RID: 1671 RVA: 0x00004980 File Offset: 0x00002B80
[Token(Token = "0x6000687")]
[Address(RVA = "0xB9D3A0", Offset = "0xB9C3A0", VA = "0x180B9D3A0", Slot = "5")]
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
return default(bool);
}
/// Converts the given value object to a using the arguments.
/// An that provides a format context.
/// An optional . If not supplied, the current culture is assumed.
/// The to convert.
/// The to convert the value to.
/// An that represents the converted value.
/// The is .
/// The conversion cannot be performed.
// Token: 0x06000688 RID: 1672 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000688")]
[Address(RVA = "0xB9D460", Offset = "0xB9C460", VA = "0x180B9D460", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
// Token: 0x06000689 RID: 1673 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000689")]
[Address(RVA = "0xB9D780", Offset = "0xB9C780", VA = "0x180B9D780", Slot = "18")]
internal override object FromString(string value, int radix)
{
return null;
}
// Token: 0x0600068A RID: 1674 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600068A")]
[Address(RVA = "0xB9D830", Offset = "0xB9C830", VA = "0x180B9D830", Slot = "19")]
internal override object FromString(string value, NumberFormatInfo formatInfo)
{
return null;
}
// Token: 0x0600068B RID: 1675 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600068B")]
[Address(RVA = "0xB9D8C0", Offset = "0xB9C8C0", VA = "0x180B9D8C0", Slot = "20")]
internal override object FromString(string value, CultureInfo culture)
{
return null;
}
// Token: 0x0600068C RID: 1676 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600068C")]
[Address(RVA = "0xB9D940", Offset = "0xB9C940", VA = "0x180B9D940", Slot = "22")]
internal override string ToString(object value, NumberFormatInfo formatInfo)
{
return null;
}
/// Initializes a new instance of the class.
// Token: 0x0600068D RID: 1677 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600068D")]
[Address(RVA = "0xB91AD0", Offset = "0xB90AD0", VA = "0x180B91AD0")]
public DecimalConverter()
{
}
}
}