using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides a type converter to convert Unicode character objects to and from various other representations.
// Token: 0x020000F6 RID: 246
[Token(Token = "0x20000F6")]
public class CharConverter : TypeConverter
{
/// Gets a value indicating whether this converter can convert an object in the given source type to a Unicode character object using the specified context.
/// An that provides a format context.
/// A that represents the type you want to convert from.
///
/// if this converter can perform the conversion; otherwise, .
// Token: 0x0600060F RID: 1551 RVA: 0x00004650 File Offset: 0x00002850
[Token(Token = "0x600060F")]
[Address(RVA = "0x497180", Offset = "0x495F80", VA = "0x180497180", Slot = "4")]
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return default(bool);
}
/// Converts the given value object to a Unicode character object using the arguments.
/// An that provides a format context.
/// The culture into which will be converted.
/// The to convert.
/// The to convert the value to.
/// An that represents the converted value.
/// The conversion cannot be performed.
// Token: 0x06000610 RID: 1552 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000610")]
[Address(RVA = "0x4973D0", Offset = "0x4961D0", VA = "0x1804973D0", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
/// Converts the given object to a Unicode character object.
/// An that provides a format context.
/// The culture into which will be converted.
/// The to convert.
/// An that represents the converted .
///
/// is not a valid value for the target type.
/// The conversion cannot be performed.
// Token: 0x06000611 RID: 1553 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000611")]
[Address(RVA = "0x497230", Offset = "0x496030", VA = "0x180497230", Slot = "6")]
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return null;
}
/// Initializes a new instance of the class.
// Token: 0x06000612 RID: 1554 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000612")]
[Address(RVA = "0x4974E0", Offset = "0x4962E0", VA = "0x1804974E0")]
public CharConverter()
{
}
}
}