This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+107
View File
@@ -0,0 +1,107 @@
using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a type converter to convert <see cref="T:System.Decimal" /> objects to and from various other representations.</summary>
// Token: 0x0200010B RID: 267
[Token(Token = "0x200010B")]
public class DecimalConverter : BaseNumberConverter
{
// Token: 0x17000127 RID: 295
// (get) Token: 0x06000685 RID: 1669 RVA: 0x00004968 File Offset: 0x00002B68
[Token(Token = "0x17000127")]
internal override bool AllowHex
{
[Token(Token = "0x6000685")]
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "16")]
get
{
return default(bool);
}
}
// Token: 0x17000128 RID: 296
// (get) Token: 0x06000686 RID: 1670 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000128")]
internal override Type TargetType
{
[Token(Token = "0x6000686")]
[Address(RVA = "0xB9D9D0", Offset = "0xB9C9D0", VA = "0x180B9D9D0", Slot = "17")]
get
{
return null;
}
}
/// <summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to.</param>
/// <returns>
/// <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
// Token: 0x06000687 RID: 1671 RVA: 0x00004980 File Offset: 0x00002B80
[Token(Token = "0x6000687")]
[Address(RVA = "0xB9D3A0", Offset = "0xB9C3A0", VA = "0x180B9D3A0", Slot = "5")]
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
return default(bool);
}
/// <summary>Converts the given value object to a <see cref="T:System.Decimal" /> using the arguments.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed.</param>
/// <param name="value">The <see cref="T:System.Object" /> to convert.</param>
/// <param name="destinationType">The <see cref="T:System.Type" /> to convert the value to.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="destinationType" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x06000688 RID: 1672 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000688")]
[Address(RVA = "0xB9D460", Offset = "0xB9C460", VA = "0x180B9D460", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
// Token: 0x06000689 RID: 1673 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000689")]
[Address(RVA = "0xB9D780", Offset = "0xB9C780", VA = "0x180B9D780", Slot = "18")]
internal override object FromString(string value, int radix)
{
return null;
}
// Token: 0x0600068A RID: 1674 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600068A")]
[Address(RVA = "0xB9D830", Offset = "0xB9C830", VA = "0x180B9D830", Slot = "19")]
internal override object FromString(string value, NumberFormatInfo formatInfo)
{
return null;
}
// Token: 0x0600068B RID: 1675 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600068B")]
[Address(RVA = "0xB9D8C0", Offset = "0xB9C8C0", VA = "0x180B9D8C0", Slot = "20")]
internal override object FromString(string value, CultureInfo culture)
{
return null;
}
// Token: 0x0600068C RID: 1676 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600068C")]
[Address(RVA = "0xB9D940", Offset = "0xB9C940", VA = "0x180B9D940", Slot = "22")]
internal override string ToString(object value, NumberFormatInfo formatInfo)
{
return null;
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DecimalConverter" /> class.</summary>
// Token: 0x0600068D RID: 1677 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600068D")]
[Address(RVA = "0xB91AD0", Offset = "0xB90AD0", VA = "0x180B91AD0")]
public DecimalConverter()
{
}
}
}