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: 0x020000F2 RID: 242
[Token(Token = "0x20000F2")]
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: 0x060005F9 RID: 1529 RVA: 0x00004638 File Offset: 0x00002838
[Token(Token = "0x60005F9")]
[Address(RVA = "0xB93EE0", Offset = "0xB92EE0", VA = "0x180B93EE0", 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: 0x060005FA RID: 1530 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005FA")]
[Address(RVA = "0xB94130", Offset = "0xB93130", VA = "0x180B94130", 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: 0x060005FB RID: 1531 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005FB")]
[Address(RVA = "0xB93F90", Offset = "0xB92F90", VA = "0x180B93F90", Slot = "6")]
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return null;
}
/// Initializes a new instance of the class.
// Token: 0x060005FC RID: 1532 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005FC")]
[Address(RVA = "0xB94240", Offset = "0xB93240", VA = "0x180B94240")]
public CharConverter()
{
}
}
}