using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Serialization
{
/// Represents a base implementation of the interface that uses the class and the interface.
// Token: 0x02000439 RID: 1081
[Token(Token = "0x2000439")]
[ComVisible(true)]
public class FormatterConverter : IFormatterConverter
{
/// Initializes a new instance of the class.
// Token: 0x06002468 RID: 9320 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002468")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
public FormatterConverter()
{
}
/// Converts a value to the given .
/// The object to convert.
/// The into which is converted.
/// The converted or if the parameter is .
/// The parameter is .
// Token: 0x06002469 RID: 9321 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002469")]
[Address(RVA = "0x25B8890", Offset = "0x25B7690", VA = "0x1825B8890", Slot = "4")]
public object Convert(object value, Type type)
{
return null;
}
/// Converts a value to a .
/// The object to convert.
/// The converted or if the parameter is .
/// The parameter is .
// Token: 0x0600246A RID: 9322 RVA: 0x000156A8 File Offset: 0x000138A8
[Token(Token = "0x600246A")]
[Address(RVA = "0x25B8960", Offset = "0x25B7760", VA = "0x1825B8960", Slot = "5")]
public bool ToBoolean(object value)
{
return default(bool);
}
/// Converts a value to a 32-bit signed integer.
/// The object to convert.
/// The converted or if the parameter is .
/// The parameter is .
// Token: 0x0600246B RID: 9323 RVA: 0x000156C0 File Offset: 0x000138C0
[Token(Token = "0x600246B")]
[Address(RVA = "0x25B8A20", Offset = "0x25B7820", VA = "0x1825B8A20", Slot = "6")]
public int ToInt32(object value)
{
return 0;
}
/// Converts a value to a 64-bit signed integer.
/// The object to convert.
/// The converted or if the parameter is .
/// The parameter is .
// Token: 0x0600246C RID: 9324 RVA: 0x000156D8 File Offset: 0x000138D8
[Token(Token = "0x600246C")]
[Address(RVA = "0x25B8AE0", Offset = "0x25B78E0", VA = "0x1825B8AE0", Slot = "7")]
public long ToInt64(object value)
{
return 0L;
}
/// Converts a value to a single-precision floating-point number.
/// The object to convert.
/// The converted or if the parameter is .
/// The parameter is .
// Token: 0x0600246D RID: 9325 RVA: 0x000156F0 File Offset: 0x000138F0
[Token(Token = "0x600246D")]
[Address(RVA = "0x25B8BA0", Offset = "0x25B79A0", VA = "0x1825B8BA0", Slot = "8")]
public float ToSingle(object value)
{
return 0f;
}
/// Converts the specified object to a .
/// The object to convert.
/// The converted or if the parameter is .
/// The parameter is .
// Token: 0x0600246E RID: 9326 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600246E")]
[Address(RVA = "0x25B8C60", Offset = "0x25B7A60", VA = "0x1825B8C60", Slot = "9")]
public string ToString(object value)
{
return null;
}
}
}