using System; using Cpp2IlInjected; using Microsoft.CSharp; namespace System.Xml.Serialization { /// Provides static methods to convert input text into names for code entities. // Token: 0x02000106 RID: 262 [Token(Token = "0x2000106")] public class CodeIdentifier { /// Produces a Pascal-case string from an input string. /// The name of a code entity, such as a method parameter, typically taken from an XML element or attribute name. /// A Pascal-case version of the parameter string. // 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; } /// Produces a valid code entity name from an input string. /// The name of a code entity, such as a method parameter, typically taken from an XML element or attribute name. /// A string that can be used as a code identifier, such as the name of a method parameter. // 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; } }