using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides a type converter to convert string objects to and from other representations.
// Token: 0x02000189 RID: 393
[Token(Token = "0x2000189")]
public class StringConverter : TypeConverter
{
/// Gets a value indicating whether this converter can convert an object in the given source type to a string using the specified context.
/// An that provides a format context.
/// A that represents the type you wish to convert from.
///
/// if this converter can perform the conversion; otherwise, .
// Token: 0x06000A68 RID: 2664 RVA: 0x000061F8 File Offset: 0x000043F8
[Token(Token = "0x6000A68")]
[Address(RVA = "0xC28C30", Offset = "0xC27C30", VA = "0x180C28C30", Slot = "4")]
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return default(bool);
}
/// Converts the specified value object to a object.
/// An that provides a format context.
/// The to use.
/// The to convert.
/// An that represents the converted value.
/// The conversion could not be performed.
// Token: 0x06000A69 RID: 2665 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A69")]
[Address(RVA = "0xC28CE0", Offset = "0xC27CE0", VA = "0x180C28CE0", Slot = "6")]
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return null;
}
/// Initializes a new instance of the class.
// Token: 0x06000A6A RID: 2666 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A6A")]
[Address(RVA = "0xC28DD0", Offset = "0xC27DD0", VA = "0x180C28DD0")]
public StringConverter()
{
}
}
}