using System; using System.Globalization; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides a type converter to convert string objects to and from other representations. // Token: 0x0200018D RID: 397 [Token(Token = "0x200018D")] 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: 0x06000A7E RID: 2686 RVA: 0x00006210 File Offset: 0x00004410 [Token(Token = "0x6000A7E")] [Address(RVA = "0x4D9250", Offset = "0x4D8050", VA = "0x1804D9250", 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: 0x06000A7F RID: 2687 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A7F")] [Address(RVA = "0x4D9300", Offset = "0x4D8100", VA = "0x1804D9300", Slot = "6")] public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { return null; } /// Initializes a new instance of the class. // Token: 0x06000A80 RID: 2688 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000A80")] [Address(RVA = "0x4D93F0", Offset = "0x4D81F0", VA = "0x1804D93F0")] public StringConverter() { } } }