using System; using System.Runtime.ConstrainedExecution; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Supports all classes in the .NET Framework class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all classes in the .NET Framework; it is the root of the type hierarchy. // Token: 0x02000192 RID: 402 [Token(Token = "0x2000192")] [ComVisible(true)] [ClassInterface(ClassInterfaceType.AutoDual)] [Serializable] public class Object { /// Determines whether the specified object is equal to the current object. /// The object to compare with the current object. /// /// if the specified object is equal to the current object; otherwise, . // Token: 0x06001017 RID: 4119 RVA: 0x0000CF18 File Offset: 0x0000B118 [Token(Token = "0x6001017")] [Address(RVA = "0x52DD60", Offset = "0x52CD60", VA = "0x18052DD60", Slot = "0")] public virtual bool Equals(object obj) { return default(bool); } /// Determines whether the specified object instances are considered equal. /// The first object to compare. /// The second object to compare. /// /// if the objects are considered equal; otherwise, . If both and are null, the method returns . // Token: 0x06001018 RID: 4120 RVA: 0x0000CF30 File Offset: 0x0000B130 [Token(Token = "0x6001018")] [Address(RVA = "0x2D783F0", Offset = "0x2D773F0", VA = "0x182D783F0")] public static bool Equals(object objA, object objB) { return default(bool); } /// Initializes a new instance of the class. // Token: 0x06001019 RID: 4121 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001019")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")] [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] public Object() { } /// Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. // Token: 0x0600101A RID: 4122 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600101A")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "1")] [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] protected virtual void Finalize() { } /// Serves as the default hash function. /// A hash code for the current object. // Token: 0x0600101B RID: 4123 RVA: 0x0000CF48 File Offset: 0x0000B148 [Token(Token = "0x600101B")] [Address(RVA = "0x2D65A00", Offset = "0x2D64A00", VA = "0x182D65A00", Slot = "2")] public virtual int GetHashCode() { return 0; } /// Gets the of the current instance. /// The exact runtime type of the current instance. // Token: 0x0600101C RID: 4124 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x600101C")] [Address(RVA = "0x2D78420", Offset = "0x2D77420", VA = "0x182D78420")] public Type GetType() { return null; } /// Creates a shallow copy of the current . /// A shallow copy of the current . // Token: 0x0600101D RID: 4125 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x600101D")] [Address(RVA = "0x2D78430", Offset = "0x2D77430", VA = "0x182D78430")] protected object MemberwiseClone() { return null; } /// Returns a string that represents the current object. /// A string that represents the current object. // Token: 0x0600101E RID: 4126 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x600101E")] [Address(RVA = "0x2D78440", Offset = "0x2D77440", VA = "0x182D78440", Slot = "3")] public virtual string ToString() { return null; } // Token: 0x0600101F RID: 4127 RVA: 0x0000CF60 File Offset: 0x0000B160 [Token(Token = "0x600101F")] [Address(RVA = "0x2D65A00", Offset = "0x2D64A00", VA = "0x182D65A00")] internal static int InternalGetHashCode(object o) { return 0; } // Token: 0x06001020 RID: 4128 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001020")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")] private void FieldGetter(string typeName, string fieldName, ref object val) { } // Token: 0x06001021 RID: 4129 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001021")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")] private void FieldSetter(string typeName, string fieldName, object val) { } } }