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
@@ -0,0 +1,54 @@
using System;
using Cpp2IlInjected;
using Microsoft.CSharp;
namespace System.Xml.Serialization
{
/// <summary>Provides static methods to convert input text into names for code entities.</summary>
// Token: 0x02000106 RID: 262
[Token(Token = "0x2000106")]
public class CodeIdentifier
{
/// <summary>Produces a Pascal-case string from an input string. </summary>
/// <param name="identifier">The name of a code entity, such as a method parameter, typically taken from an XML element or attribute name.</param>
/// <returns>A Pascal-case version of the parameter string.</returns>
// Token: 0x06000C6C RID: 3180 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C6C")]
[Address(RVA = "0x8866D0", Offset = "0x8856D0", VA = "0x1808866D0")]
public static string MakePascal(string identifier)
{
return null;
}
/// <summary>Produces a valid code entity name from an input string. </summary>
/// <param name="identifier">The name of a code entity, such as a method parameter, typically taken from an XML element or attribute name.</param>
/// <returns>A string that can be used as a code identifier, such as the name of a method parameter.</returns>
// Token: 0x06000C6D RID: 3181 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C6D")]
[Address(RVA = "0x8869B0", Offset = "0x8859B0", VA = "0x1808869B0")]
public static string MakeValid(string identifier)
{
return null;
}
// Token: 0x06000C6E RID: 3182 RVA: 0x000069D8 File Offset: 0x00004BD8
[Token(Token = "0x6000C6E")]
[Address(RVA = "0x8865C0", Offset = "0x8855C0", VA = "0x1808865C0")]
private static bool IsValidStart(char c)
{
return default(bool);
}
// Token: 0x06000C6F RID: 3183 RVA: 0x000069F0 File Offset: 0x00004BF0
[Token(Token = "0x6000C6F")]
[Address(RVA = "0x886620", Offset = "0x885620", VA = "0x180886620")]
private static bool IsValid(char c)
{
return default(bool);
}
// Token: 0x04000680 RID: 1664
[Token(Token = "0x4000680")]
internal static CodeDomProvider csharp;
}
}