38926 lines
1.9 MiB
38926 lines
1.9 MiB
#include "il2cpp-config.h"
|
|
|
|
#ifndef _MSC_VER
|
|
# include <alloca.h>
|
|
#else
|
|
# include <malloc.h>
|
|
#endif
|
|
|
|
|
|
#include <cstring>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <cmath>
|
|
#include <limits>
|
|
#include <assert.h>
|
|
#include <stdint.h>
|
|
|
|
#include "codegen/il2cpp-codegen.h"
|
|
#include "icalls/mscorlib/System/AppDomain.h"
|
|
#include "icalls/mscorlib/System/Array.h"
|
|
#include "icalls/mscorlib/System/Buffer.h"
|
|
#include "icalls/mscorlib/System/CLRConfig.h"
|
|
#include "il2cpp-object-internals.h"
|
|
|
|
template <typename R>
|
|
struct VirtFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
struct VirtActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct VirtFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct VirtActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct VirtActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct VirtFuncInvoker2
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
struct GenericVirtActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct GenericVirtActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct GenericVirtActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct InterfaceFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
struct InterfaceActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct InterfaceFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InterfaceActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct InterfaceFuncInvoker2
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
struct GenericInterfaceActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct GenericInterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct GenericInterfaceActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
|
|
// Mono.Security.ASN1
|
|
struct ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22;
|
|
// Mono.Security.Cryptography.DSAManaged
|
|
struct DSAManaged_tB329E8EFCE56CF874A8EEAC16BEAC13146F47FEA;
|
|
// Mono.Security.Cryptography.KeyPairPersistence
|
|
struct KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2;
|
|
// Mono.Security.Cryptography.RSAManaged
|
|
struct RSAManaged_t7FC74A986C888D9301EC82EBE4A37C293CDA963A;
|
|
// Mono.Security.Uri
|
|
struct Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D;
|
|
// Mono.Security.Uri/UriScheme[]
|
|
struct UriSchemeU5BU5D_t92DD65C3EBB9FBABD1780850EC0D907191FC261C;
|
|
// Mono.Security.X509.PKCS12/DeriveBytes
|
|
struct DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889;
|
|
// Mono.Security.X509.SafeBag
|
|
struct SafeBag_t174C33B33B435C2F8F7B3D3B3217CE626A905945;
|
|
// Mono.Security.X509.X509Certificate
|
|
struct X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA;
|
|
// Mono.Security.X509.X509CertificateCollection
|
|
struct X509CertificateCollection_t5BA116B445B1DB65CBCEAECF7EF3CFC1368E3ECA;
|
|
// Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator
|
|
struct X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F;
|
|
// Mono.Security.X509.X509Extension
|
|
struct X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B;
|
|
// Mono.Security.X509.X509ExtensionCollection
|
|
struct X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1;
|
|
// Mono.Xml.SecurityParser
|
|
struct SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714;
|
|
// Mono.Xml.SmallXmlParser
|
|
struct SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196;
|
|
// Mono.Xml.SmallXmlParser/AttrListImpl
|
|
struct AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63;
|
|
// Mono.Xml.SmallXmlParser/IAttrList
|
|
struct IAttrList_t0CE18247AA5E55E45C85E9CF5844810BE11C435E;
|
|
// Mono.Xml.SmallXmlParser/IContentHandler
|
|
struct IContentHandler_tD4FEA788515878D2DFEA5CBE7F6A008DD7629B8E;
|
|
// Mono.Xml.SmallXmlParserException
|
|
struct SmallXmlParserException_t96963A305B0E2C72C5EDC72952F1D079DE102140;
|
|
// System.Action
|
|
struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579;
|
|
// System.AggregateException
|
|
struct AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E;
|
|
// System.AggregateException[]
|
|
struct AggregateExceptionU5BU5D_t00272697610270A15A70119C6CE78E7A985CE49D;
|
|
// System.AppDomain
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8;
|
|
// System.AppDomainSetup
|
|
struct AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306;
|
|
// System.AppDomainUnloadedException
|
|
struct AppDomainUnloadedException_t8DFC322660E43B2A11853B62BF43078F42496A35;
|
|
// System.ApplicationException
|
|
struct ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74;
|
|
// System.ArgumentException
|
|
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
|
|
// System.ArgumentNullException
|
|
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
|
|
// System.ArgumentOutOfRangeException
|
|
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
|
|
// System.ArithmeticException
|
|
struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269;
|
|
// System.Array/ArrayEnumerator
|
|
struct ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C;
|
|
// System.ArraySpec
|
|
struct ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970;
|
|
// System.ArrayTypeMismatchException
|
|
struct ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499;
|
|
// System.AssemblyLoadEventArgs
|
|
struct AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8;
|
|
// System.AssemblyLoadEventHandler
|
|
struct AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9;
|
|
// System.AsyncCallback
|
|
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
|
|
// System.Attribute
|
|
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74;
|
|
// System.AttributeUsageAttribute
|
|
struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388;
|
|
// System.Attribute[]
|
|
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17;
|
|
// System.BadImageFormatException
|
|
struct BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9;
|
|
// System.ByteMatcher
|
|
struct ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC;
|
|
// System.Byte[]
|
|
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
|
|
// System.CLSCompliantAttribute
|
|
struct CLSCompliantAttribute_tDC4B8ADF0962285DBD3D530871274CBA04E791E6;
|
|
// System.CannotUnloadAppDomainException
|
|
struct CannotUnloadAppDomainException_t77C958E8438F7A43A17AC069D151A50E9F781A89;
|
|
// System.Char[]
|
|
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
|
|
// System.Collections.ArrayList
|
|
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4;
|
|
// System.Collections.CollectionBase
|
|
struct CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01;
|
|
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.Object>[]
|
|
struct EntryU5BU5D_tED6676A6535375B72FAC3BE58CAB9DC30BE201CD;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Object>
|
|
struct KeyCollection_t9BB02C59F6A73E760F875CCD8AA6D1A1ACE61970;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Object>
|
|
struct ValueCollection_t059E2E9F339047F683CA7038812E624189E7F0CD;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
|
|
struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B;
|
|
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
|
|
struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
|
|
struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
|
|
struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object>
|
|
struct Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA;
|
|
// System.Collections.Generic.IEnumerable`1<System.Exception>
|
|
struct IEnumerable_1_t6B3D33CE5B4DC884E5267C7B8CBC12380D09B3F1;
|
|
// System.Collections.Generic.IEnumerable`1<System.Object>
|
|
struct IEnumerable_1_t2F75FCBEC68AFE08982DA43985F9D04056E2BE73;
|
|
// System.Collections.Generic.IEnumerable`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>
|
|
struct IEnumerable_1_t37B4D1EEBA6E5098A0F018A779067097451BAD2C;
|
|
// System.Collections.Generic.IEqualityComparer`1<System.String>
|
|
struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9;
|
|
// System.Collections.Generic.IList`1<System.Exception>
|
|
struct IList_1_t79A79A556E69BA20A09771D2D61B0440B6F4EFBA;
|
|
// System.Collections.Generic.IList`1<System.Object>
|
|
struct IList_1_tE09735A322C3B17000EF4E4BC8026FEDEB7B0D9B;
|
|
// System.Collections.Generic.IList`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>
|
|
struct IList_1_t1D32293C65F49E1B7D7E3344057FED3589CD8F1F;
|
|
// System.Collections.Generic.List`1<System.AggregateException>
|
|
struct List_1_t20A8118F137937C08C81821D3462043030E1A597;
|
|
// System.Collections.Generic.List`1<System.Exception>
|
|
struct List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A;
|
|
// System.Collections.Generic.List`1<System.Object>
|
|
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
|
|
// System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>
|
|
struct List_1_tCD04260AE1254C438132446F1E6892AB86D18743;
|
|
// System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>
|
|
struct List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D;
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3;
|
|
// System.Collections.Hashtable
|
|
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9;
|
|
// System.Collections.Hashtable/bucket[]
|
|
struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A;
|
|
// System.Collections.ICollection
|
|
struct ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54;
|
|
// System.Collections.IComparer
|
|
struct IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95;
|
|
// System.Collections.IDictionary
|
|
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
|
|
// System.Collections.IEnumerator
|
|
struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A;
|
|
// System.Collections.IEqualityComparer
|
|
struct IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C;
|
|
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>
|
|
struct ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8;
|
|
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>
|
|
struct ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50;
|
|
// System.Collections.Stack
|
|
struct Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643;
|
|
// System.Delegate
|
|
struct Delegate_t;
|
|
// System.DelegateData
|
|
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
|
|
// System.Delegate[]
|
|
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
|
|
// System.Diagnostics.StackTrace[]
|
|
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
|
|
// System.EventArgs
|
|
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E;
|
|
// System.EventHandler
|
|
struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C;
|
|
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs>
|
|
struct EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF;
|
|
// System.Exception
|
|
struct Exception_t;
|
|
// System.Exception[]
|
|
struct ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209;
|
|
// System.FormatException
|
|
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC;
|
|
// System.Func`2<System.Object,System.Int32>
|
|
struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6;
|
|
// System.Func`2<System.Object,System.String>
|
|
struct Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF;
|
|
// System.Globalization.Calendar
|
|
struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5;
|
|
// System.Globalization.CodePageDataItem
|
|
struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB;
|
|
// System.Globalization.CompareInfo
|
|
struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1;
|
|
// System.Globalization.CultureData
|
|
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD;
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F;
|
|
// System.Globalization.DateTimeFormatInfo
|
|
struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F;
|
|
// System.Globalization.NumberFormatInfo
|
|
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8;
|
|
// System.Globalization.TextInfo
|
|
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8;
|
|
// System.IAsyncResult
|
|
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
|
|
// System.IConvertible
|
|
struct IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380;
|
|
// System.IFormatProvider
|
|
struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901;
|
|
// System.IO.FileNotFoundException
|
|
struct FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431;
|
|
// System.IO.MemoryStream
|
|
struct MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C;
|
|
// System.IO.Stream/ReadWriteTask
|
|
struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80;
|
|
// System.IO.StringReader
|
|
struct StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12;
|
|
// System.IO.TextReader
|
|
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A;
|
|
// System.IndexOutOfRangeException
|
|
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF;
|
|
// System.Int32[]
|
|
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
|
|
// System.Int64[]
|
|
struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F;
|
|
// System.IntPtr[]
|
|
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
|
|
// System.InvalidCastException
|
|
struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA;
|
|
// System.InvalidOperationException
|
|
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
|
|
// System.LocalDataStoreHolder
|
|
struct LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304;
|
|
// System.LocalDataStoreMgr
|
|
struct LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9;
|
|
// System.MarshalByRefObject
|
|
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF;
|
|
// System.MonoTypeInfo
|
|
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D;
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
|
|
// System.Object[]
|
|
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
|
|
// System.OverflowException
|
|
struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D;
|
|
// System.RankException
|
|
struct RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F;
|
|
// System.Reflection.AmbiguousMatchException
|
|
struct AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349;
|
|
// System.Reflection.Assembly
|
|
struct Assembly_t;
|
|
// System.Reflection.Assembly/ResolveEventHolder
|
|
struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E;
|
|
// System.Reflection.AssemblyName
|
|
struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82;
|
|
// System.Reflection.Assembly[]
|
|
struct AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58;
|
|
// System.Reflection.Binder
|
|
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
|
|
// System.Reflection.EventInfo
|
|
struct EventInfo_t;
|
|
// System.Reflection.EventInfo/AddEventAdapter
|
|
struct AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B;
|
|
// System.Reflection.FieldInfo
|
|
struct FieldInfo_t;
|
|
// System.Reflection.ICustomAttributeProvider
|
|
struct ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55;
|
|
// System.Reflection.MemberFilter
|
|
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
|
|
// System.Reflection.MemberInfo
|
|
struct MemberInfo_t;
|
|
// System.Reflection.MethodBase
|
|
struct MethodBase_t;
|
|
// System.Reflection.MethodInfo
|
|
struct MethodInfo_t;
|
|
// System.Reflection.MonoMethod
|
|
struct MonoMethod_t;
|
|
// System.Reflection.PropertyInfo
|
|
struct PropertyInfo_t;
|
|
// System.Reflection.RtFieldInfo
|
|
struct RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579;
|
|
// System.Reflection.RuntimeConstructorInfo
|
|
struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D;
|
|
// System.Reflection.StrongNameKeyPair
|
|
struct StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD;
|
|
// System.ResolveEventArgs
|
|
struct ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D;
|
|
// System.ResolveEventHandler
|
|
struct ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5;
|
|
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
|
|
struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A;
|
|
// System.Runtime.ExceptionServices.ExceptionDispatchInfo[]
|
|
struct ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF;
|
|
// System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs
|
|
struct FirstChanceExceptionEventArgs_t0FA7904C9F4BAA2FC640BE3E5AC348F153AD8B6D;
|
|
// System.Runtime.Remoting.Contexts.Context
|
|
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724;
|
|
// System.Runtime.Remoting.Contexts.ContextCallbackObject
|
|
struct ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0;
|
|
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection
|
|
struct DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C;
|
|
// System.Runtime.Remoting.IChannelInfo
|
|
struct IChannelInfo_tBB94344D943AE3690E34FC989F82D79CEE4F0F4D;
|
|
// System.Runtime.Remoting.IEnvoyInfo
|
|
struct IEnvoyInfo_t11D78CB5D6976205E23180E5F0911CEF40672148;
|
|
// System.Runtime.Remoting.IRemotingTypeInfo
|
|
struct IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C;
|
|
// System.Runtime.Remoting.Identity
|
|
struct Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6;
|
|
// System.Runtime.Remoting.Messaging.CADArgHolder
|
|
struct CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A;
|
|
// System.Runtime.Remoting.Messaging.CADMethodCallMessage
|
|
struct CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8;
|
|
// System.Runtime.Remoting.Messaging.CADMethodReturnMessage
|
|
struct CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C;
|
|
// System.Runtime.Remoting.Messaging.IMessage
|
|
struct IMessage_t959A000023FFE2ED91C7AF8BB68CB6482888F8EB;
|
|
// System.Runtime.Remoting.Messaging.IMessageSink
|
|
struct IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C;
|
|
// System.Runtime.Remoting.Messaging.IMethodCallMessage
|
|
struct IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386;
|
|
// System.Runtime.Remoting.Messaging.LogicalCallContext
|
|
struct LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E;
|
|
// System.Runtime.Remoting.Messaging.MethodCall
|
|
struct MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA;
|
|
// System.Runtime.Remoting.ObjRef
|
|
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2;
|
|
// System.Runtime.Serialization.IFormatterConverter
|
|
struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A;
|
|
// System.Runtime.Serialization.SafeSerializationManager
|
|
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
|
|
// System.Runtime.Serialization.SerializationException
|
|
struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210;
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26;
|
|
// System.RuntimeType
|
|
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F;
|
|
// System.Security.Cryptography.CryptographicException
|
|
struct CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A;
|
|
// System.Security.Cryptography.DSA
|
|
struct DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF;
|
|
// System.Security.Cryptography.DSACryptoServiceProvider
|
|
struct DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8;
|
|
// System.Security.Cryptography.HashAlgorithm
|
|
struct HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA;
|
|
// System.Security.Cryptography.KeySizes[]
|
|
struct KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E;
|
|
// System.Security.Cryptography.RSA
|
|
struct RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145;
|
|
// System.Security.Cryptography.RSACryptoServiceProvider
|
|
struct RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4;
|
|
// System.Security.Cryptography.RandomNumberGenerator
|
|
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
|
|
// System.Security.Policy.Evidence
|
|
struct Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307;
|
|
// System.Security.SecurityElement
|
|
struct SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7;
|
|
// System.String
|
|
struct String_t;
|
|
// System.String[]
|
|
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
|
|
// System.SystemException
|
|
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782;
|
|
// System.Text.DecoderFallback
|
|
struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60;
|
|
// System.Text.EncoderFallback
|
|
struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63;
|
|
// System.Text.Encoding
|
|
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4;
|
|
// System.Text.StringBuilder
|
|
struct StringBuilder_t;
|
|
// System.Threading.SemaphoreSlim
|
|
struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048;
|
|
// System.Threading.Tasks.Task`1<System.Int32>
|
|
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87;
|
|
// System.Type
|
|
struct Type_t;
|
|
// System.TypeLoadException
|
|
struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1;
|
|
// System.Type[]
|
|
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
|
|
// System.UInt32[]
|
|
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
|
|
// System.UnhandledExceptionEventArgs
|
|
struct UnhandledExceptionEventArgs_t39DD47D43B0D764FE2C9847FBE760031FBEA0FD1;
|
|
// System.UnhandledExceptionEventHandler
|
|
struct UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE;
|
|
// System.Version
|
|
struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD;
|
|
// System.Void
|
|
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventInfo_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IAttrList_t0CE18247AA5E55E45C85E9CF5844810BE11C435E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t369F219933FB866C23070CD9749538883440F044_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tD447A78605F94CBCA03A6FAE0396C06A35329789_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IContentHandler_tD4FEA788515878D2DFEA5CBE7F6A008DD7629B8E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IList_1_t1D32293C65F49E1B7D7E3344057FED3589CD8F1F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IList_1_t79A79A556E69BA20A09771D2D61B0440B6F4EFBA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t20A8118F137937C08C81821D3462043030E1A597_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tCD04260AE1254C438132446F1E6892AB86D18743_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MonoMethod_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PKCS1_tD10817843EC300450DF0869873961943DE7E0E49_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SmallXmlParserException_t96963A305B0E2C72C5EDC72952F1D079DE102140_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____12D04472A8285260EA12FD3813CDFA9F2D2B548C_4_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____13A35EF1A549297C70E2AD46045BBD2ECA17852D_5_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____1A84029C80CB5518379F199F53FF08A7B764F8FD_7_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____235D99572263B22ADFEE10FDA0C25E12F4D94FFC_11_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_19_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____320B018758ECE3752FFEDBAEB1A6DB67C80B9359_21_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_29_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____56DFA5053B3131883637F53219E7D88CCEF35949_42_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____6D49C9D487D7AD3491ECE08732D68A593CC2038D_57_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____736D39815215889F11249D9958F6ED12D37B9F57_64_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____86F4F563FA2C61798AE6238D789139739428463A_72_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____97FB30C84FF4A41CD4625B44B2940BFC8DB43003_86_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_88_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_89_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____A323DB0813C4D072957BA6FDA79D9776674CD06B_93_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_102_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_111_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____CF0B42666EF5E37EDEA0AB8E173E42C196D03814_117_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_134_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_135_FieldInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral019A3223E819F9804E2A27B7FED3A7D841457746;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral025EF8D85887D67A5A3B6311EAD984E8DAFDD7D4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral044F779DD78DC457C66C3F03FB54E04EE4013F70;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral06F7CD62F004714FEB4927B0E84014F91B0FF599;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0844679F4040A4211BAA73593E4824F055561A9D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral088FB1A4AB057F4FCF7D487006499060C7FE5773;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral08F4C4501CAF720D78CA66D59ADDA8B814A3CF45;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral09064C8431C9942F09D36EE43DACB440E8B42B8F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral099600A10A944114AAC406D136B625FB416DD779;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0EF8991E15895E04C4E0B24686E452411F00B53D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0F0AA93E8B44954B331BE9CA0358DEC4BBDA83A8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0F55C3EB87ABA7E522BE619EF498B24F3B66D357;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral11FF44718A597D1A371E7DA9C818486F238E49E2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral15C7457958B8D5AA390C0B6241FAEAE45284DF64;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral19D727C5849D9F3D7033B755C67B0B5CD9A0315D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1BCBC0A0DE77A0151ED322627AE69CD4E58671D4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1E01512B1E7D3EA5B69D1F71AC90A9451071D646;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral21606782C65E44CAC7AFBB90977D8B6F82140E76;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral226F66629D3BEDCC2E8003A076001F365A2F0A80;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral25DC02E8DE20819997226DD2B2E8AFC4C42839E6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral26C46356B0908F3C4B9A9A8719EFF0AB5B4CE2F3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral28B3D69739B57CAF199F039988DB6DFEA93AC5CE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral29809FBAF5E4FEC88F4127F291473B14B195B3C7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2C1B23E451F9B7284192F8746A59CBEFB5F8470A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2DA88E03A81D77B573503F53B6D5FF0C6CFAD459;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral36DC074F734611AC43ECA91F89189DB7BF0C9C20;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral36FE11D26FD1EB22CC4669E7FDA6B2B00F560C4B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral393EA32677EA1D0FD0F3B6A6D4381D6995D08CD2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3BA5D088825A2BB3865D186C1B5F13FCA57D7FBE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3D40DBB928A5C7B5821BA584FE0E47297DFAA72C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3EA8B873C3337C5D440A0BC514F56B96C35623C4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4337CB30685E8A997FBBE9444610966756E1270F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral43FBBCBC7E4E152115A172D2183820EC22524224;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral44BF3B2BCF19307DAFB65F2F710F3C10BF3E7609;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4803F4151EEE6A399BE429B82E4EDED6135177C0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral494BFF78142278BF15C7806A089D7C002766F8BD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral49D4CB4A8336299524E887B24A053F8EA368AC73;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4A49B75057888FEF636189A3913772BBD0A0EEA0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4D01C38D447D39747350F6F29B3DC073CF36EB69;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4EDE3DBE3842E4E897B27DE36AB7E2BA1F056615;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5268DBA3C26A42480B753E028AA044C841CD5A25;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral532E128909AB556DD052ED48219FF87E1482B7E8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5864A8D7BB6199A1EFA79008591241930D5E7EF2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5944AE25418CEABCF285DCA1D721B77888DAC89B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5A9EA65861D4D8200086439273EC2355C3674264;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5BAB61EB53176449E25C2C82F172B82CB13FFB9D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5C10B5B2CD673A0616D529AA5234B12EE7153808;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5C9A97955BFC51EEBBD22773B2E41E121FB12054;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5E930233E7755E8AABF4429C153DFCE37500C051;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5F3ACFBEB4F6FA5007DD1137AB1E96149AF87281;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral616998B237EE9C3DBBF79DB6CA02275975880AE0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral65F59EC6B1ECD6170D5044474043CCA9560A8071;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral686EE057F16502D2AF6F909365560FA9928BF54C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral68D59FC714B5460FC26BC3AE971DDFFCC060AA1E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral69B85846222F763F537AAE189724E50D8A16971F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6BB30BF3B61DFE1865F4ABE8C032368ED35891A7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6D8AD060BC78FE7857A50CD1CE647997DE67E87F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral721C8C5C51906148BF57F662A1D9D497D2658685;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral731634FF73E12680BA57A79BB4FFDBF6FA8A8F72;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral73D1C9F8E5B4DB41CF3E8760C3948A89E1FFDA80;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral77494FE9A9AD11E89159CF33BF47DC80CF780861;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7803EE252527503B67D1EEB0DEB252622746CEBD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral79D85DFB1C4F87CAFE5C3E2CA8630EB305CEBFDA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7A8D9C17D83CD5114AAF55461B9388B1FF601303;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7B152A24BBC8DB09B568453879784A9FBD2A9FFC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7BFDD5F0A2F25B380D4F5589749852BB8DCFA8F7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7DDF988C838812A4318332F2967BBE1035B2DB75;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7F2FCC733B74AEB86335058889C314E313748F83;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral81581597044514BF54D4F97266022FC991F3915E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral85144172F82F20D22E554672D1927DE158BB79A8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8699FAEDABA67877DE15B4C27ACFA9E75A47EDA2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral882B41A3FF2AADD3EC5D6045584E1EA6D42DB8EE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8841249D4C3CDE2567393EA141F076E740101A64;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral88C4304D27482BED2241CE9527351C05CDBBBF8A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8A9B2426D23E9F4EF08CC6C33D917C1C0E6D1F99;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8B8ACFE3C45E7076004F9D05322FD3A454FD2659;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8C02C6383418D741689393BE88DE4F9BB09E4F45;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8D2121E848D7D4440855F4CD9BE95697511F5B31;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8D357A0A6981BFB00B37DF4E165A0DBFB637E034;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8E7EADD6FA794AF74598EA20E410C436AD81EC8C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8F2E7CD784967D6A79ABD59093146FB1F82E336D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral93E119B1853ED8810093C33F265CF1B1A0A6B1A2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral95928427D7DAC48D21CF83BD4DC9E14CD6E37988;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral99DD65011324D0DDDAE2BC2BE40CEFC52DC334BE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9B8B0B106C9CA702F9BC34AA3D7B01AE7CD314FA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9BE00FBFD10F293F9AA2C07F65A715EDF3951951;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA106AEA5D57A8C79C633AC36B1863D2F42911472;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA2BF42BFCABC8FAE659BF90BD0F026411D146676;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA432C78D14FC7A1B3BDE79A64E5D1C1BEF3C1BC7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA441D4B6031D34A3BF43B24C227C74E8F3B68292;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA573B540D2DDE90BA6DA3B9D6286C8EC60C10044;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA79BB3C5466E1747E27A4D48E271565C77423F5C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA7F719BF74E49F78DA1A4EDFED258B184A7054FF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA885F336E380EA1BD8337D686E8FE237C26ADF04;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA91E4897CA9F429677AFC57ED00D90DE8D3C7001;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAA6D5DDB95B6B39F2D84E6E17984CEC320ED0F39;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAAF41204BECC9AE2723473273563ACB861046064;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAC3617F3A0C9B39A384E38BCEDF346BE891CAAE5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAC7CD7F3C6C1C87FD47E724B1525CEC6EF5F83D3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralADAE9EA1AFF2F3E79B954D2B2C814C316FF5C9E8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAF3660C744976107BED8FC205296D903AFBCF8D5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB177DC4D2B45989003EE5219FFD457FF098B1A59;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB3EEB66EC519D8B1B40897F0EE3BDFC97D6DA28B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB55428CB375AB9C781897FA54736E74AACB5D33C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB66A404869995E54B8D48D938E63CA3C7D1C7DCD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB906B1C4E8EC693BD44787748A9C6EB47D96A6F3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB9D719400551A68010930DED96BD8F5C0A8FFE51;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBC5C4002E88BA9FC743F3B13F5B24641F5F9B9F1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBE51AF91F50F81AA82DB4AA438A59E58D533DB76;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBE6A67E84CAA1665C0880EF5F65106EEAB8F7A35;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBF8FD5B96929EA5544636F39438224A44EB8EDB2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC1734285C685E958AD0B932A43A2CF72C6E069BF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC1740F2BD94B35E7774E0856DF28E0C0C5598D29;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC2955FD4AA8C860BCAD201C5B579125BC7420A7D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC4418E14A221309A58063652B326DA6B15B8C48A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCA96269491D1B54BAE78372F8D395C9208E1C361;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCA9DBD57FE93DBA1A159E859C91C3D45DCCEA5E0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCAEEAB05C2A175307D7167265BB744072B8D72BE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCDA87E8FAD2300F90D5D664EDD42E9364EDDB3D1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCE15802A8C5E8E9DB0FFAF10130EF265296E9EA4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCECA32E904728D1645727CB2B9CDEAA153807D77;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCF29354CC728AFD448CCF3A16E28BF6917590BEF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD0941E68DA8F38151FF86A61FC59F7C5CF9FCAA2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD32C0B5C9D09FE2946F0D3970CAE922B4EC90A3C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD6DC02C9D8E4C868B5A707AFF489D319C7474F1B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD843D80A2F384FD1A7FA2B7BCC94906BB5ECF01C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD99412487FA1DE75405C1F410AFB3F05A3953A9A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDAD53F4604A2CA0126F8BD8633CC0B25F089B4E9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDD1186892A2F5C2BD17CD7D41F90482E39BD02C5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDD4F9004C2B0F33E8BB2DA348539883E15A3683A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDEB3608672319EF258C05F3590E2E46E95BC5F1D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDECE05484839DF110745B0A800297C33CC078287;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDED869EF491FCACB00F4A7F3129E19FBF775198F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE02882ED793EF70B580A07DB2EE2F6768DACBB59;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE08FBA796454E5A33CA3EDAA9395C7DCB2C3C6F4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE10BCDCA7388797D857EE3BBFF6B157B71FBAE8B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE4C3A2D0CC24A4535EF91791064FFE989CBD382A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE62577734DC95246ED5E8213FAE683CEE96DDAC8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE8E3FC9CD74FAD4F2DF7E31E4DF694DF5218FA93;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEA19AED74C943D2A2783BB26F4229A162DA1F082;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF1931330233408109E5BEE8AB9BEA8EF37D1BF01;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF2507A133F1CDD66D4A6B0DC9A0A6F4558D39AB7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF27FEDE2220BCD326AEE3E86DDFD4EBD0FE58CB9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF34463B5B4D8E56E5BA46302DE551ABB85C709D2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF34A8D05E49CE8FD12BC29CE2498D88ED92B36A1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF4A57516EE55A1A8F06B82FEAA340CC2841AB009;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF641C9F6B1300840CE67CFB8D3768EC2CB1B37E9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF73752A258538C53B0A587C0B9960B4200E6B2C0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF75A366185FA685A8394FE9828B6E63715C3E110;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF7623357202A0F46697BF67CA5E89239746A567B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFAE7183D72E2D922886D89549E9DC0AA31A04226;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFB499AED03084DC7A8ECBDE5DADA639999536566;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFBA88196CE9952C9BF4FA1DBA8CC7F1B418E4773;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFD916A733B7A811CD35B7057C8AF918C5FA637EB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFEDEA86F850498B9408AA6DD2D9EC98B70FF80A6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFFD87CEDA20B4534B76315088FAE09B20B741846;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Activator_CreateInstance_m328643EF5AC04AA6C24BFADFCAB54E99DE5CA00F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Activator_CreateInstance_m7776DE4D344614DDBCECD20C93421CC7183C88D3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AggregateException_GetObjectData_mE8EEEDDC03DC396A630B39C345EE93D47D4C7D49_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AggregateException__ctor_m3CBEB65087C05AB23CEE39CF67D35CFE1D657CB4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AggregateException__ctor_mA78372B38621E83F133785934CCA1A9BB45A9040_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AggregateException__ctor_mB5494082EA3D88AA1F6552CF5894E9FDFF812A59_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AppDomainSetup_GetAppBase_m2FC944AE3C9D781BFE9BDE817433A6E100D7D9F4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AppDomain_InvokeInDomainByID_mEA4AF64087DA8C757F8B499C9FA5E8A5AEEEE2CC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AppDomain_LoadSatellite_m4DE403FF997A067CB65EFFE5B21CA2673D311014_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AppDomain_Load_mA402057C7C1056F7186F6EDD5CAF6905F156E979_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArgIterator_Equals_mA4D50273AEA724B8E431B2B8780EBB6D4D82C17E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArgumentException_GetObjectData_m838F8806302102BE3C42D60D5306761FD788F26E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArgumentOutOfRangeException_GetObjectData_mE3EA7003D14E82558A2D76E878BF3235BF88D965_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_m166DFC7F443777EBFF29F92F2D792997A49DAA08_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_m1C4BF209146D7DF552578B0CFBFB641DDD8A90B7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_CopyTo_m3CA31C8758AB92E091DF1469077ED9DB13415B97_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Copy_m0048B7322E29EBFDD2909ED26EF97CE10C44C588_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_GetValue_mB1145BA5883B1EC313933460EB49B80436507821_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_mA7E8630309C4EF5671DA2FBCB8885DE80A9C2698_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Clear_m6BF89179531F325DB05C4BB7E715368EC29D1138_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__RemoveAt_m23A3E2814F63B0BE35E716E0E2F09DD1B945DF85_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_LastIndexOf_m006743435ADB118F21F84D72A7696BBAC1A13B6F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_LastIndexOf_m1CEBDBF89EEB54640CC5819B2FC71991D1F6AC89_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Reverse_mF6A81D8EC8E17D7B3BE5F9B4EE763E3D43E57440_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_SetValue_mD1677B396331152BA588E2EEF167F04E832F3849_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_m2532902787B0BBF002B3F7FE7D731E96D0452D3F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_m33A59C114BC9E9D74876BD0C6356D2D8DD383B0E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_m82F14E448023AE35C0A0E97D83C0E05B1CA3022E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IList_Add_mB8090E69C05684525C3D8F1704EC6A4D42422BE3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IList_Insert_mD042AFFF13A4E0A9D844432EDE0C0754CEDD3867_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IList_RemoveAt_mC2C423CFCFFB6F619EE6B76519A3AD0D1BB9BB54_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IList_Remove_m61014B3F0F98B648ECBA28D81C85A17D887569B6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IStructuralComparable_CompareTo_m8847B4F97B5630FAC8088A7CCAC38019A48B0314_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IStructuralEquatable_GetHashCode_mA7EFA715B4EF2F7E446553B2225BE067D1E44745_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BitConverter_ToString_m6201360C9B19FD17437AA1C88AF1743DCF3442E3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_ConvertFromUtf32_m343A4B419311CC32C466FDEF509E3F44586C193E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_IsLetterOrDigit_m99BA6814DA5E508FAA97139C4DFE6368B655E2EB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_IsNumber_m6E7E5B9BD0DBF69581B6B08D25752D9CC29C97B1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mAD4B2095526B4742201B24C5ADF1717AFB15EF89_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m52E8BCBCCDE8B8BEB6FF90ECC41E80C09A46B4C3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mCA7075EA6548A18B929368520217975094841997_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mEA41AEAE79570A9410777F6B90969532564025DD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mC1DAEB8B35E60391E3F8D536FA6B91F9B331DABC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mD80C2D50024919C5BD8CAB33C0C226532B707449_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mB886C990CD1F0558809236CF1D28C977A3558306_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m9DD19D800AE6D84ED0729D5D97CAF84DF317DD38_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1DFEC304B805408BFF9021E6E069A75071C41577_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3CA9F30DC986E649F8E82AD69F5085D355D91AC1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m50C4D0E0ACA8B2A3097BAFB0C73EAC7FB0D8DFD3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m599E284E3C4D0D6BC71FCC04EEF110C663406224_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m0BE132E4507E26AD7ACA5D0589C71A6F8F4D924E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m472ACECB3C087B001D859E7FEA999C3E37F3CDD5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_CopyTo_m91DC1D7BF73E649EE2CFB6BA1BC936284D918C01_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1__ctor_mB9A088773123898D26251D041368C0E6FB692670_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_get_Count_mB2DF762E7070C9FA49BA2CEB86F0AE5A93261B41_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_get_Item_mFD009BA0F3153526E49D9E99C0C9CF88D9F9EA2C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_Parse_mBFFAA2DDD223DEE2A8E22E33C9CF986F06B84D5F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadAttribute_mFE6E3CA7C9EE7432F9D31358EB164463E0EAAD99_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadCDATASection_mC256BDCC2986CE516F699828792B9E67B3282B61_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadComment_m9C33081E484F35D15575E4813430356332A1DCC5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadContent_m9B531EF2F84F1292710BF1B5EC798EFE2982905D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadReference_m630C8CDBEE46892DB8A490D7101E587AC788C3DB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadUntil_m279D06CB9963FEEF22356F085F2745A70DD78F23_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_SkipWhitespaces_mA351F024FC4B043329B3B6581791093015958725_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509CertificateCollection_Add_m92443BC84B1A9C07432AB5294089E0A041302341_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Certificate_Parse_mDBD169C54D9E5522079A271FAD5DA80567519C7F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Certificate__ctor_mD20B4220D8F4B61E18DEECA81BFB652BFB55234E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Certificate_get_DSA_m3427054136A14DF290537F797FE8A40784802FFC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509ExtensionCollection__ctor_m0441BFBD0D73B5878D71B56DB9A2B67D73E39A09_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Extension__ctor_m16A891E45F0B21502442C2BCCE4C791CB0EC9C9B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var;
|
|
IL2CPP_EXTERN_C const uint32_t Activator_CreateInstance_m328643EF5AC04AA6C24BFADFCAB54E99DE5CA00F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Activator_CreateInstance_m7776DE4D344614DDBCECD20C93421CC7183C88D3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException_Flatten_mDA4D8AD18CD6E4E13B69A3CDC8F341D825AFE05C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException_GetObjectData_mE8EEEDDC03DC396A630B39C345EE93D47D4C7D49_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException_ToString_m44BC17B24274C52DD53286526922CC3DF4AC9A00_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException__ctor_m1740971CC345A49D8FCB7DDE6C905FB0F3353C28_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException__ctor_m3CBEB65087C05AB23CEE39CF67D35CFE1D657CB4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException__ctor_m49EF2FE10BC147085D49932EDE07AD581C461818_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException__ctor_m4BE6D1A4009BE2081C418E517FFDFE415B6CF908_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException__ctor_m863A7C10A5AC7652F73FD1DD2441F9FF5544311E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException__ctor_mA78372B38621E83F133785934CCA1A9BB45A9040_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException__ctor_mB5494082EA3D88AA1F6552CF5894E9FDFF812A59_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException__ctor_mD4BA712D1E805F774D050A60BD64F3A8EE4CA7A5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AggregateException__ctor_mEB0710D0C50475FCE00B187AA5FA8098DC656E44_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomainSetup_GetAppBase_m2FC944AE3C9D781BFE9BDE817433A6E100D7D9F4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomainUnloadedException__ctor_m2673FE982D10437784B22198CAD3A7CD6BDE6A7A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_DoAssemblyLoad_m67D809E0FE4AFDBCE859B5FDA10F9AF756EF0689_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_DoAssemblyResolve_mA87F0E9DDEB93F35E6EE41FCAF5F7AAE8B96BDF6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_DoResourceResolve_mC6874A5405D0F65E9C84CB1710B18C6E3C2FE2DB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_DoTypeResolve_mC5FF2B020351A6C8BD8EAA0FF83BB66EDF996AA6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_GetMarshalledDomainObjRef_m2579B1B9662ED4CC23EF52B27B10D955D6DB4C2D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_GetProcessGuid_mDAFFFAF5716D58A3C645D6033AD2F8FF95BE4315_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_InvokeInDomainByID_mEA4AF64087DA8C757F8B499C9FA5E8A5AEEEE2CC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_LoadSatellite_m4DE403FF997A067CB65EFFE5B21CA2673D311014_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_Load_mA402057C7C1056F7186F6EDD5CAF6905F156E979_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_ProcessMessageInDomain_m8BED79EC98447A657818AD6E59676CBCEA40D4C3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_add_DomainUnload_mF24D35CA25C3C808EC78600D0C603B396EC8765F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_add_UnhandledException_mEEDCA5704AE44AEE033BC4929067895C7EAC9D2D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_get_SetupInformation_m0D54A56359F4CB4EB20A40B9C8212C67000D9BB8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_remove_DomainUnload_m13646133574E1C904DB87EA206A189E4566EDCD9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AppDomain_remove_UnhandledException_m7311A7962E7B103E494F18E20EF8F9F18136A881_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ApplicationException__ctor_m0AF8988654AD1CA2DCA8EC12E6D46563E4EE703F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ApplicationException__ctor_m367884FC6156A7F473CC3CE5BA78F8EC5180CADD_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ApplicationException__ctor_mDC26CE8ECD0DDA5C8FA50C8E8B2614F3B50FC308_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ApplicationException__ctor_mFF30CCDE8B078E0ED2E206EEB39611840367607A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArgIterator_Equals_mA4D50273AEA724B8E431B2B8780EBB6D4D82C17E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArgumentException_GetObjectData_m838F8806302102BE3C42D60D5306761FD788F26E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArgumentException__ctor_m77591C20EDA3ADEE2FAF1987321D686E249326C5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArgumentException_get_Message_m23FEA6788F6D9BF5A73F59428DA74307035FAF61_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArgumentOutOfRangeException_GetObjectData_mE3EA7003D14E82558A2D76E878BF3235BF88D965_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArgumentOutOfRangeException__ctor_m70423E62C9103D310DC95B96E2014E7282036664_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArgumentOutOfRangeException_get_Message_m053C3F0C28F661EC585459207993AC43A7C85D04_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArgumentOutOfRangeException_get_RangeMessage_m6E0D55DD4CCE7312D3BE08D2BE74A79128ED095C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArithmeticException__ctor_m8F13CB2C5B293239D87D5D7CD065630DE2C9C4D9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArraySpec_Append_mEA5F3D33185A31FDCF7365E21B65937F2FE17639_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArraySpec_ToString_mD91A17CAFE62504A681BA64D57A9A4C9B3E0070F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ArrayTypeMismatchException__ctor_m1E7F220C883CE2ED1C4AA08ACA96D4E4B1A635F1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_m166DFC7F443777EBFF29F92F2D792997A49DAA08_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_m1C4BF209146D7DF552578B0CFBFB641DDD8A90B7_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_CopyTo_m3CA31C8758AB92E091DF1469077ED9DB13415B97_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Copy_m0048B7322E29EBFDD2909ED26EF97CE10C44C588_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_m5FE74E0701D431412B309031C208BB7F0B62AA05_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_mA240E55E62250C18ED5DFF119055CF5002C4CE3F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_GetEnumerator_m3BD9ACCA9512DA3687C8369BF999BA2916F0EA15_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_GetValue_mA5B92FA4128EA88A676AB446C957C6C1D3D3D900_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_GetValue_mB1145BA5883B1EC313933460EB49B80436507821_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_GetValue_mEC23FDFB21649A4D9D90D6EA363CCE4E58D676A0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_mA7E8630309C4EF5671DA2FBCB8885DE80A9C2698_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Clear_m6BF89179531F325DB05C4BB7E715368EC29D1138_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__RemoveAt_m23A3E2814F63B0BE35E716E0E2F09DD1B945DF85_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_LastIndexOf_m006743435ADB118F21F84D72A7696BBAC1A13B6F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_LastIndexOf_m1CEBDBF89EEB54640CC5819B2FC71991D1F6AC89_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Reverse_mF6A81D8EC8E17D7B3BE5F9B4EE763E3D43E57440_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_SetValue_m3AC2F0A285B2E7E1BBCD468B28E89E847CBC8C60_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_SetValue_mD1677B396331152BA588E2EEF167F04E832F3849_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_SetValue_mF7A2D69DFE9E9AE0F08A705123C48752D212CF6E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_SortImpl_m69441E6855557430ED59346309E0AAA6BFB2305A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Sort_m2532902787B0BBF002B3F7FE7D731E96D0452D3F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Sort_m33A59C114BC9E9D74876BD0C6356D2D8DD383B0E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Sort_m82F14E448023AE35C0A0E97D83C0E05B1CA3022E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IList_Add_mB8090E69C05684525C3D8F1704EC6A4D42422BE3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IList_Insert_mD042AFFF13A4E0A9D844432EDE0C0754CEDD3867_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IList_RemoveAt_mC2C423CFCFFB6F619EE6B76519A3AD0D1BB9BB54_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IList_Remove_m61014B3F0F98B648ECBA28D81C85A17D887569B6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IStructuralComparable_CompareTo_m8847B4F97B5630FAC8088A7CCAC38019A48B0314_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IStructuralEquatable_Equals_m67D550D3F7DD3BEAA7B45AF229F22E1FAA072B66_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IStructuralEquatable_GetHashCode_mA7EFA715B4EF2F7E446553B2225BE067D1E44745_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AssemblyLoadEventArgs__ctor_m1F35C892F2C6D04A5792F741C905D13E163D60E8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AttrListImpl_Add_mC2841C466B5711319B528BB1082B77CB842B4E2D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AttrListImpl_Clear_m9C1CF67FAC2C726DC0CF7E4663751C7D89D922A0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AttrListImpl_GetName_m49E0984541255F6E145F6F68E01944D0E39E42FF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AttrListImpl_GetValue_m64E693D70F358F8491AEC75E0CB1C4B0B479EC17_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AttrListImpl_GetValue_mE92027FDDFB4586443E3A0A9DF865D89496D4F71_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AttrListImpl__ctor_m5B7885CD6830138F25DC2D46F14B1A18DD1564BA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AttrListImpl_get_Length_mD72C559AE80A421818D495A852192B9FB7D0452C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AttrListImpl_get_Names_mFDBCE4524F597758602D5453AA1F8AFF7FBD0CC9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AttrListImpl_get_Values_m99636E3FAF3306508F47185B0957B58AFAA3AA42_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t AttributeUsageAttribute__cctor_mF8E35DDC8310D4D1AF8C15442899BB38317F1DE9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_Equals_mCF07CF66D36F64A6F7616756BFD76617398AFDB9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_InternalGetCustomAttributes_m786427FC13FB2D718DF52743D0D56B4F4A4B7C87_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_InternalGetCustomAttributes_m79A1BD09EEADB51067F0EAD54C2FCFED60825FD3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_InternalIsDefined_m5C7E046C44198677CBCA00781979A7B3799460B8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_InternalIsDefined_mE8B292CB9DC5662A6C36528E28A23B38664E6A24_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BadImageFormatException_GetObjectData_m5580B939314DA98EF6FCADE83DA3E7C9BE3BD991_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BadImageFormatException_SetMessageField_m2C8D670210E769C795AABA7CF753B6A278036A84_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BadImageFormatException_ToString_mD518BBE5092DF17432446363042C9BC0E91B609F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BadImageFormatException__ctor_m3AA3D56F804ADB66408EB0FB1EE3BA3CFE065EC0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BadImageFormatException__ctor_m897E6C06B73FB4B83F49B3DAD834507A8C19C404_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_GetBytes_m2652D1E20FC48C5953639CE61B2F064C2074CF78_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_GetBytes_m5795DECB822051D8BBF3EA92DD3B2372E017ADAF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_GetBytes_m692444BB12DAE2F46C7DDE67B04CF2073DEE1211_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_GetBytes_mA467343A340BEB9E48750918EE3377291DB25A58_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_GetBytes_mB5BCBAAFE3AE14F2AF1731187C7155A236DF38EA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_GetBytes_mB7DFC7C4705F916C40527A87C9AA6D0EABC23512_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_ToDouble_m5C36647E95F4F3FF047B452C9A21A58E466CA295_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_ToInt64_m28987106F93DB8C163FD4E740B4FEA405CC8A7FA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_ToSingle_m5A87B9C607E24D0F283EB39990FAF7ABAB1CBB17_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_ToString_m6201360C9B19FD17437AA1C88AF1743DCF3442E3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_ToUInt16_m8D6CAA71ACA3A50B5481B836E51FC8D26C14ED90_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_ToUInt32_mD6A3C2F4BA020691B99FABF863F6FFF6A456FF59_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter_ToUInt64_m2AB7FBC373C5A2DEB276DDF00289A69C80A84451_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t BitConverter__cctor_m96EE9A8F92BEA2B6D94CE6AD09A88BF603E134E4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_TrimWhiteSpaceAndNull_mD8E9241675F8550855A9C956B39EDCE5167E381C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean_TryParse_m5EA8C5E47A3BF0223FD368503B36206256937A61_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Boolean__cctor_mD84E33DC70FD9D37BAEA0AEB64150B59FB2C5852_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ByteMatcher_AddMapping_m6F17EE5B94E56935034142A2847A83F5E099B708_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ByteMatcher_Match_mF9866E6C6F2FEC09034695FBED166744F65BA931_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ByteMatcher_StartsWith_mE7DCC79999EE153E06F1230A98D1D2CA20D1D4A5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ByteMatcher__ctor_m5F4DEDA840BDF53D47E1A9C3267442295F928144_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t CannotUnloadAppDomainException__ctor_m20216922572B65851E8665AD1294DD90D5402965_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_ConvertFromUtf32_m343A4B419311CC32C466FDEF509E3F44586C193E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_GetUnicodeCategory_m07C2D4BEA7C630EF8D87B2244689C5C315EC4914_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsControl_m32D58EB3C86758859BA4AC8BC075AB54F166F44E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsLetterOrDigit_m99BA6814DA5E508FAA97139C4DFE6368B655E2EB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsLetterOrDigit_mD7307B3157DFA4EC20D58F68ACB6A9793D3A8292_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsNumber_m6B4D661D496A7EBCC142740E91F55B01754FC24F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsNumber_m6E7E5B9BD0DBF69581B6B08D25752D9CC29C97B1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsPunctuation_m2F82DCD9CE2CBED034F8CF39E247BBB065935D51_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsSymbol_m5F2F2AD31BDB3A9D090B5C12E2A356E3FF600A4F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsUpper_m94DFB4B66A46914F0588FB7EB42E9BB4A14C3513_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_ToLowerInvariant_m691DAE5E85A00BC3A653CB4F3C0045BF1528641D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_ToUpperInvariant_m2FF95DAB0D20E1EB1E34ECE24F85253269017915_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_ToUpper_m5D0AC7F9601D2981E2BCC8710BED485D804CE4DA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Char__cctor_m36A597E4A09E96474A4F9904DCDEAFE13277CE2D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DeriveBytes_DeriveIV_m85A1C453ABAD1547195132CC0E958E856501F6CF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DeriveBytes_DeriveKey_mB869A64D12F1F4FB65F24E0724A067590DB9423F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DeriveBytes_DeriveMAC_mDF4165FCFFCB3A3789C48CBBC3FAE166A404A819_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DeriveBytes_Derive_m4417319B4B7F85D597E9F82E69BB459A4464E7D6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DeriveBytes__cctor_mC4051C84B0BB193938F7BA71B853E05DC4427319_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DeriveBytes_set_Password_m16AA9059AAA60ADFC5B7F09A9D7283F6B8E1BC6F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DeriveBytes_set_Salt_mA854998FFAD24BD9E6826587CBEEB7152BC32B30_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SecurityParser_LoadXml_mC52937EF26E02DC2EEA05716D4CC4B5B6E2D124C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SecurityParser_OnChars_m40E1236580D7790B03DF4B822CD94522CA6004E8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SecurityParser_OnEndElement_mD7258BCF8FB5C80042CBD036FC65A27628F87AE5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SecurityParser_OnStartElement_m043969D5E7935474E350EDFB77C55A6B26CDDCC6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SecurityParser__ctor_m46A21D62E80E1A94877CC4CFD2FFF313EF6E3E06_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParserException__ctor_m6AB9D00DB18C0DD5D3A9B19B50BE555685206A22_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_HandleBufferedContent_m92389C6DA5658F8C205E7FC508D0E49055312BCE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_IsNameChar_m778080869517BCC9BA829CA2A3D56690825FBD7A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_Parse_mBFFAA2DDD223DEE2A8E22E33C9CF986F06B84D5F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_ReadAttribute_mFE6E3CA7C9EE7432F9D31358EB164463E0EAAD99_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_ReadCDATASection_mC256BDCC2986CE516F699828792B9E67B3282B61_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_ReadComment_m9C33081E484F35D15575E4813430356332A1DCC5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_ReadContent_m9B531EF2F84F1292710BF1B5EC798EFE2982905D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_ReadReference_m630C8CDBEE46892DB8A490D7101E587AC788C3DB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_ReadUntil_m279D06CB9963FEEF22356F085F2745A70DD78F23_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_SkipWhitespaces_mA351F024FC4B043329B3B6581791093015958725_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser_UnexpectedEndError_mEA2509A8E147FC380F9726D2A98E1B0A44553329_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SmallXmlParser__ctor_m9FD7D5896F766B4F9ED74478616F09462523ABF2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X501_AppendEntry_m6B792902676CBE52DA6D3602B64C215ACF3881FE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X501_ToString_m7DAF3907D55EB3E1443A8F77BBD112157D5B46D1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X501_ToString_mE2221E32FE2C82ABC545B94794A400F4979AE4B3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X501__cctor_mB30CF419A807D4E4C9F26C1D636650E1CC515A3B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509CertificateCollection_Add_m92443BC84B1A9C07432AB5294089E0A041302341_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509CertificateCollection_GetEnumerator_mF727FC348ED5A98CBFD5DB476A490AE7E67D2B29_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509CertificateCollection_get_Item_m9D86EAB41F196198DE5A0B855200B33F97BEEC82_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509CertificateEnumerator_MoveNext_m5862EE69AF1A64DCF32885052BBD7429381BA7D2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m2F728922369DD616AA819677BB1730477872A0F5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m014A48D073D1DF62A4D8631ED07E8B3BC6EA8834_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m1E28B3521979906042C16BB51337ADD7CD43B945_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509CertificateEnumerator__ctor_m907435AC45CD48DA1C82DB9C34480DC0BEAEF38F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509CertificateEnumerator_get_Current_m0B73ED629E9F6E2EAC80B699C9F6B0DFFF566089_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Certificate_GetObjectData_m9F64BF2BCF7179890398D4CBCDAF7FD2D291B8A8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Certificate_GetUnsignedBigInteger_m50790BFFFE21F0ED229BADB82A9881673FB61EE6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Certificate_PEM_m7222F318BC4E9A4D263E49EC236D7F3626366B55_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Certificate_Parse_mDBD169C54D9E5522079A271FAD5DA80567519C7F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Certificate__cctor_mBE2FD3CE1FBD329810E55F5B1E8ACBE909DA4B0C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Certificate__ctor_mD20B4220D8F4B61E18DEECA81BFB652BFB55234E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Certificate_get_DSA_m3427054136A14DF290537F797FE8A40784802FFC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Certificate_get_KeyAlgorithmParameters_mF1249C706BAE0B41EB13D6135BD586FBEEC5C0C2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Certificate_get_RSA_m1AA2E60B7C340E9CB1841763A89E4FCFFB8903F2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Certificate_get_RawData_m52564DBCD26E2DD865635681199BAE8B2D91541F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Certificate_get_SerialNumber_m10773B6CE1C111AA10DC86227A5F911273989329_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509ExtensionCollection__ctor_m0441BFBD0D73B5878D71B56DB9A2B67D73E39A09_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Extension_Equals_mCE2F109880049F6E4AB58018FDC95BD1B13EE584_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Extension_ToString_mC968AAD96357747636F4B7AE2903FFB5B32BA84A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Extension_WriteLine_mC6277CA21812934D276BD2167CF5305E725BA18C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t X509Extension__ctor_m16A891E45F0B21502442C2BCCE4C791CB0EC9C9B_MetadataUsageId;
|
|
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com;
|
|
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke;
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com;
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17;
|
|
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
|
|
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
|
|
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
|
|
struct ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209;
|
|
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
|
|
struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F;
|
|
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
|
|
struct AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58;
|
|
struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE;
|
|
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
|
|
|
|
IL2CPP_EXTERN_C_BEGIN
|
|
IL2CPP_EXTERN_C_END
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
// System.Object
|
|
|
|
|
|
// Mono.Security.ASN1
|
|
struct ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Byte Mono.Security.ASN1::m_nTag
|
|
uint8_t ___m_nTag_0;
|
|
// System.Byte[] Mono.Security.ASN1::m_aValue
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_aValue_1;
|
|
// System.Collections.ArrayList Mono.Security.ASN1::elist
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___elist_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_nTag_0() { return static_cast<int32_t>(offsetof(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22, ___m_nTag_0)); }
|
|
inline uint8_t get_m_nTag_0() const { return ___m_nTag_0; }
|
|
inline uint8_t* get_address_of_m_nTag_0() { return &___m_nTag_0; }
|
|
inline void set_m_nTag_0(uint8_t value)
|
|
{
|
|
___m_nTag_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_aValue_1() { return static_cast<int32_t>(offsetof(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22, ___m_aValue_1)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_aValue_1() const { return ___m_aValue_1; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_aValue_1() { return &___m_aValue_1; }
|
|
inline void set_m_aValue_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___m_aValue_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_aValue_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_elist_2() { return static_cast<int32_t>(offsetof(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22, ___elist_2)); }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_elist_2() const { return ___elist_2; }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_elist_2() { return &___elist_2; }
|
|
inline void set_elist_2(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
|
|
{
|
|
___elist_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___elist_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// Mono.Security.Uri
|
|
struct Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Boolean Mono.Security.Uri::isUnixFilePath
|
|
bool ___isUnixFilePath_0;
|
|
// System.String Mono.Security.Uri::source
|
|
String_t* ___source_1;
|
|
// System.String Mono.Security.Uri::scheme
|
|
String_t* ___scheme_2;
|
|
// System.String Mono.Security.Uri::host
|
|
String_t* ___host_3;
|
|
// System.Int32 Mono.Security.Uri::port
|
|
int32_t ___port_4;
|
|
// System.String Mono.Security.Uri::path
|
|
String_t* ___path_5;
|
|
// System.String Mono.Security.Uri::query
|
|
String_t* ___query_6;
|
|
// System.String Mono.Security.Uri::fragment
|
|
String_t* ___fragment_7;
|
|
// System.String Mono.Security.Uri::userinfo
|
|
String_t* ___userinfo_8;
|
|
// System.Boolean Mono.Security.Uri::isUnc
|
|
bool ___isUnc_9;
|
|
// System.Boolean Mono.Security.Uri::isOpaquePart
|
|
bool ___isOpaquePart_10;
|
|
// System.Boolean Mono.Security.Uri::userEscaped
|
|
bool ___userEscaped_11;
|
|
// System.String Mono.Security.Uri::cachedToString
|
|
String_t* ___cachedToString_12;
|
|
// System.String Mono.Security.Uri::cachedLocalPath
|
|
String_t* ___cachedLocalPath_13;
|
|
// System.Int32 Mono.Security.Uri::cachedHashCode
|
|
int32_t ___cachedHashCode_14;
|
|
// System.Boolean Mono.Security.Uri::reduce
|
|
bool ___reduce_15;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_isUnixFilePath_0() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___isUnixFilePath_0)); }
|
|
inline bool get_isUnixFilePath_0() const { return ___isUnixFilePath_0; }
|
|
inline bool* get_address_of_isUnixFilePath_0() { return &___isUnixFilePath_0; }
|
|
inline void set_isUnixFilePath_0(bool value)
|
|
{
|
|
___isUnixFilePath_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_source_1() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___source_1)); }
|
|
inline String_t* get_source_1() const { return ___source_1; }
|
|
inline String_t** get_address_of_source_1() { return &___source_1; }
|
|
inline void set_source_1(String_t* value)
|
|
{
|
|
___source_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___source_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_scheme_2() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___scheme_2)); }
|
|
inline String_t* get_scheme_2() const { return ___scheme_2; }
|
|
inline String_t** get_address_of_scheme_2() { return &___scheme_2; }
|
|
inline void set_scheme_2(String_t* value)
|
|
{
|
|
___scheme_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___scheme_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_host_3() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___host_3)); }
|
|
inline String_t* get_host_3() const { return ___host_3; }
|
|
inline String_t** get_address_of_host_3() { return &___host_3; }
|
|
inline void set_host_3(String_t* value)
|
|
{
|
|
___host_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___host_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_port_4() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___port_4)); }
|
|
inline int32_t get_port_4() const { return ___port_4; }
|
|
inline int32_t* get_address_of_port_4() { return &___port_4; }
|
|
inline void set_port_4(int32_t value)
|
|
{
|
|
___port_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_path_5() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___path_5)); }
|
|
inline String_t* get_path_5() const { return ___path_5; }
|
|
inline String_t** get_address_of_path_5() { return &___path_5; }
|
|
inline void set_path_5(String_t* value)
|
|
{
|
|
___path_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___path_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_query_6() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___query_6)); }
|
|
inline String_t* get_query_6() const { return ___query_6; }
|
|
inline String_t** get_address_of_query_6() { return &___query_6; }
|
|
inline void set_query_6(String_t* value)
|
|
{
|
|
___query_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___query_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_fragment_7() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___fragment_7)); }
|
|
inline String_t* get_fragment_7() const { return ___fragment_7; }
|
|
inline String_t** get_address_of_fragment_7() { return &___fragment_7; }
|
|
inline void set_fragment_7(String_t* value)
|
|
{
|
|
___fragment_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___fragment_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_userinfo_8() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___userinfo_8)); }
|
|
inline String_t* get_userinfo_8() const { return ___userinfo_8; }
|
|
inline String_t** get_address_of_userinfo_8() { return &___userinfo_8; }
|
|
inline void set_userinfo_8(String_t* value)
|
|
{
|
|
___userinfo_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___userinfo_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isUnc_9() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___isUnc_9)); }
|
|
inline bool get_isUnc_9() const { return ___isUnc_9; }
|
|
inline bool* get_address_of_isUnc_9() { return &___isUnc_9; }
|
|
inline void set_isUnc_9(bool value)
|
|
{
|
|
___isUnc_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isOpaquePart_10() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___isOpaquePart_10)); }
|
|
inline bool get_isOpaquePart_10() const { return ___isOpaquePart_10; }
|
|
inline bool* get_address_of_isOpaquePart_10() { return &___isOpaquePart_10; }
|
|
inline void set_isOpaquePart_10(bool value)
|
|
{
|
|
___isOpaquePart_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_userEscaped_11() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___userEscaped_11)); }
|
|
inline bool get_userEscaped_11() const { return ___userEscaped_11; }
|
|
inline bool* get_address_of_userEscaped_11() { return &___userEscaped_11; }
|
|
inline void set_userEscaped_11(bool value)
|
|
{
|
|
___userEscaped_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cachedToString_12() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___cachedToString_12)); }
|
|
inline String_t* get_cachedToString_12() const { return ___cachedToString_12; }
|
|
inline String_t** get_address_of_cachedToString_12() { return &___cachedToString_12; }
|
|
inline void set_cachedToString_12(String_t* value)
|
|
{
|
|
___cachedToString_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___cachedToString_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cachedLocalPath_13() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___cachedLocalPath_13)); }
|
|
inline String_t* get_cachedLocalPath_13() const { return ___cachedLocalPath_13; }
|
|
inline String_t** get_address_of_cachedLocalPath_13() { return &___cachedLocalPath_13; }
|
|
inline void set_cachedLocalPath_13(String_t* value)
|
|
{
|
|
___cachedLocalPath_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___cachedLocalPath_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cachedHashCode_14() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___cachedHashCode_14)); }
|
|
inline int32_t get_cachedHashCode_14() const { return ___cachedHashCode_14; }
|
|
inline int32_t* get_address_of_cachedHashCode_14() { return &___cachedHashCode_14; }
|
|
inline void set_cachedHashCode_14(int32_t value)
|
|
{
|
|
___cachedHashCode_14 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_reduce_15() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D, ___reduce_15)); }
|
|
inline bool get_reduce_15() const { return ___reduce_15; }
|
|
inline bool* get_address_of_reduce_15() { return &___reduce_15; }
|
|
inline void set_reduce_15(bool value)
|
|
{
|
|
___reduce_15 = value;
|
|
}
|
|
};
|
|
|
|
struct Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields
|
|
{
|
|
public:
|
|
// System.String Mono.Security.Uri::hexUpperChars
|
|
String_t* ___hexUpperChars_16;
|
|
// System.String Mono.Security.Uri::SchemeDelimiter
|
|
String_t* ___SchemeDelimiter_17;
|
|
// System.String Mono.Security.Uri::UriSchemeFile
|
|
String_t* ___UriSchemeFile_18;
|
|
// System.String Mono.Security.Uri::UriSchemeFtp
|
|
String_t* ___UriSchemeFtp_19;
|
|
// System.String Mono.Security.Uri::UriSchemeGopher
|
|
String_t* ___UriSchemeGopher_20;
|
|
// System.String Mono.Security.Uri::UriSchemeHttp
|
|
String_t* ___UriSchemeHttp_21;
|
|
// System.String Mono.Security.Uri::UriSchemeHttps
|
|
String_t* ___UriSchemeHttps_22;
|
|
// System.String Mono.Security.Uri::UriSchemeMailto
|
|
String_t* ___UriSchemeMailto_23;
|
|
// System.String Mono.Security.Uri::UriSchemeNews
|
|
String_t* ___UriSchemeNews_24;
|
|
// System.String Mono.Security.Uri::UriSchemeNntp
|
|
String_t* ___UriSchemeNntp_25;
|
|
// Mono.Security.Uri_UriScheme[] Mono.Security.Uri::schemes
|
|
UriSchemeU5BU5D_t92DD65C3EBB9FBABD1780850EC0D907191FC261C* ___schemes_26;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_hexUpperChars_16() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields, ___hexUpperChars_16)); }
|
|
inline String_t* get_hexUpperChars_16() const { return ___hexUpperChars_16; }
|
|
inline String_t** get_address_of_hexUpperChars_16() { return &___hexUpperChars_16; }
|
|
inline void set_hexUpperChars_16(String_t* value)
|
|
{
|
|
___hexUpperChars_16 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___hexUpperChars_16), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_SchemeDelimiter_17() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields, ___SchemeDelimiter_17)); }
|
|
inline String_t* get_SchemeDelimiter_17() const { return ___SchemeDelimiter_17; }
|
|
inline String_t** get_address_of_SchemeDelimiter_17() { return &___SchemeDelimiter_17; }
|
|
inline void set_SchemeDelimiter_17(String_t* value)
|
|
{
|
|
___SchemeDelimiter_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeFile_18() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields, ___UriSchemeFile_18)); }
|
|
inline String_t* get_UriSchemeFile_18() const { return ___UriSchemeFile_18; }
|
|
inline String_t** get_address_of_UriSchemeFile_18() { return &___UriSchemeFile_18; }
|
|
inline void set_UriSchemeFile_18(String_t* value)
|
|
{
|
|
___UriSchemeFile_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeFtp_19() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields, ___UriSchemeFtp_19)); }
|
|
inline String_t* get_UriSchemeFtp_19() const { return ___UriSchemeFtp_19; }
|
|
inline String_t** get_address_of_UriSchemeFtp_19() { return &___UriSchemeFtp_19; }
|
|
inline void set_UriSchemeFtp_19(String_t* value)
|
|
{
|
|
___UriSchemeFtp_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_19), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeGopher_20() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields, ___UriSchemeGopher_20)); }
|
|
inline String_t* get_UriSchemeGopher_20() const { return ___UriSchemeGopher_20; }
|
|
inline String_t** get_address_of_UriSchemeGopher_20() { return &___UriSchemeGopher_20; }
|
|
inline void set_UriSchemeGopher_20(String_t* value)
|
|
{
|
|
___UriSchemeGopher_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_20), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeHttp_21() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields, ___UriSchemeHttp_21)); }
|
|
inline String_t* get_UriSchemeHttp_21() const { return ___UriSchemeHttp_21; }
|
|
inline String_t** get_address_of_UriSchemeHttp_21() { return &___UriSchemeHttp_21; }
|
|
inline void set_UriSchemeHttp_21(String_t* value)
|
|
{
|
|
___UriSchemeHttp_21 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_21), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeHttps_22() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields, ___UriSchemeHttps_22)); }
|
|
inline String_t* get_UriSchemeHttps_22() const { return ___UriSchemeHttps_22; }
|
|
inline String_t** get_address_of_UriSchemeHttps_22() { return &___UriSchemeHttps_22; }
|
|
inline void set_UriSchemeHttps_22(String_t* value)
|
|
{
|
|
___UriSchemeHttps_22 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_22), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeMailto_23() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields, ___UriSchemeMailto_23)); }
|
|
inline String_t* get_UriSchemeMailto_23() const { return ___UriSchemeMailto_23; }
|
|
inline String_t** get_address_of_UriSchemeMailto_23() { return &___UriSchemeMailto_23; }
|
|
inline void set_UriSchemeMailto_23(String_t* value)
|
|
{
|
|
___UriSchemeMailto_23 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_23), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeNews_24() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields, ___UriSchemeNews_24)); }
|
|
inline String_t* get_UriSchemeNews_24() const { return ___UriSchemeNews_24; }
|
|
inline String_t** get_address_of_UriSchemeNews_24() { return &___UriSchemeNews_24; }
|
|
inline void set_UriSchemeNews_24(String_t* value)
|
|
{
|
|
___UriSchemeNews_24 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_24), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeNntp_25() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields, ___UriSchemeNntp_25)); }
|
|
inline String_t* get_UriSchemeNntp_25() const { return ___UriSchemeNntp_25; }
|
|
inline String_t** get_address_of_UriSchemeNntp_25() { return &___UriSchemeNntp_25; }
|
|
inline void set_UriSchemeNntp_25(String_t* value)
|
|
{
|
|
___UriSchemeNntp_25 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_25), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_schemes_26() { return static_cast<int32_t>(offsetof(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_StaticFields, ___schemes_26)); }
|
|
inline UriSchemeU5BU5D_t92DD65C3EBB9FBABD1780850EC0D907191FC261C* get_schemes_26() const { return ___schemes_26; }
|
|
inline UriSchemeU5BU5D_t92DD65C3EBB9FBABD1780850EC0D907191FC261C** get_address_of_schemes_26() { return &___schemes_26; }
|
|
inline void set_schemes_26(UriSchemeU5BU5D_t92DD65C3EBB9FBABD1780850EC0D907191FC261C* value)
|
|
{
|
|
___schemes_26 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___schemes_26), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// Mono.Security.X509.PKCS12_DeriveBytes
|
|
struct DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String Mono.Security.X509.PKCS12_DeriveBytes::_hashName
|
|
String_t* ____hashName_3;
|
|
// System.Int32 Mono.Security.X509.PKCS12_DeriveBytes::_iterations
|
|
int32_t ____iterations_4;
|
|
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::_password
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____password_5;
|
|
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::_salt
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____salt_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__hashName_3() { return static_cast<int32_t>(offsetof(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889, ____hashName_3)); }
|
|
inline String_t* get__hashName_3() const { return ____hashName_3; }
|
|
inline String_t** get_address_of__hashName_3() { return &____hashName_3; }
|
|
inline void set__hashName_3(String_t* value)
|
|
{
|
|
____hashName_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____hashName_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__iterations_4() { return static_cast<int32_t>(offsetof(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889, ____iterations_4)); }
|
|
inline int32_t get__iterations_4() const { return ____iterations_4; }
|
|
inline int32_t* get_address_of__iterations_4() { return &____iterations_4; }
|
|
inline void set__iterations_4(int32_t value)
|
|
{
|
|
____iterations_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__password_5() { return static_cast<int32_t>(offsetof(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889, ____password_5)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__password_5() const { return ____password_5; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__password_5() { return &____password_5; }
|
|
inline void set__password_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
____password_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____password_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__salt_6() { return static_cast<int32_t>(offsetof(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889, ____salt_6)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__salt_6() const { return ____salt_6; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__salt_6() { return &____salt_6; }
|
|
inline void set__salt_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
____salt_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____salt_6), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_StaticFields
|
|
{
|
|
public:
|
|
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::keyDiversifier
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___keyDiversifier_0;
|
|
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::ivDiversifier
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___ivDiversifier_1;
|
|
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::macDiversifier
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___macDiversifier_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_keyDiversifier_0() { return static_cast<int32_t>(offsetof(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_StaticFields, ___keyDiversifier_0)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_keyDiversifier_0() const { return ___keyDiversifier_0; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_keyDiversifier_0() { return &___keyDiversifier_0; }
|
|
inline void set_keyDiversifier_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___keyDiversifier_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___keyDiversifier_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ivDiversifier_1() { return static_cast<int32_t>(offsetof(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_StaticFields, ___ivDiversifier_1)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_ivDiversifier_1() const { return ___ivDiversifier_1; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_ivDiversifier_1() { return &___ivDiversifier_1; }
|
|
inline void set_ivDiversifier_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___ivDiversifier_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ivDiversifier_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_macDiversifier_2() { return static_cast<int32_t>(offsetof(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_StaticFields, ___macDiversifier_2)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_macDiversifier_2() const { return ___macDiversifier_2; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_macDiversifier_2() { return &___macDiversifier_2; }
|
|
inline void set_macDiversifier_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___macDiversifier_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___macDiversifier_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// Mono.Security.X509.SafeBag
|
|
struct SafeBag_t174C33B33B435C2F8F7B3D3B3217CE626A905945 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String Mono.Security.X509.SafeBag::_bagOID
|
|
String_t* ____bagOID_0;
|
|
// Mono.Security.ASN1 Mono.Security.X509.SafeBag::_asn1
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ____asn1_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__bagOID_0() { return static_cast<int32_t>(offsetof(SafeBag_t174C33B33B435C2F8F7B3D3B3217CE626A905945, ____bagOID_0)); }
|
|
inline String_t* get__bagOID_0() const { return ____bagOID_0; }
|
|
inline String_t** get_address_of__bagOID_0() { return &____bagOID_0; }
|
|
inline void set__bagOID_0(String_t* value)
|
|
{
|
|
____bagOID_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____bagOID_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__asn1_1() { return static_cast<int32_t>(offsetof(SafeBag_t174C33B33B435C2F8F7B3D3B3217CE626A905945, ____asn1_1)); }
|
|
inline ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * get__asn1_1() const { return ____asn1_1; }
|
|
inline ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 ** get_address_of__asn1_1() { return &____asn1_1; }
|
|
inline void set__asn1_1(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * value)
|
|
{
|
|
____asn1_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____asn1_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// Mono.Security.X509.X501
|
|
struct X501_tE94C087B0902DF20A534C0120C76982167A558F5 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields
|
|
{
|
|
public:
|
|
// System.Byte[] Mono.Security.X509.X501::countryName
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___countryName_0;
|
|
// System.Byte[] Mono.Security.X509.X501::organizationName
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___organizationName_1;
|
|
// System.Byte[] Mono.Security.X509.X501::organizationalUnitName
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___organizationalUnitName_2;
|
|
// System.Byte[] Mono.Security.X509.X501::commonName
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___commonName_3;
|
|
// System.Byte[] Mono.Security.X509.X501::localityName
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___localityName_4;
|
|
// System.Byte[] Mono.Security.X509.X501::stateOrProvinceName
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___stateOrProvinceName_5;
|
|
// System.Byte[] Mono.Security.X509.X501::streetAddress
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___streetAddress_6;
|
|
// System.Byte[] Mono.Security.X509.X501::domainComponent
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___domainComponent_7;
|
|
// System.Byte[] Mono.Security.X509.X501::userid
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___userid_8;
|
|
// System.Byte[] Mono.Security.X509.X501::email
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___email_9;
|
|
// System.Byte[] Mono.Security.X509.X501::dnQualifier
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___dnQualifier_10;
|
|
// System.Byte[] Mono.Security.X509.X501::title
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___title_11;
|
|
// System.Byte[] Mono.Security.X509.X501::surname
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___surname_12;
|
|
// System.Byte[] Mono.Security.X509.X501::givenName
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___givenName_13;
|
|
// System.Byte[] Mono.Security.X509.X501::initial
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___initial_14;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_countryName_0() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___countryName_0)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_countryName_0() const { return ___countryName_0; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_countryName_0() { return &___countryName_0; }
|
|
inline void set_countryName_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___countryName_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___countryName_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_organizationName_1() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___organizationName_1)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_organizationName_1() const { return ___organizationName_1; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_organizationName_1() { return &___organizationName_1; }
|
|
inline void set_organizationName_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___organizationName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___organizationName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_organizationalUnitName_2() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___organizationalUnitName_2)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_organizationalUnitName_2() const { return ___organizationalUnitName_2; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_organizationalUnitName_2() { return &___organizationalUnitName_2; }
|
|
inline void set_organizationalUnitName_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___organizationalUnitName_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___organizationalUnitName_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_commonName_3() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___commonName_3)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_commonName_3() const { return ___commonName_3; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_commonName_3() { return &___commonName_3; }
|
|
inline void set_commonName_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___commonName_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___commonName_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_localityName_4() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___localityName_4)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_localityName_4() const { return ___localityName_4; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_localityName_4() { return &___localityName_4; }
|
|
inline void set_localityName_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___localityName_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___localityName_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_stateOrProvinceName_5() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___stateOrProvinceName_5)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_stateOrProvinceName_5() const { return ___stateOrProvinceName_5; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_stateOrProvinceName_5() { return &___stateOrProvinceName_5; }
|
|
inline void set_stateOrProvinceName_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___stateOrProvinceName_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___stateOrProvinceName_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_streetAddress_6() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___streetAddress_6)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_streetAddress_6() const { return ___streetAddress_6; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_streetAddress_6() { return &___streetAddress_6; }
|
|
inline void set_streetAddress_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___streetAddress_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___streetAddress_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_domainComponent_7() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___domainComponent_7)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_domainComponent_7() const { return ___domainComponent_7; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_domainComponent_7() { return &___domainComponent_7; }
|
|
inline void set_domainComponent_7(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___domainComponent_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___domainComponent_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_userid_8() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___userid_8)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_userid_8() const { return ___userid_8; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_userid_8() { return &___userid_8; }
|
|
inline void set_userid_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___userid_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___userid_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_email_9() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___email_9)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_email_9() const { return ___email_9; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_email_9() { return &___email_9; }
|
|
inline void set_email_9(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___email_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___email_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dnQualifier_10() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___dnQualifier_10)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_dnQualifier_10() const { return ___dnQualifier_10; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_dnQualifier_10() { return &___dnQualifier_10; }
|
|
inline void set_dnQualifier_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___dnQualifier_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dnQualifier_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_title_11() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___title_11)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_title_11() const { return ___title_11; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_title_11() { return &___title_11; }
|
|
inline void set_title_11(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___title_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___title_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_surname_12() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___surname_12)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_surname_12() const { return ___surname_12; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_surname_12() { return &___surname_12; }
|
|
inline void set_surname_12(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___surname_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___surname_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_givenName_13() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___givenName_13)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_givenName_13() const { return ___givenName_13; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_givenName_13() { return &___givenName_13; }
|
|
inline void set_givenName_13(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___givenName_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___givenName_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_initial_14() { return static_cast<int32_t>(offsetof(X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields, ___initial_14)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_initial_14() const { return ___initial_14; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_initial_14() { return &___initial_14; }
|
|
inline void set_initial_14(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___initial_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___initial_14), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// Mono.Security.X509.X509CertificateCollection_X509CertificateEnumerator
|
|
struct X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.IEnumerator Mono.Security.X509.X509CertificateCollection_X509CertificateEnumerator::enumerator
|
|
RuntimeObject* ___enumerator_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_enumerator_0() { return static_cast<int32_t>(offsetof(X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F, ___enumerator_0)); }
|
|
inline RuntimeObject* get_enumerator_0() const { return ___enumerator_0; }
|
|
inline RuntimeObject** get_address_of_enumerator_0() { return &___enumerator_0; }
|
|
inline void set_enumerator_0(RuntimeObject* value)
|
|
{
|
|
___enumerator_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___enumerator_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// Mono.Security.X509.X509Extension
|
|
struct X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String Mono.Security.X509.X509Extension::extnOid
|
|
String_t* ___extnOid_0;
|
|
// System.Boolean Mono.Security.X509.X509Extension::extnCritical
|
|
bool ___extnCritical_1;
|
|
// Mono.Security.ASN1 Mono.Security.X509.X509Extension::extnValue
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___extnValue_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_extnOid_0() { return static_cast<int32_t>(offsetof(X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B, ___extnOid_0)); }
|
|
inline String_t* get_extnOid_0() const { return ___extnOid_0; }
|
|
inline String_t** get_address_of_extnOid_0() { return &___extnOid_0; }
|
|
inline void set_extnOid_0(String_t* value)
|
|
{
|
|
___extnOid_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___extnOid_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_extnCritical_1() { return static_cast<int32_t>(offsetof(X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B, ___extnCritical_1)); }
|
|
inline bool get_extnCritical_1() const { return ___extnCritical_1; }
|
|
inline bool* get_address_of_extnCritical_1() { return &___extnCritical_1; }
|
|
inline void set_extnCritical_1(bool value)
|
|
{
|
|
___extnCritical_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_extnValue_2() { return static_cast<int32_t>(offsetof(X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B, ___extnValue_2)); }
|
|
inline ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * get_extnValue_2() const { return ___extnValue_2; }
|
|
inline ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 ** get_address_of_extnValue_2() { return &___extnValue_2; }
|
|
inline void set_extnValue_2(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * value)
|
|
{
|
|
___extnValue_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___extnValue_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// Mono.Xml.SmallXmlParser
|
|
struct SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 : public RuntimeObject
|
|
{
|
|
public:
|
|
// Mono.Xml.SmallXmlParser_IContentHandler Mono.Xml.SmallXmlParser::handler
|
|
RuntimeObject* ___handler_0;
|
|
// System.IO.TextReader Mono.Xml.SmallXmlParser::reader
|
|
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___reader_1;
|
|
// System.Collections.Stack Mono.Xml.SmallXmlParser::elementNames
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ___elementNames_2;
|
|
// System.Collections.Stack Mono.Xml.SmallXmlParser::xmlSpaces
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ___xmlSpaces_3;
|
|
// System.String Mono.Xml.SmallXmlParser::xmlSpace
|
|
String_t* ___xmlSpace_4;
|
|
// System.Text.StringBuilder Mono.Xml.SmallXmlParser::buffer
|
|
StringBuilder_t * ___buffer_5;
|
|
// System.Char[] Mono.Xml.SmallXmlParser::nameBuffer
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___nameBuffer_6;
|
|
// System.Boolean Mono.Xml.SmallXmlParser::isWhitespace
|
|
bool ___isWhitespace_7;
|
|
// Mono.Xml.SmallXmlParser_AttrListImpl Mono.Xml.SmallXmlParser::attributes
|
|
AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * ___attributes_8;
|
|
// System.Int32 Mono.Xml.SmallXmlParser::line
|
|
int32_t ___line_9;
|
|
// System.Int32 Mono.Xml.SmallXmlParser::column
|
|
int32_t ___column_10;
|
|
// System.Boolean Mono.Xml.SmallXmlParser::resetColumn
|
|
bool ___resetColumn_11;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_handler_0() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___handler_0)); }
|
|
inline RuntimeObject* get_handler_0() const { return ___handler_0; }
|
|
inline RuntimeObject** get_address_of_handler_0() { return &___handler_0; }
|
|
inline void set_handler_0(RuntimeObject* value)
|
|
{
|
|
___handler_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___handler_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_reader_1() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___reader_1)); }
|
|
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_reader_1() const { return ___reader_1; }
|
|
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_reader_1() { return &___reader_1; }
|
|
inline void set_reader_1(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
|
|
{
|
|
___reader_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___reader_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_elementNames_2() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___elementNames_2)); }
|
|
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * get_elementNames_2() const { return ___elementNames_2; }
|
|
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 ** get_address_of_elementNames_2() { return &___elementNames_2; }
|
|
inline void set_elementNames_2(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * value)
|
|
{
|
|
___elementNames_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___elementNames_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_xmlSpaces_3() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___xmlSpaces_3)); }
|
|
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * get_xmlSpaces_3() const { return ___xmlSpaces_3; }
|
|
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 ** get_address_of_xmlSpaces_3() { return &___xmlSpaces_3; }
|
|
inline void set_xmlSpaces_3(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * value)
|
|
{
|
|
___xmlSpaces_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___xmlSpaces_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_xmlSpace_4() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___xmlSpace_4)); }
|
|
inline String_t* get_xmlSpace_4() const { return ___xmlSpace_4; }
|
|
inline String_t** get_address_of_xmlSpace_4() { return &___xmlSpace_4; }
|
|
inline void set_xmlSpace_4(String_t* value)
|
|
{
|
|
___xmlSpace_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___xmlSpace_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_buffer_5() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___buffer_5)); }
|
|
inline StringBuilder_t * get_buffer_5() const { return ___buffer_5; }
|
|
inline StringBuilder_t ** get_address_of_buffer_5() { return &___buffer_5; }
|
|
inline void set_buffer_5(StringBuilder_t * value)
|
|
{
|
|
___buffer_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___buffer_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_nameBuffer_6() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___nameBuffer_6)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_nameBuffer_6() const { return ___nameBuffer_6; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_nameBuffer_6() { return &___nameBuffer_6; }
|
|
inline void set_nameBuffer_6(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___nameBuffer_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___nameBuffer_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isWhitespace_7() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___isWhitespace_7)); }
|
|
inline bool get_isWhitespace_7() const { return ___isWhitespace_7; }
|
|
inline bool* get_address_of_isWhitespace_7() { return &___isWhitespace_7; }
|
|
inline void set_isWhitespace_7(bool value)
|
|
{
|
|
___isWhitespace_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_attributes_8() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___attributes_8)); }
|
|
inline AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * get_attributes_8() const { return ___attributes_8; }
|
|
inline AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 ** get_address_of_attributes_8() { return &___attributes_8; }
|
|
inline void set_attributes_8(AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * value)
|
|
{
|
|
___attributes_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___attributes_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_line_9() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___line_9)); }
|
|
inline int32_t get_line_9() const { return ___line_9; }
|
|
inline int32_t* get_address_of_line_9() { return &___line_9; }
|
|
inline void set_line_9(int32_t value)
|
|
{
|
|
___line_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_column_10() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___column_10)); }
|
|
inline int32_t get_column_10() const { return ___column_10; }
|
|
inline int32_t* get_address_of_column_10() { return &___column_10; }
|
|
inline void set_column_10(int32_t value)
|
|
{
|
|
___column_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_resetColumn_11() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___resetColumn_11)); }
|
|
inline bool get_resetColumn_11() const { return ___resetColumn_11; }
|
|
inline bool* get_address_of_resetColumn_11() { return &___resetColumn_11; }
|
|
inline void set_resetColumn_11(bool value)
|
|
{
|
|
___resetColumn_11 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// Mono.Xml.SmallXmlParser_AttrListImpl
|
|
struct AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.Generic.List`1<System.String> Mono.Xml.SmallXmlParser_AttrListImpl::attrNames
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___attrNames_0;
|
|
// System.Collections.Generic.List`1<System.String> Mono.Xml.SmallXmlParser_AttrListImpl::attrValues
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___attrValues_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_attrNames_0() { return static_cast<int32_t>(offsetof(AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63, ___attrNames_0)); }
|
|
inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_attrNames_0() const { return ___attrNames_0; }
|
|
inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_attrNames_0() { return &___attrNames_0; }
|
|
inline void set_attrNames_0(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value)
|
|
{
|
|
___attrNames_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___attrNames_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_attrValues_1() { return static_cast<int32_t>(offsetof(AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63, ___attrValues_1)); }
|
|
inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_attrValues_1() const { return ___attrValues_1; }
|
|
inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_attrValues_1() { return &___attrValues_1; }
|
|
inline void set_attrValues_1(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value)
|
|
{
|
|
___attrValues_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___attrValues_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// SR
|
|
struct SR_tF0A81BD7A630D496167428BEC7314B47F8B4472B : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Activator
|
|
struct Activator_tB50E7575818FE43EB3B56CA3880E7C80D884C1CC : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.AppContextSwitches
|
|
struct AppContextSwitches_tAF0B2C874D2BB57032B24C11819205802669FD8D : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct AppContextSwitches_tAF0B2C874D2BB57032B24C11819205802669FD8D_StaticFields
|
|
{
|
|
public:
|
|
// System.Boolean System.AppContextSwitches::ThrowExceptionIfDisposedCancellationTokenSource
|
|
bool ___ThrowExceptionIfDisposedCancellationTokenSource_0;
|
|
// System.Boolean System.AppContextSwitches::NoAsyncCurrentCulture
|
|
bool ___NoAsyncCurrentCulture_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_ThrowExceptionIfDisposedCancellationTokenSource_0() { return static_cast<int32_t>(offsetof(AppContextSwitches_tAF0B2C874D2BB57032B24C11819205802669FD8D_StaticFields, ___ThrowExceptionIfDisposedCancellationTokenSource_0)); }
|
|
inline bool get_ThrowExceptionIfDisposedCancellationTokenSource_0() const { return ___ThrowExceptionIfDisposedCancellationTokenSource_0; }
|
|
inline bool* get_address_of_ThrowExceptionIfDisposedCancellationTokenSource_0() { return &___ThrowExceptionIfDisposedCancellationTokenSource_0; }
|
|
inline void set_ThrowExceptionIfDisposedCancellationTokenSource_0(bool value)
|
|
{
|
|
___ThrowExceptionIfDisposedCancellationTokenSource_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_NoAsyncCurrentCulture_1() { return static_cast<int32_t>(offsetof(AppContextSwitches_tAF0B2C874D2BB57032B24C11819205802669FD8D_StaticFields, ___NoAsyncCurrentCulture_1)); }
|
|
inline bool get_NoAsyncCurrentCulture_1() const { return ___NoAsyncCurrentCulture_1; }
|
|
inline bool* get_address_of_NoAsyncCurrentCulture_1() { return &___NoAsyncCurrentCulture_1; }
|
|
inline void set_NoAsyncCurrentCulture_1(bool value)
|
|
{
|
|
___NoAsyncCurrentCulture_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.AppDomainSetup
|
|
struct AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.AppDomainSetup::application_base
|
|
String_t* ___application_base_0;
|
|
// System.String System.AppDomainSetup::application_name
|
|
String_t* ___application_name_1;
|
|
// System.String System.AppDomainSetup::cache_path
|
|
String_t* ___cache_path_2;
|
|
// System.String System.AppDomainSetup::configuration_file
|
|
String_t* ___configuration_file_3;
|
|
// System.String System.AppDomainSetup::dynamic_base
|
|
String_t* ___dynamic_base_4;
|
|
// System.String System.AppDomainSetup::license_file
|
|
String_t* ___license_file_5;
|
|
// System.String System.AppDomainSetup::private_bin_path
|
|
String_t* ___private_bin_path_6;
|
|
// System.String System.AppDomainSetup::private_bin_path_probe
|
|
String_t* ___private_bin_path_probe_7;
|
|
// System.String System.AppDomainSetup::shadow_copy_directories
|
|
String_t* ___shadow_copy_directories_8;
|
|
// System.String System.AppDomainSetup::shadow_copy_files
|
|
String_t* ___shadow_copy_files_9;
|
|
// System.Boolean System.AppDomainSetup::publisher_policy
|
|
bool ___publisher_policy_10;
|
|
// System.Boolean System.AppDomainSetup::path_changed
|
|
bool ___path_changed_11;
|
|
// System.Int32 System.AppDomainSetup::loader_optimization
|
|
int32_t ___loader_optimization_12;
|
|
// System.Boolean System.AppDomainSetup::disallow_binding_redirects
|
|
bool ___disallow_binding_redirects_13;
|
|
// System.Boolean System.AppDomainSetup::disallow_code_downloads
|
|
bool ___disallow_code_downloads_14;
|
|
// System.Object System.AppDomainSetup::_activationArguments
|
|
RuntimeObject * ____activationArguments_15;
|
|
// System.Object System.AppDomainSetup::domain_initializer
|
|
RuntimeObject * ___domain_initializer_16;
|
|
// System.Object System.AppDomainSetup::application_trust
|
|
RuntimeObject * ___application_trust_17;
|
|
// System.String[] System.AppDomainSetup::domain_initializer_args
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___domain_initializer_args_18;
|
|
// System.Boolean System.AppDomainSetup::disallow_appbase_probe
|
|
bool ___disallow_appbase_probe_19;
|
|
// System.Byte[] System.AppDomainSetup::configuration_bytes
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___configuration_bytes_20;
|
|
// System.Byte[] System.AppDomainSetup::serialized_non_primitives
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___serialized_non_primitives_21;
|
|
// System.String System.AppDomainSetup::<TargetFrameworkName>k__BackingField
|
|
String_t* ___U3CTargetFrameworkNameU3Ek__BackingField_22;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_application_base_0() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___application_base_0)); }
|
|
inline String_t* get_application_base_0() const { return ___application_base_0; }
|
|
inline String_t** get_address_of_application_base_0() { return &___application_base_0; }
|
|
inline void set_application_base_0(String_t* value)
|
|
{
|
|
___application_base_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___application_base_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_application_name_1() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___application_name_1)); }
|
|
inline String_t* get_application_name_1() const { return ___application_name_1; }
|
|
inline String_t** get_address_of_application_name_1() { return &___application_name_1; }
|
|
inline void set_application_name_1(String_t* value)
|
|
{
|
|
___application_name_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___application_name_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cache_path_2() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___cache_path_2)); }
|
|
inline String_t* get_cache_path_2() const { return ___cache_path_2; }
|
|
inline String_t** get_address_of_cache_path_2() { return &___cache_path_2; }
|
|
inline void set_cache_path_2(String_t* value)
|
|
{
|
|
___cache_path_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___cache_path_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_configuration_file_3() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___configuration_file_3)); }
|
|
inline String_t* get_configuration_file_3() const { return ___configuration_file_3; }
|
|
inline String_t** get_address_of_configuration_file_3() { return &___configuration_file_3; }
|
|
inline void set_configuration_file_3(String_t* value)
|
|
{
|
|
___configuration_file_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___configuration_file_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dynamic_base_4() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___dynamic_base_4)); }
|
|
inline String_t* get_dynamic_base_4() const { return ___dynamic_base_4; }
|
|
inline String_t** get_address_of_dynamic_base_4() { return &___dynamic_base_4; }
|
|
inline void set_dynamic_base_4(String_t* value)
|
|
{
|
|
___dynamic_base_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dynamic_base_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_license_file_5() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___license_file_5)); }
|
|
inline String_t* get_license_file_5() const { return ___license_file_5; }
|
|
inline String_t** get_address_of_license_file_5() { return &___license_file_5; }
|
|
inline void set_license_file_5(String_t* value)
|
|
{
|
|
___license_file_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___license_file_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_private_bin_path_6() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___private_bin_path_6)); }
|
|
inline String_t* get_private_bin_path_6() const { return ___private_bin_path_6; }
|
|
inline String_t** get_address_of_private_bin_path_6() { return &___private_bin_path_6; }
|
|
inline void set_private_bin_path_6(String_t* value)
|
|
{
|
|
___private_bin_path_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___private_bin_path_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_private_bin_path_probe_7() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___private_bin_path_probe_7)); }
|
|
inline String_t* get_private_bin_path_probe_7() const { return ___private_bin_path_probe_7; }
|
|
inline String_t** get_address_of_private_bin_path_probe_7() { return &___private_bin_path_probe_7; }
|
|
inline void set_private_bin_path_probe_7(String_t* value)
|
|
{
|
|
___private_bin_path_probe_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___private_bin_path_probe_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shadow_copy_directories_8() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___shadow_copy_directories_8)); }
|
|
inline String_t* get_shadow_copy_directories_8() const { return ___shadow_copy_directories_8; }
|
|
inline String_t** get_address_of_shadow_copy_directories_8() { return &___shadow_copy_directories_8; }
|
|
inline void set_shadow_copy_directories_8(String_t* value)
|
|
{
|
|
___shadow_copy_directories_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shadow_copy_directories_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shadow_copy_files_9() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___shadow_copy_files_9)); }
|
|
inline String_t* get_shadow_copy_files_9() const { return ___shadow_copy_files_9; }
|
|
inline String_t** get_address_of_shadow_copy_files_9() { return &___shadow_copy_files_9; }
|
|
inline void set_shadow_copy_files_9(String_t* value)
|
|
{
|
|
___shadow_copy_files_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shadow_copy_files_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_publisher_policy_10() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___publisher_policy_10)); }
|
|
inline bool get_publisher_policy_10() const { return ___publisher_policy_10; }
|
|
inline bool* get_address_of_publisher_policy_10() { return &___publisher_policy_10; }
|
|
inline void set_publisher_policy_10(bool value)
|
|
{
|
|
___publisher_policy_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_path_changed_11() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___path_changed_11)); }
|
|
inline bool get_path_changed_11() const { return ___path_changed_11; }
|
|
inline bool* get_address_of_path_changed_11() { return &___path_changed_11; }
|
|
inline void set_path_changed_11(bool value)
|
|
{
|
|
___path_changed_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_loader_optimization_12() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___loader_optimization_12)); }
|
|
inline int32_t get_loader_optimization_12() const { return ___loader_optimization_12; }
|
|
inline int32_t* get_address_of_loader_optimization_12() { return &___loader_optimization_12; }
|
|
inline void set_loader_optimization_12(int32_t value)
|
|
{
|
|
___loader_optimization_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_disallow_binding_redirects_13() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___disallow_binding_redirects_13)); }
|
|
inline bool get_disallow_binding_redirects_13() const { return ___disallow_binding_redirects_13; }
|
|
inline bool* get_address_of_disallow_binding_redirects_13() { return &___disallow_binding_redirects_13; }
|
|
inline void set_disallow_binding_redirects_13(bool value)
|
|
{
|
|
___disallow_binding_redirects_13 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_disallow_code_downloads_14() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___disallow_code_downloads_14)); }
|
|
inline bool get_disallow_code_downloads_14() const { return ___disallow_code_downloads_14; }
|
|
inline bool* get_address_of_disallow_code_downloads_14() { return &___disallow_code_downloads_14; }
|
|
inline void set_disallow_code_downloads_14(bool value)
|
|
{
|
|
___disallow_code_downloads_14 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__activationArguments_15() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ____activationArguments_15)); }
|
|
inline RuntimeObject * get__activationArguments_15() const { return ____activationArguments_15; }
|
|
inline RuntimeObject ** get_address_of__activationArguments_15() { return &____activationArguments_15; }
|
|
inline void set__activationArguments_15(RuntimeObject * value)
|
|
{
|
|
____activationArguments_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____activationArguments_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_domain_initializer_16() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___domain_initializer_16)); }
|
|
inline RuntimeObject * get_domain_initializer_16() const { return ___domain_initializer_16; }
|
|
inline RuntimeObject ** get_address_of_domain_initializer_16() { return &___domain_initializer_16; }
|
|
inline void set_domain_initializer_16(RuntimeObject * value)
|
|
{
|
|
___domain_initializer_16 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___domain_initializer_16), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_application_trust_17() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___application_trust_17)); }
|
|
inline RuntimeObject * get_application_trust_17() const { return ___application_trust_17; }
|
|
inline RuntimeObject ** get_address_of_application_trust_17() { return &___application_trust_17; }
|
|
inline void set_application_trust_17(RuntimeObject * value)
|
|
{
|
|
___application_trust_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___application_trust_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_domain_initializer_args_18() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___domain_initializer_args_18)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_domain_initializer_args_18() const { return ___domain_initializer_args_18; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_domain_initializer_args_18() { return &___domain_initializer_args_18; }
|
|
inline void set_domain_initializer_args_18(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___domain_initializer_args_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___domain_initializer_args_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_disallow_appbase_probe_19() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___disallow_appbase_probe_19)); }
|
|
inline bool get_disallow_appbase_probe_19() const { return ___disallow_appbase_probe_19; }
|
|
inline bool* get_address_of_disallow_appbase_probe_19() { return &___disallow_appbase_probe_19; }
|
|
inline void set_disallow_appbase_probe_19(bool value)
|
|
{
|
|
___disallow_appbase_probe_19 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_configuration_bytes_20() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___configuration_bytes_20)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_configuration_bytes_20() const { return ___configuration_bytes_20; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_configuration_bytes_20() { return &___configuration_bytes_20; }
|
|
inline void set_configuration_bytes_20(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___configuration_bytes_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___configuration_bytes_20), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_serialized_non_primitives_21() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___serialized_non_primitives_21)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_serialized_non_primitives_21() const { return ___serialized_non_primitives_21; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_serialized_non_primitives_21() { return &___serialized_non_primitives_21; }
|
|
inline void set_serialized_non_primitives_21(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___serialized_non_primitives_21 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___serialized_non_primitives_21), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3CTargetFrameworkNameU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___U3CTargetFrameworkNameU3Ek__BackingField_22)); }
|
|
inline String_t* get_U3CTargetFrameworkNameU3Ek__BackingField_22() const { return ___U3CTargetFrameworkNameU3Ek__BackingField_22; }
|
|
inline String_t** get_address_of_U3CTargetFrameworkNameU3Ek__BackingField_22() { return &___U3CTargetFrameworkNameU3Ek__BackingField_22; }
|
|
inline void set_U3CTargetFrameworkNameU3Ek__BackingField_22(String_t* value)
|
|
{
|
|
___U3CTargetFrameworkNameU3Ek__BackingField_22 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___U3CTargetFrameworkNameU3Ek__BackingField_22), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.AppDomainSetup
|
|
struct AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshaled_pinvoke
|
|
{
|
|
char* ___application_base_0;
|
|
char* ___application_name_1;
|
|
char* ___cache_path_2;
|
|
char* ___configuration_file_3;
|
|
char* ___dynamic_base_4;
|
|
char* ___license_file_5;
|
|
char* ___private_bin_path_6;
|
|
char* ___private_bin_path_probe_7;
|
|
char* ___shadow_copy_directories_8;
|
|
char* ___shadow_copy_files_9;
|
|
int32_t ___publisher_policy_10;
|
|
int32_t ___path_changed_11;
|
|
int32_t ___loader_optimization_12;
|
|
int32_t ___disallow_binding_redirects_13;
|
|
int32_t ___disallow_code_downloads_14;
|
|
Il2CppIUnknown* ____activationArguments_15;
|
|
Il2CppIUnknown* ___domain_initializer_16;
|
|
Il2CppIUnknown* ___application_trust_17;
|
|
char** ___domain_initializer_args_18;
|
|
int32_t ___disallow_appbase_probe_19;
|
|
Il2CppSafeArray/*NONE*/* ___configuration_bytes_20;
|
|
Il2CppSafeArray/*NONE*/* ___serialized_non_primitives_21;
|
|
char* ___U3CTargetFrameworkNameU3Ek__BackingField_22;
|
|
};
|
|
// Native definition for COM marshalling of System.AppDomainSetup
|
|
struct AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshaled_com
|
|
{
|
|
Il2CppChar* ___application_base_0;
|
|
Il2CppChar* ___application_name_1;
|
|
Il2CppChar* ___cache_path_2;
|
|
Il2CppChar* ___configuration_file_3;
|
|
Il2CppChar* ___dynamic_base_4;
|
|
Il2CppChar* ___license_file_5;
|
|
Il2CppChar* ___private_bin_path_6;
|
|
Il2CppChar* ___private_bin_path_probe_7;
|
|
Il2CppChar* ___shadow_copy_directories_8;
|
|
Il2CppChar* ___shadow_copy_files_9;
|
|
int32_t ___publisher_policy_10;
|
|
int32_t ___path_changed_11;
|
|
int32_t ___loader_optimization_12;
|
|
int32_t ___disallow_binding_redirects_13;
|
|
int32_t ___disallow_code_downloads_14;
|
|
Il2CppIUnknown* ____activationArguments_15;
|
|
Il2CppIUnknown* ___domain_initializer_16;
|
|
Il2CppIUnknown* ___application_trust_17;
|
|
Il2CppChar** ___domain_initializer_args_18;
|
|
int32_t ___disallow_appbase_probe_19;
|
|
Il2CppSafeArray/*NONE*/* ___configuration_bytes_20;
|
|
Il2CppSafeArray/*NONE*/* ___serialized_non_primitives_21;
|
|
Il2CppChar* ___U3CTargetFrameworkNameU3Ek__BackingField_22;
|
|
};
|
|
struct Il2CppArrayBounds;
|
|
|
|
// System.Array
|
|
|
|
|
|
// System.Array_ArrayEnumerator
|
|
struct ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Array System.Array_ArrayEnumerator::_array
|
|
RuntimeArray * ____array_0;
|
|
// System.Int32 System.Array_ArrayEnumerator::_index
|
|
int32_t ____index_1;
|
|
// System.Int32 System.Array_ArrayEnumerator::_endIndex
|
|
int32_t ____endIndex_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C, ____array_0)); }
|
|
inline RuntimeArray * get__array_0() const { return ____array_0; }
|
|
inline RuntimeArray ** get_address_of__array_0() { return &____array_0; }
|
|
inline void set__array_0(RuntimeArray * value)
|
|
{
|
|
____array_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C, ____index_1)); }
|
|
inline int32_t get__index_1() const { return ____index_1; }
|
|
inline int32_t* get_address_of__index_1() { return &____index_1; }
|
|
inline void set__index_1(int32_t value)
|
|
{
|
|
____index_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__endIndex_2() { return static_cast<int32_t>(offsetof(ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C, ____endIndex_2)); }
|
|
inline int32_t get__endIndex_2() const { return ____endIndex_2; }
|
|
inline int32_t* get_address_of__endIndex_2() { return &____endIndex_2; }
|
|
inline void set__endIndex_2(int32_t value)
|
|
{
|
|
____endIndex_2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ArraySpec
|
|
struct ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32 System.ArraySpec::dimensions
|
|
int32_t ___dimensions_0;
|
|
// System.Boolean System.ArraySpec::bound
|
|
bool ___bound_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_dimensions_0() { return static_cast<int32_t>(offsetof(ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970, ___dimensions_0)); }
|
|
inline int32_t get_dimensions_0() const { return ___dimensions_0; }
|
|
inline int32_t* get_address_of_dimensions_0() { return &___dimensions_0; }
|
|
inline void set_dimensions_0(int32_t value)
|
|
{
|
|
___dimensions_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_bound_1() { return static_cast<int32_t>(offsetof(ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970, ___bound_1)); }
|
|
inline bool get_bound_1() const { return ___bound_1; }
|
|
inline bool* get_address_of_bound_1() { return &___bound_1; }
|
|
inline void set_bound_1(bool value)
|
|
{
|
|
___bound_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Attribute
|
|
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.BitConverter
|
|
struct BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields
|
|
{
|
|
public:
|
|
// System.Boolean System.BitConverter::IsLittleEndian
|
|
bool ___IsLittleEndian_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_IsLittleEndian_0() { return static_cast<int32_t>(offsetof(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields, ___IsLittleEndian_0)); }
|
|
inline bool get_IsLittleEndian_0() const { return ___IsLittleEndian_0; }
|
|
inline bool* get_address_of_IsLittleEndian_0() { return &___IsLittleEndian_0; }
|
|
inline void set_IsLittleEndian_0(bool value)
|
|
{
|
|
___IsLittleEndian_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Buffer
|
|
struct Buffer_tD349FB75CAAFBDA372517CF2FB5DF2DCDCF2C675 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ByteMatcher
|
|
struct ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.Hashtable System.ByteMatcher::map
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___map_0;
|
|
// System.Collections.Hashtable System.ByteMatcher::starts
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___starts_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_map_0() { return static_cast<int32_t>(offsetof(ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC, ___map_0)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_map_0() const { return ___map_0; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_map_0() { return &___map_0; }
|
|
inline void set_map_0(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
___map_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___map_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_starts_1() { return static_cast<int32_t>(offsetof(ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC, ___starts_1)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_starts_1() const { return ___starts_1; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_starts_1() { return &___starts_1; }
|
|
inline void set_starts_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
___starts_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___starts_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.CLRConfig
|
|
struct CLRConfig_t79EBAFC5FBCAC675B35CB93391030FABCA9A7B45 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Collections.ArrayList
|
|
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Object[] System.Collections.ArrayList::_items
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_0;
|
|
// System.Int32 System.Collections.ArrayList::_size
|
|
int32_t ____size_1;
|
|
// System.Int32 System.Collections.ArrayList::_version
|
|
int32_t ____version_2;
|
|
// System.Object System.Collections.ArrayList::_syncRoot
|
|
RuntimeObject * ____syncRoot_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____items_0)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_0() const { return ____items_0; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_0() { return &____items_0; }
|
|
inline void set__items_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
____items_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____size_1)); }
|
|
inline int32_t get__size_1() const { return ____size_1; }
|
|
inline int32_t* get_address_of__size_1() { return &____size_1; }
|
|
inline void set__size_1(int32_t value)
|
|
{
|
|
____size_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____version_2)); }
|
|
inline int32_t get__version_2() const { return ____version_2; }
|
|
inline int32_t* get_address_of__version_2() { return &____version_2; }
|
|
inline void set__version_2(int32_t value)
|
|
{
|
|
____version_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____syncRoot_3)); }
|
|
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
|
|
inline void set__syncRoot_3(RuntimeObject * value)
|
|
{
|
|
____syncRoot_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields
|
|
{
|
|
public:
|
|
// System.Object[] System.Collections.ArrayList::emptyArray
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___emptyArray_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_emptyArray_4() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields, ___emptyArray_4)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_emptyArray_4() const { return ___emptyArray_4; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_emptyArray_4() { return &___emptyArray_4; }
|
|
inline void set_emptyArray_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
___emptyArray_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___emptyArray_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.CollectionBase
|
|
struct CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.ArrayList System.Collections.CollectionBase::list
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___list_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01, ___list_0)); }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_list_0() const { return ___list_0; }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_list_0() { return &___list_0; }
|
|
inline void set_list_0(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
|
|
{
|
|
___list_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Comparer
|
|
struct Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Globalization.CompareInfo System.Collections.Comparer::m_compareInfo
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_compareInfo_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast<int32_t>(offsetof(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B, ___m_compareInfo_0)); }
|
|
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_m_compareInfo_0() const { return ___m_compareInfo_0; }
|
|
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; }
|
|
inline void set_m_compareInfo_0(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value)
|
|
{
|
|
___m_compareInfo_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields
|
|
{
|
|
public:
|
|
// System.Collections.Comparer System.Collections.Comparer::Default
|
|
Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * ___Default_1;
|
|
// System.Collections.Comparer System.Collections.Comparer::DefaultInvariant
|
|
Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * ___DefaultInvariant_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields, ___Default_1)); }
|
|
inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * get_Default_1() const { return ___Default_1; }
|
|
inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B ** get_address_of_Default_1() { return &___Default_1; }
|
|
inline void set_Default_1(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * value)
|
|
{
|
|
___Default_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DefaultInvariant_2() { return static_cast<int32_t>(offsetof(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields, ___DefaultInvariant_2)); }
|
|
inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * get_DefaultInvariant_2() const { return ___DefaultInvariant_2; }
|
|
inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B ** get_address_of_DefaultInvariant_2() { return &___DefaultInvariant_2; }
|
|
inline void set_DefaultInvariant_2(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * value)
|
|
{
|
|
___DefaultInvariant_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___DefaultInvariant_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object>
|
|
struct Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
|
|
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
|
|
EntryU5BU5D_tED6676A6535375B72FAC3BE58CAB9DC30BE201CD* ___entries_1;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::count
|
|
int32_t ___count_2;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::version
|
|
int32_t ___version_3;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
|
|
int32_t ___freeList_4;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
|
|
int32_t ___freeCount_5;
|
|
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
|
|
RuntimeObject* ___comparer_6;
|
|
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
|
|
KeyCollection_t9BB02C59F6A73E760F875CCD8AA6D1A1ACE61970 * ___keys_7;
|
|
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
|
|
ValueCollection_t059E2E9F339047F683CA7038812E624189E7F0CD * ___values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject * ____syncRoot_9;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA, ___buckets_0)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
|
|
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
___buckets_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA, ___entries_1)); }
|
|
inline EntryU5BU5D_tED6676A6535375B72FAC3BE58CAB9DC30BE201CD* get_entries_1() const { return ___entries_1; }
|
|
inline EntryU5BU5D_tED6676A6535375B72FAC3BE58CAB9DC30BE201CD** get_address_of_entries_1() { return &___entries_1; }
|
|
inline void set_entries_1(EntryU5BU5D_tED6676A6535375B72FAC3BE58CAB9DC30BE201CD* value)
|
|
{
|
|
___entries_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA, ___count_2)); }
|
|
inline int32_t get_count_2() const { return ___count_2; }
|
|
inline int32_t* get_address_of_count_2() { return &___count_2; }
|
|
inline void set_count_2(int32_t value)
|
|
{
|
|
___count_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA, ___version_3)); }
|
|
inline int32_t get_version_3() const { return ___version_3; }
|
|
inline int32_t* get_address_of_version_3() { return &___version_3; }
|
|
inline void set_version_3(int32_t value)
|
|
{
|
|
___version_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA, ___freeList_4)); }
|
|
inline int32_t get_freeList_4() const { return ___freeList_4; }
|
|
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
|
|
inline void set_freeList_4(int32_t value)
|
|
{
|
|
___freeList_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA, ___freeCount_5)); }
|
|
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
|
|
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
|
|
inline void set_freeCount_5(int32_t value)
|
|
{
|
|
___freeCount_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA, ___comparer_6)); }
|
|
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
|
|
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
|
|
inline void set_comparer_6(RuntimeObject* value)
|
|
{
|
|
___comparer_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA, ___keys_7)); }
|
|
inline KeyCollection_t9BB02C59F6A73E760F875CCD8AA6D1A1ACE61970 * get_keys_7() const { return ___keys_7; }
|
|
inline KeyCollection_t9BB02C59F6A73E760F875CCD8AA6D1A1ACE61970 ** get_address_of_keys_7() { return &___keys_7; }
|
|
inline void set_keys_7(KeyCollection_t9BB02C59F6A73E760F875CCD8AA6D1A1ACE61970 * value)
|
|
{
|
|
___keys_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA, ___values_8)); }
|
|
inline ValueCollection_t059E2E9F339047F683CA7038812E624189E7F0CD * get_values_8() const { return ___values_8; }
|
|
inline ValueCollection_t059E2E9F339047F683CA7038812E624189E7F0CD ** get_address_of_values_8() { return &___values_8; }
|
|
inline void set_values_8(ValueCollection_t059E2E9F339047F683CA7038812E624189E7F0CD * value)
|
|
{
|
|
___values_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA, ____syncRoot_9)); }
|
|
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
|
|
inline void set__syncRoot_9(RuntimeObject * value)
|
|
{
|
|
____syncRoot_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.List`1<System.AggregateException>
|
|
struct List_1_t20A8118F137937C08C81821D3462043030E1A597 : public RuntimeObject
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
AggregateExceptionU5BU5D_t00272697610270A15A70119C6CE78E7A985CE49D* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject * ____syncRoot_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t20A8118F137937C08C81821D3462043030E1A597, ____items_1)); }
|
|
inline AggregateExceptionU5BU5D_t00272697610270A15A70119C6CE78E7A985CE49D* get__items_1() const { return ____items_1; }
|
|
inline AggregateExceptionU5BU5D_t00272697610270A15A70119C6CE78E7A985CE49D** get_address_of__items_1() { return &____items_1; }
|
|
inline void set__items_1(AggregateExceptionU5BU5D_t00272697610270A15A70119C6CE78E7A985CE49D* value)
|
|
{
|
|
____items_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t20A8118F137937C08C81821D3462043030E1A597, ____size_2)); }
|
|
inline int32_t get__size_2() const { return ____size_2; }
|
|
inline int32_t* get_address_of__size_2() { return &____size_2; }
|
|
inline void set__size_2(int32_t value)
|
|
{
|
|
____size_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t20A8118F137937C08C81821D3462043030E1A597, ____version_3)); }
|
|
inline int32_t get__version_3() const { return ____version_3; }
|
|
inline int32_t* get_address_of__version_3() { return &____version_3; }
|
|
inline void set__version_3(int32_t value)
|
|
{
|
|
____version_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t20A8118F137937C08C81821D3462043030E1A597, ____syncRoot_4)); }
|
|
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
|
|
inline void set__syncRoot_4(RuntimeObject * value)
|
|
{
|
|
____syncRoot_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct List_1_t20A8118F137937C08C81821D3462043030E1A597_StaticFields
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_emptyArray
|
|
AggregateExceptionU5BU5D_t00272697610270A15A70119C6CE78E7A985CE49D* ____emptyArray_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t20A8118F137937C08C81821D3462043030E1A597_StaticFields, ____emptyArray_5)); }
|
|
inline AggregateExceptionU5BU5D_t00272697610270A15A70119C6CE78E7A985CE49D* get__emptyArray_5() const { return ____emptyArray_5; }
|
|
inline AggregateExceptionU5BU5D_t00272697610270A15A70119C6CE78E7A985CE49D** get_address_of__emptyArray_5() { return &____emptyArray_5; }
|
|
inline void set__emptyArray_5(AggregateExceptionU5BU5D_t00272697610270A15A70119C6CE78E7A985CE49D* value)
|
|
{
|
|
____emptyArray_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.List`1<System.Exception>
|
|
struct List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A : public RuntimeObject
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject * ____syncRoot_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A, ____items_1)); }
|
|
inline ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* get__items_1() const { return ____items_1; }
|
|
inline ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209** get_address_of__items_1() { return &____items_1; }
|
|
inline void set__items_1(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* value)
|
|
{
|
|
____items_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A, ____size_2)); }
|
|
inline int32_t get__size_2() const { return ____size_2; }
|
|
inline int32_t* get_address_of__size_2() { return &____size_2; }
|
|
inline void set__size_2(int32_t value)
|
|
{
|
|
____size_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A, ____version_3)); }
|
|
inline int32_t get__version_3() const { return ____version_3; }
|
|
inline int32_t* get_address_of__version_3() { return &____version_3; }
|
|
inline void set__version_3(int32_t value)
|
|
{
|
|
____version_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A, ____syncRoot_4)); }
|
|
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
|
|
inline void set__syncRoot_4(RuntimeObject * value)
|
|
{
|
|
____syncRoot_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A_StaticFields
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_emptyArray
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* ____emptyArray_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A_StaticFields, ____emptyArray_5)); }
|
|
inline ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* get__emptyArray_5() const { return ____emptyArray_5; }
|
|
inline ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209** get_address_of__emptyArray_5() { return &____emptyArray_5; }
|
|
inline void set__emptyArray_5(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* value)
|
|
{
|
|
____emptyArray_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.List`1<System.Object>
|
|
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject * ____syncRoot_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; }
|
|
inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
____items_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____size_2)); }
|
|
inline int32_t get__size_2() const { return ____size_2; }
|
|
inline int32_t* get_address_of__size_2() { return &____size_2; }
|
|
inline void set__size_2(int32_t value)
|
|
{
|
|
____size_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____version_3)); }
|
|
inline int32_t get__version_3() const { return ____version_3; }
|
|
inline int32_t* get_address_of__version_3() { return &____version_3; }
|
|
inline void set__version_3(int32_t value)
|
|
{
|
|
____version_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____syncRoot_4)); }
|
|
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
|
|
inline void set__syncRoot_4(RuntimeObject * value)
|
|
{
|
|
____syncRoot_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_emptyArray
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
|
|
inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
____emptyArray_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>
|
|
struct List_1_tCD04260AE1254C438132446F1E6892AB86D18743 : public RuntimeObject
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject * ____syncRoot_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tCD04260AE1254C438132446F1E6892AB86D18743, ____items_1)); }
|
|
inline ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* get__items_1() const { return ____items_1; }
|
|
inline ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF** get_address_of__items_1() { return &____items_1; }
|
|
inline void set__items_1(ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* value)
|
|
{
|
|
____items_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tCD04260AE1254C438132446F1E6892AB86D18743, ____size_2)); }
|
|
inline int32_t get__size_2() const { return ____size_2; }
|
|
inline int32_t* get_address_of__size_2() { return &____size_2; }
|
|
inline void set__size_2(int32_t value)
|
|
{
|
|
____size_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tCD04260AE1254C438132446F1E6892AB86D18743, ____version_3)); }
|
|
inline int32_t get__version_3() const { return ____version_3; }
|
|
inline int32_t* get_address_of__version_3() { return &____version_3; }
|
|
inline void set__version_3(int32_t value)
|
|
{
|
|
____version_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tCD04260AE1254C438132446F1E6892AB86D18743, ____syncRoot_4)); }
|
|
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
|
|
inline void set__syncRoot_4(RuntimeObject * value)
|
|
{
|
|
____syncRoot_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct List_1_tCD04260AE1254C438132446F1E6892AB86D18743_StaticFields
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_emptyArray
|
|
ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* ____emptyArray_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tCD04260AE1254C438132446F1E6892AB86D18743_StaticFields, ____emptyArray_5)); }
|
|
inline ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* get__emptyArray_5() const { return ____emptyArray_5; }
|
|
inline ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF** get_address_of__emptyArray_5() { return &____emptyArray_5; }
|
|
inline void set__emptyArray_5(ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* value)
|
|
{
|
|
____emptyArray_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 : public RuntimeObject
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject * ____syncRoot_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____items_1)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__items_1() const { return ____items_1; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__items_1() { return &____items_1; }
|
|
inline void set__items_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
____items_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____size_2)); }
|
|
inline int32_t get__size_2() const { return ____size_2; }
|
|
inline int32_t* get_address_of__size_2() { return &____size_2; }
|
|
inline void set__size_2(int32_t value)
|
|
{
|
|
____size_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____version_3)); }
|
|
inline int32_t get__version_3() const { return ____version_3; }
|
|
inline int32_t* get_address_of__version_3() { return &____version_3; }
|
|
inline void set__version_3(int32_t value)
|
|
{
|
|
____version_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____syncRoot_4)); }
|
|
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
|
|
inline void set__syncRoot_4(RuntimeObject * value)
|
|
{
|
|
____syncRoot_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_emptyArray
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____emptyArray_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields, ____emptyArray_5)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__emptyArray_5() const { return ____emptyArray_5; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__emptyArray_5() { return &____emptyArray_5; }
|
|
inline void set__emptyArray_5(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
____emptyArray_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.LowLevelComparer
|
|
struct LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_StaticFields
|
|
{
|
|
public:
|
|
// System.Collections.LowLevelComparer System.Collections.LowLevelComparer::Default
|
|
LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * ___Default_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_StaticFields, ___Default_0)); }
|
|
inline LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * get_Default_0() const { return ___Default_0; }
|
|
inline LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 ** get_address_of_Default_0() { return &___Default_0; }
|
|
inline void set_Default_0(LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * value)
|
|
{
|
|
___Default_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>
|
|
struct ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
|
|
RuntimeObject* ___list_0;
|
|
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
|
|
RuntimeObject * ____syncRoot_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8, ___list_0)); }
|
|
inline RuntimeObject* get_list_0() const { return ___list_0; }
|
|
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
|
|
inline void set_list_0(RuntimeObject* value)
|
|
{
|
|
___list_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8, ____syncRoot_1)); }
|
|
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
|
|
inline void set__syncRoot_1(RuntimeObject * value)
|
|
{
|
|
____syncRoot_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Stack
|
|
struct Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Object[] System.Collections.Stack::_array
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____array_0;
|
|
// System.Int32 System.Collections.Stack::_size
|
|
int32_t ____size_1;
|
|
// System.Int32 System.Collections.Stack::_version
|
|
int32_t ____version_2;
|
|
// System.Object System.Collections.Stack::_syncRoot
|
|
RuntimeObject * ____syncRoot_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____array_0)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__array_0() const { return ____array_0; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__array_0() { return &____array_0; }
|
|
inline void set__array_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
____array_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____size_1)); }
|
|
inline int32_t get__size_1() const { return ____size_1; }
|
|
inline int32_t* get_address_of__size_1() { return &____size_1; }
|
|
inline void set__size_1(int32_t value)
|
|
{
|
|
____size_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____version_2)); }
|
|
inline int32_t get__version_2() const { return ____version_2; }
|
|
inline int32_t* get_address_of__version_2() { return &____version_2; }
|
|
inline void set__version_2(int32_t value)
|
|
{
|
|
____version_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____syncRoot_3)); }
|
|
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
|
|
inline void set__syncRoot_3(RuntimeObject * value)
|
|
{
|
|
____syncRoot_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.EventArgs
|
|
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields
|
|
{
|
|
public:
|
|
// System.EventArgs System.EventArgs::Empty
|
|
EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___Empty_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields, ___Empty_0)); }
|
|
inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * get_Empty_0() const { return ___Empty_0; }
|
|
inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E ** get_address_of_Empty_0() { return &___Empty_0; }
|
|
inline void set_Empty_0(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * value)
|
|
{
|
|
___Empty_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
|
|
bool ___m_isReadOnly_3;
|
|
// System.Int32 System.Globalization.CultureInfo::cultureID
|
|
int32_t ___cultureID_4;
|
|
// System.Int32 System.Globalization.CultureInfo::parent_lcid
|
|
int32_t ___parent_lcid_5;
|
|
// System.Int32 System.Globalization.CultureInfo::datetime_index
|
|
int32_t ___datetime_index_6;
|
|
// System.Int32 System.Globalization.CultureInfo::number_index
|
|
int32_t ___number_index_7;
|
|
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
|
|
int32_t ___default_calendar_type_8;
|
|
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_9;
|
|
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
|
|
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
|
|
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
|
|
// System.String System.Globalization.CultureInfo::m_name
|
|
String_t* ___m_name_13;
|
|
// System.String System.Globalization.CultureInfo::englishname
|
|
String_t* ___englishname_14;
|
|
// System.String System.Globalization.CultureInfo::nativename
|
|
String_t* ___nativename_15;
|
|
// System.String System.Globalization.CultureInfo::iso3lang
|
|
String_t* ___iso3lang_16;
|
|
// System.String System.Globalization.CultureInfo::iso2lang
|
|
String_t* ___iso2lang_17;
|
|
// System.String System.Globalization.CultureInfo::win3lang
|
|
String_t* ___win3lang_18;
|
|
// System.String System.Globalization.CultureInfo::territory
|
|
String_t* ___territory_19;
|
|
// System.String[] System.Globalization.CultureInfo::native_calendar_names
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20;
|
|
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
|
|
// System.Void* System.Globalization.CultureInfo::textinfo_data
|
|
void* ___textinfo_data_22;
|
|
// System.Int32 System.Globalization.CultureInfo::m_dataItem
|
|
int32_t ___m_dataItem_23;
|
|
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
|
|
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25;
|
|
// System.Boolean System.Globalization.CultureInfo::constructed
|
|
bool ___constructed_26;
|
|
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27;
|
|
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
|
|
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28;
|
|
// System.Boolean System.Globalization.CultureInfo::m_isInherited
|
|
bool ___m_isInherited_29;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); }
|
|
inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; }
|
|
inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; }
|
|
inline void set_m_isReadOnly_3(bool value)
|
|
{
|
|
___m_isReadOnly_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); }
|
|
inline int32_t get_cultureID_4() const { return ___cultureID_4; }
|
|
inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; }
|
|
inline void set_cultureID_4(int32_t value)
|
|
{
|
|
___cultureID_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); }
|
|
inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; }
|
|
inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; }
|
|
inline void set_parent_lcid_5(int32_t value)
|
|
{
|
|
___parent_lcid_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); }
|
|
inline int32_t get_datetime_index_6() const { return ___datetime_index_6; }
|
|
inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; }
|
|
inline void set_datetime_index_6(int32_t value)
|
|
{
|
|
___datetime_index_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); }
|
|
inline int32_t get_number_index_7() const { return ___number_index_7; }
|
|
inline int32_t* get_address_of_number_index_7() { return &___number_index_7; }
|
|
inline void set_number_index_7(int32_t value)
|
|
{
|
|
___number_index_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); }
|
|
inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; }
|
|
inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; }
|
|
inline void set_default_calendar_type_8(int32_t value)
|
|
{
|
|
___default_calendar_type_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); }
|
|
inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; }
|
|
inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; }
|
|
inline void set_m_useUserOverride_9(bool value)
|
|
{
|
|
___m_useUserOverride_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); }
|
|
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; }
|
|
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; }
|
|
inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
|
|
{
|
|
___numInfo_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); }
|
|
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; }
|
|
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; }
|
|
inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value)
|
|
{
|
|
___dateTimeInfo_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); }
|
|
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; }
|
|
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; }
|
|
inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value)
|
|
{
|
|
___textInfo_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); }
|
|
inline String_t* get_m_name_13() const { return ___m_name_13; }
|
|
inline String_t** get_address_of_m_name_13() { return &___m_name_13; }
|
|
inline void set_m_name_13(String_t* value)
|
|
{
|
|
___m_name_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); }
|
|
inline String_t* get_englishname_14() const { return ___englishname_14; }
|
|
inline String_t** get_address_of_englishname_14() { return &___englishname_14; }
|
|
inline void set_englishname_14(String_t* value)
|
|
{
|
|
___englishname_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); }
|
|
inline String_t* get_nativename_15() const { return ___nativename_15; }
|
|
inline String_t** get_address_of_nativename_15() { return &___nativename_15; }
|
|
inline void set_nativename_15(String_t* value)
|
|
{
|
|
___nativename_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); }
|
|
inline String_t* get_iso3lang_16() const { return ___iso3lang_16; }
|
|
inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; }
|
|
inline void set_iso3lang_16(String_t* value)
|
|
{
|
|
___iso3lang_16 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); }
|
|
inline String_t* get_iso2lang_17() const { return ___iso2lang_17; }
|
|
inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; }
|
|
inline void set_iso2lang_17(String_t* value)
|
|
{
|
|
___iso2lang_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); }
|
|
inline String_t* get_win3lang_18() const { return ___win3lang_18; }
|
|
inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; }
|
|
inline void set_win3lang_18(String_t* value)
|
|
{
|
|
___win3lang_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); }
|
|
inline String_t* get_territory_19() const { return ___territory_19; }
|
|
inline String_t** get_address_of_territory_19() { return &___territory_19; }
|
|
inline void set_territory_19(String_t* value)
|
|
{
|
|
___territory_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; }
|
|
inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___native_calendar_names_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); }
|
|
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; }
|
|
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; }
|
|
inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value)
|
|
{
|
|
___compareInfo_21 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); }
|
|
inline void* get_textinfo_data_22() const { return ___textinfo_data_22; }
|
|
inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; }
|
|
inline void set_textinfo_data_22(void* value)
|
|
{
|
|
___textinfo_data_22 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); }
|
|
inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; }
|
|
inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; }
|
|
inline void set_m_dataItem_23(int32_t value)
|
|
{
|
|
___m_dataItem_23 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); }
|
|
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; }
|
|
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; }
|
|
inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value)
|
|
{
|
|
___calendar_24 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; }
|
|
inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___parent_culture_25 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); }
|
|
inline bool get_constructed_26() const { return ___constructed_26; }
|
|
inline bool* get_address_of_constructed_26() { return &___constructed_26; }
|
|
inline void set_constructed_26(bool value)
|
|
{
|
|
___constructed_26 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; }
|
|
inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___cached_serialized_form_27 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); }
|
|
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; }
|
|
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; }
|
|
inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value)
|
|
{
|
|
___m_cultureData_28 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); }
|
|
inline bool get_m_isInherited_29() const { return ___m_isInherited_29; }
|
|
inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; }
|
|
inline void set_m_isInherited_29(bool value)
|
|
{
|
|
___m_isInherited_29 = value;
|
|
}
|
|
};
|
|
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields
|
|
{
|
|
public:
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0;
|
|
// System.Object System.Globalization.CultureInfo::shared_table_lock
|
|
RuntimeObject * ___shared_table_lock_1;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2;
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33;
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
|
|
Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
|
|
Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36;
|
|
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
|
|
bool ___IsTaiwanSku_37;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; }
|
|
inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___invariant_culture_info_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); }
|
|
inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; }
|
|
inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; }
|
|
inline void set_shared_table_lock_1(RuntimeObject * value)
|
|
{
|
|
___shared_table_lock_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; }
|
|
inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___default_current_culture_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; }
|
|
inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___s_DefaultThreadCurrentUICulture_33 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; }
|
|
inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___s_DefaultThreadCurrentCulture_34 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); }
|
|
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; }
|
|
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; }
|
|
inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value)
|
|
{
|
|
___shared_by_number_35 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); }
|
|
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; }
|
|
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; }
|
|
inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value)
|
|
{
|
|
___shared_by_name_36 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); }
|
|
inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; }
|
|
inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; }
|
|
inline void set_IsTaiwanSku_37(bool value)
|
|
{
|
|
___IsTaiwanSku_37 = value;
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_isReadOnly_3;
|
|
int32_t ___cultureID_4;
|
|
int32_t ___parent_lcid_5;
|
|
int32_t ___datetime_index_6;
|
|
int32_t ___number_index_7;
|
|
int32_t ___default_calendar_type_8;
|
|
int32_t ___m_useUserOverride_9;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
|
|
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
|
|
char* ___m_name_13;
|
|
char* ___englishname_14;
|
|
char* ___nativename_15;
|
|
char* ___iso3lang_16;
|
|
char* ___iso2lang_17;
|
|
char* ___win3lang_18;
|
|
char* ___territory_19;
|
|
char** ___native_calendar_names_20;
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
|
|
void* ___textinfo_data_22;
|
|
int32_t ___m_dataItem_23;
|
|
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25;
|
|
int32_t ___constructed_26;
|
|
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
|
|
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28;
|
|
int32_t ___m_isInherited_29;
|
|
};
|
|
// Native definition for COM marshalling of System.Globalization.CultureInfo
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com
|
|
{
|
|
int32_t ___m_isReadOnly_3;
|
|
int32_t ___cultureID_4;
|
|
int32_t ___parent_lcid_5;
|
|
int32_t ___datetime_index_6;
|
|
int32_t ___number_index_7;
|
|
int32_t ___default_calendar_type_8;
|
|
int32_t ___m_useUserOverride_9;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
|
|
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
|
|
Il2CppChar* ___m_name_13;
|
|
Il2CppChar* ___englishname_14;
|
|
Il2CppChar* ___nativename_15;
|
|
Il2CppChar* ___iso3lang_16;
|
|
Il2CppChar* ___iso2lang_17;
|
|
Il2CppChar* ___win3lang_18;
|
|
Il2CppChar* ___territory_19;
|
|
Il2CppChar** ___native_calendar_names_20;
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
|
|
void* ___textinfo_data_22;
|
|
int32_t ___m_dataItem_23;
|
|
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25;
|
|
int32_t ___constructed_26;
|
|
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
|
|
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28;
|
|
int32_t ___m_isInherited_29;
|
|
};
|
|
|
|
// System.IO.Path
|
|
struct Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields
|
|
{
|
|
public:
|
|
// System.Char[] System.IO.Path::InvalidPathChars
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___InvalidPathChars_0;
|
|
// System.Char System.IO.Path::AltDirectorySeparatorChar
|
|
Il2CppChar ___AltDirectorySeparatorChar_1;
|
|
// System.Char System.IO.Path::DirectorySeparatorChar
|
|
Il2CppChar ___DirectorySeparatorChar_2;
|
|
// System.Char System.IO.Path::PathSeparator
|
|
Il2CppChar ___PathSeparator_3;
|
|
// System.String System.IO.Path::DirectorySeparatorStr
|
|
String_t* ___DirectorySeparatorStr_4;
|
|
// System.Char System.IO.Path::VolumeSeparatorChar
|
|
Il2CppChar ___VolumeSeparatorChar_5;
|
|
// System.Char[] System.IO.Path::PathSeparatorChars
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___PathSeparatorChars_6;
|
|
// System.Boolean System.IO.Path::dirEqualsVolume
|
|
bool ___dirEqualsVolume_7;
|
|
// System.Char[] System.IO.Path::trimEndCharsWindows
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___trimEndCharsWindows_8;
|
|
// System.Char[] System.IO.Path::trimEndCharsUnix
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___trimEndCharsUnix_9;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_InvalidPathChars_0() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___InvalidPathChars_0)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_InvalidPathChars_0() const { return ___InvalidPathChars_0; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_InvalidPathChars_0() { return &___InvalidPathChars_0; }
|
|
inline void set_InvalidPathChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___InvalidPathChars_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___InvalidPathChars_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_AltDirectorySeparatorChar_1() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___AltDirectorySeparatorChar_1)); }
|
|
inline Il2CppChar get_AltDirectorySeparatorChar_1() const { return ___AltDirectorySeparatorChar_1; }
|
|
inline Il2CppChar* get_address_of_AltDirectorySeparatorChar_1() { return &___AltDirectorySeparatorChar_1; }
|
|
inline void set_AltDirectorySeparatorChar_1(Il2CppChar value)
|
|
{
|
|
___AltDirectorySeparatorChar_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DirectorySeparatorChar_2() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___DirectorySeparatorChar_2)); }
|
|
inline Il2CppChar get_DirectorySeparatorChar_2() const { return ___DirectorySeparatorChar_2; }
|
|
inline Il2CppChar* get_address_of_DirectorySeparatorChar_2() { return &___DirectorySeparatorChar_2; }
|
|
inline void set_DirectorySeparatorChar_2(Il2CppChar value)
|
|
{
|
|
___DirectorySeparatorChar_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_PathSeparator_3() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___PathSeparator_3)); }
|
|
inline Il2CppChar get_PathSeparator_3() const { return ___PathSeparator_3; }
|
|
inline Il2CppChar* get_address_of_PathSeparator_3() { return &___PathSeparator_3; }
|
|
inline void set_PathSeparator_3(Il2CppChar value)
|
|
{
|
|
___PathSeparator_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DirectorySeparatorStr_4() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___DirectorySeparatorStr_4)); }
|
|
inline String_t* get_DirectorySeparatorStr_4() const { return ___DirectorySeparatorStr_4; }
|
|
inline String_t** get_address_of_DirectorySeparatorStr_4() { return &___DirectorySeparatorStr_4; }
|
|
inline void set_DirectorySeparatorStr_4(String_t* value)
|
|
{
|
|
___DirectorySeparatorStr_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___DirectorySeparatorStr_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_VolumeSeparatorChar_5() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___VolumeSeparatorChar_5)); }
|
|
inline Il2CppChar get_VolumeSeparatorChar_5() const { return ___VolumeSeparatorChar_5; }
|
|
inline Il2CppChar* get_address_of_VolumeSeparatorChar_5() { return &___VolumeSeparatorChar_5; }
|
|
inline void set_VolumeSeparatorChar_5(Il2CppChar value)
|
|
{
|
|
___VolumeSeparatorChar_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_PathSeparatorChars_6() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___PathSeparatorChars_6)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_PathSeparatorChars_6() const { return ___PathSeparatorChars_6; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_PathSeparatorChars_6() { return &___PathSeparatorChars_6; }
|
|
inline void set_PathSeparatorChars_6(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___PathSeparatorChars_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___PathSeparatorChars_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dirEqualsVolume_7() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___dirEqualsVolume_7)); }
|
|
inline bool get_dirEqualsVolume_7() const { return ___dirEqualsVolume_7; }
|
|
inline bool* get_address_of_dirEqualsVolume_7() { return &___dirEqualsVolume_7; }
|
|
inline void set_dirEqualsVolume_7(bool value)
|
|
{
|
|
___dirEqualsVolume_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_trimEndCharsWindows_8() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___trimEndCharsWindows_8)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_trimEndCharsWindows_8() const { return ___trimEndCharsWindows_8; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_trimEndCharsWindows_8() { return &___trimEndCharsWindows_8; }
|
|
inline void set_trimEndCharsWindows_8(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___trimEndCharsWindows_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___trimEndCharsWindows_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_trimEndCharsUnix_9() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___trimEndCharsUnix_9)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_trimEndCharsUnix_9() const { return ___trimEndCharsUnix_9; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_trimEndCharsUnix_9() { return &___trimEndCharsUnix_9; }
|
|
inline void set_trimEndCharsUnix_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___trimEndCharsUnix_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___trimEndCharsUnix_9), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.MarshalByRefObject
|
|
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Object System.MarshalByRefObject::_identity
|
|
RuntimeObject * ____identity_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); }
|
|
inline RuntimeObject * get__identity_0() const { return ____identity_0; }
|
|
inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; }
|
|
inline void set__identity_0(RuntimeObject * value)
|
|
{
|
|
____identity_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
|
|
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ____identity_0;
|
|
};
|
|
// Native definition for COM marshalling of System.MarshalByRefObject
|
|
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ____identity_0;
|
|
};
|
|
|
|
// System.Reflection.Binder
|
|
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.MemberInfo
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
|
|
struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_Exception
|
|
Exception_t * ___m_Exception_0;
|
|
// System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_stackTrace
|
|
RuntimeObject * ___m_stackTrace_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_Exception_0() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___m_Exception_0)); }
|
|
inline Exception_t * get_m_Exception_0() const { return ___m_Exception_0; }
|
|
inline Exception_t ** get_address_of_m_Exception_0() { return &___m_Exception_0; }
|
|
inline void set_m_Exception_0(Exception_t * value)
|
|
{
|
|
___m_Exception_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_Exception_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_stackTrace_1() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___m_stackTrace_1)); }
|
|
inline RuntimeObject * get_m_stackTrace_1() const { return ___m_stackTrace_1; }
|
|
inline RuntimeObject ** get_address_of_m_stackTrace_1() { return &___m_stackTrace_1; }
|
|
inline void set_m_stackTrace_1(RuntimeObject * value)
|
|
{
|
|
___m_stackTrace_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_stackTrace_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Runtime.Remoting.Messaging.CADMessageBase
|
|
struct CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Object[] System.Runtime.Remoting.Messaging.CADMessageBase::_args
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____args_0;
|
|
// System.Byte[] System.Runtime.Remoting.Messaging.CADMessageBase::_serializedArgs
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____serializedArgs_1;
|
|
// System.Int32 System.Runtime.Remoting.Messaging.CADMessageBase::_propertyCount
|
|
int32_t ____propertyCount_2;
|
|
// System.Runtime.Remoting.Messaging.CADArgHolder System.Runtime.Remoting.Messaging.CADMessageBase::_callContext
|
|
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * ____callContext_3;
|
|
// System.Byte[] System.Runtime.Remoting.Messaging.CADMessageBase::serializedMethod
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___serializedMethod_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__args_0() { return static_cast<int32_t>(offsetof(CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B, ____args_0)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__args_0() const { return ____args_0; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__args_0() { return &____args_0; }
|
|
inline void set__args_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
____args_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____args_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__serializedArgs_1() { return static_cast<int32_t>(offsetof(CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B, ____serializedArgs_1)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__serializedArgs_1() const { return ____serializedArgs_1; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__serializedArgs_1() { return &____serializedArgs_1; }
|
|
inline void set__serializedArgs_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
____serializedArgs_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____serializedArgs_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__propertyCount_2() { return static_cast<int32_t>(offsetof(CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B, ____propertyCount_2)); }
|
|
inline int32_t get__propertyCount_2() const { return ____propertyCount_2; }
|
|
inline int32_t* get_address_of__propertyCount_2() { return &____propertyCount_2; }
|
|
inline void set__propertyCount_2(int32_t value)
|
|
{
|
|
____propertyCount_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__callContext_3() { return static_cast<int32_t>(offsetof(CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B, ____callContext_3)); }
|
|
inline CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * get__callContext_3() const { return ____callContext_3; }
|
|
inline CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A ** get_address_of__callContext_3() { return &____callContext_3; }
|
|
inline void set__callContext_3(CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * value)
|
|
{
|
|
____callContext_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____callContext_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_serializedMethod_4() { return static_cast<int32_t>(offsetof(CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B, ___serializedMethod_4)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_serializedMethod_4() const { return ___serializedMethod_4; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_serializedMethod_4() { return &___serializedMethod_4; }
|
|
inline void set_serializedMethod_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___serializedMethod_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___serializedMethod_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Runtime.Remoting.Messaging.MethodCall
|
|
struct MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.Runtime.Remoting.Messaging.MethodCall::_uri
|
|
String_t* ____uri_0;
|
|
// System.String System.Runtime.Remoting.Messaging.MethodCall::_typeName
|
|
String_t* ____typeName_1;
|
|
// System.String System.Runtime.Remoting.Messaging.MethodCall::_methodName
|
|
String_t* ____methodName_2;
|
|
// System.Object[] System.Runtime.Remoting.Messaging.MethodCall::_args
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____args_3;
|
|
// System.Type[] System.Runtime.Remoting.Messaging.MethodCall::_methodSignature
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____methodSignature_4;
|
|
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.MethodCall::_methodBase
|
|
MethodBase_t * ____methodBase_5;
|
|
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.MethodCall::_callContext
|
|
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ____callContext_6;
|
|
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.MethodCall::_targetIdentity
|
|
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ____targetIdentity_7;
|
|
// System.Type[] System.Runtime.Remoting.Messaging.MethodCall::_genericArguments
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____genericArguments_8;
|
|
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodCall::ExternalProperties
|
|
RuntimeObject* ___ExternalProperties_9;
|
|
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodCall::InternalProperties
|
|
RuntimeObject* ___InternalProperties_10;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__uri_0() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____uri_0)); }
|
|
inline String_t* get__uri_0() const { return ____uri_0; }
|
|
inline String_t** get_address_of__uri_0() { return &____uri_0; }
|
|
inline void set__uri_0(String_t* value)
|
|
{
|
|
____uri_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____uri_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__typeName_1() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____typeName_1)); }
|
|
inline String_t* get__typeName_1() const { return ____typeName_1; }
|
|
inline String_t** get_address_of__typeName_1() { return &____typeName_1; }
|
|
inline void set__typeName_1(String_t* value)
|
|
{
|
|
____typeName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____typeName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__methodName_2() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____methodName_2)); }
|
|
inline String_t* get__methodName_2() const { return ____methodName_2; }
|
|
inline String_t** get_address_of__methodName_2() { return &____methodName_2; }
|
|
inline void set__methodName_2(String_t* value)
|
|
{
|
|
____methodName_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____methodName_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__args_3() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____args_3)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__args_3() const { return ____args_3; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__args_3() { return &____args_3; }
|
|
inline void set__args_3(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
____args_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____args_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__methodSignature_4() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____methodSignature_4)); }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__methodSignature_4() const { return ____methodSignature_4; }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__methodSignature_4() { return &____methodSignature_4; }
|
|
inline void set__methodSignature_4(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
|
|
{
|
|
____methodSignature_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____methodSignature_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__methodBase_5() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____methodBase_5)); }
|
|
inline MethodBase_t * get__methodBase_5() const { return ____methodBase_5; }
|
|
inline MethodBase_t ** get_address_of__methodBase_5() { return &____methodBase_5; }
|
|
inline void set__methodBase_5(MethodBase_t * value)
|
|
{
|
|
____methodBase_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____methodBase_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__callContext_6() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____callContext_6)); }
|
|
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * get__callContext_6() const { return ____callContext_6; }
|
|
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E ** get_address_of__callContext_6() { return &____callContext_6; }
|
|
inline void set__callContext_6(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * value)
|
|
{
|
|
____callContext_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____callContext_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__targetIdentity_7() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____targetIdentity_7)); }
|
|
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * get__targetIdentity_7() const { return ____targetIdentity_7; }
|
|
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 ** get_address_of__targetIdentity_7() { return &____targetIdentity_7; }
|
|
inline void set__targetIdentity_7(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * value)
|
|
{
|
|
____targetIdentity_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____targetIdentity_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__genericArguments_8() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____genericArguments_8)); }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__genericArguments_8() const { return ____genericArguments_8; }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__genericArguments_8() { return &____genericArguments_8; }
|
|
inline void set__genericArguments_8(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
|
|
{
|
|
____genericArguments_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____genericArguments_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ExternalProperties_9() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ___ExternalProperties_9)); }
|
|
inline RuntimeObject* get_ExternalProperties_9() const { return ___ExternalProperties_9; }
|
|
inline RuntimeObject** get_address_of_ExternalProperties_9() { return &___ExternalProperties_9; }
|
|
inline void set_ExternalProperties_9(RuntimeObject* value)
|
|
{
|
|
___ExternalProperties_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ExternalProperties_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_InternalProperties_10() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ___InternalProperties_10)); }
|
|
inline RuntimeObject* get_InternalProperties_10() const { return ___InternalProperties_10; }
|
|
inline RuntimeObject** get_address_of_InternalProperties_10() { return &___InternalProperties_10; }
|
|
inline void set_InternalProperties_10(RuntimeObject* value)
|
|
{
|
|
___InternalProperties_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___InternalProperties_10), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Runtime.Remoting.ObjRef
|
|
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Runtime.Remoting.IChannelInfo System.Runtime.Remoting.ObjRef::channel_info
|
|
RuntimeObject* ___channel_info_0;
|
|
// System.String System.Runtime.Remoting.ObjRef::uri
|
|
String_t* ___uri_1;
|
|
// System.Runtime.Remoting.IRemotingTypeInfo System.Runtime.Remoting.ObjRef::typeInfo
|
|
RuntimeObject* ___typeInfo_2;
|
|
// System.Runtime.Remoting.IEnvoyInfo System.Runtime.Remoting.ObjRef::envoyInfo
|
|
RuntimeObject* ___envoyInfo_3;
|
|
// System.Int32 System.Runtime.Remoting.ObjRef::flags
|
|
int32_t ___flags_4;
|
|
// System.Type System.Runtime.Remoting.ObjRef::_serverType
|
|
Type_t * ____serverType_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_channel_info_0() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___channel_info_0)); }
|
|
inline RuntimeObject* get_channel_info_0() const { return ___channel_info_0; }
|
|
inline RuntimeObject** get_address_of_channel_info_0() { return &___channel_info_0; }
|
|
inline void set_channel_info_0(RuntimeObject* value)
|
|
{
|
|
___channel_info_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___channel_info_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_uri_1() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___uri_1)); }
|
|
inline String_t* get_uri_1() const { return ___uri_1; }
|
|
inline String_t** get_address_of_uri_1() { return &___uri_1; }
|
|
inline void set_uri_1(String_t* value)
|
|
{
|
|
___uri_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___uri_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_typeInfo_2() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___typeInfo_2)); }
|
|
inline RuntimeObject* get_typeInfo_2() const { return ___typeInfo_2; }
|
|
inline RuntimeObject** get_address_of_typeInfo_2() { return &___typeInfo_2; }
|
|
inline void set_typeInfo_2(RuntimeObject* value)
|
|
{
|
|
___typeInfo_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_envoyInfo_3() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___envoyInfo_3)); }
|
|
inline RuntimeObject* get_envoyInfo_3() const { return ___envoyInfo_3; }
|
|
inline RuntimeObject** get_address_of_envoyInfo_3() { return &___envoyInfo_3; }
|
|
inline void set_envoyInfo_3(RuntimeObject* value)
|
|
{
|
|
___envoyInfo_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___envoyInfo_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_flags_4() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___flags_4)); }
|
|
inline int32_t get_flags_4() const { return ___flags_4; }
|
|
inline int32_t* get_address_of_flags_4() { return &___flags_4; }
|
|
inline void set_flags_4(int32_t value)
|
|
{
|
|
___flags_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__serverType_5() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ____serverType_5)); }
|
|
inline Type_t * get__serverType_5() const { return ____serverType_5; }
|
|
inline Type_t ** get_address_of__serverType_5() { return &____serverType_5; }
|
|
inline void set__serverType_5(Type_t * value)
|
|
{
|
|
____serverType_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____serverType_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields
|
|
{
|
|
public:
|
|
// System.Int32 System.Runtime.Remoting.ObjRef::MarshalledObjectRef
|
|
int32_t ___MarshalledObjectRef_6;
|
|
// System.Int32 System.Runtime.Remoting.ObjRef::WellKnowObjectRef
|
|
int32_t ___WellKnowObjectRef_7;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_MarshalledObjectRef_6() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields, ___MarshalledObjectRef_6)); }
|
|
inline int32_t get_MarshalledObjectRef_6() const { return ___MarshalledObjectRef_6; }
|
|
inline int32_t* get_address_of_MarshalledObjectRef_6() { return &___MarshalledObjectRef_6; }
|
|
inline void set_MarshalledObjectRef_6(int32_t value)
|
|
{
|
|
___MarshalledObjectRef_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_WellKnowObjectRef_7() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields, ___WellKnowObjectRef_7)); }
|
|
inline int32_t get_WellKnowObjectRef_7() const { return ___WellKnowObjectRef_7; }
|
|
inline int32_t* get_address_of_WellKnowObjectRef_7() { return &___WellKnowObjectRef_7; }
|
|
inline void set_WellKnowObjectRef_7(int32_t value)
|
|
{
|
|
___WellKnowObjectRef_7 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_3;
|
|
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_4;
|
|
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_5;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
|
|
Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___m_nameToIndex_6;
|
|
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
|
|
int32_t ___m_currMember_7;
|
|
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
|
|
RuntimeObject* ___m_converter_8;
|
|
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
|
|
String_t* ___m_fullTypeName_9;
|
|
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
|
|
String_t* ___m_assemName_10;
|
|
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
|
|
Type_t * ___objectType_11;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
|
|
bool ___isFullTypeNameSetExplicit_12;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
|
|
bool ___isAssemblyNameSetExplicit_13;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
|
|
bool ___requireSameTokenInPartialTrust_14;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_members_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_members_3)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_3() const { return ___m_members_3; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_3() { return &___m_members_3; }
|
|
inline void set_m_members_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___m_members_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_members_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_data_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_data_4)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_4() const { return ___m_data_4; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_4() { return &___m_data_4; }
|
|
inline void set_m_data_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
___m_data_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_data_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_types_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_types_5)); }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_5() const { return ___m_types_5; }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_5() { return &___m_types_5; }
|
|
inline void set_m_types_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
|
|
{
|
|
___m_types_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_types_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_nameToIndex_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_nameToIndex_6)); }
|
|
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_m_nameToIndex_6() const { return ___m_nameToIndex_6; }
|
|
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_m_nameToIndex_6() { return &___m_nameToIndex_6; }
|
|
inline void set_m_nameToIndex_6(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value)
|
|
{
|
|
___m_nameToIndex_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_nameToIndex_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_currMember_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_currMember_7)); }
|
|
inline int32_t get_m_currMember_7() const { return ___m_currMember_7; }
|
|
inline int32_t* get_address_of_m_currMember_7() { return &___m_currMember_7; }
|
|
inline void set_m_currMember_7(int32_t value)
|
|
{
|
|
___m_currMember_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_converter_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_converter_8)); }
|
|
inline RuntimeObject* get_m_converter_8() const { return ___m_converter_8; }
|
|
inline RuntimeObject** get_address_of_m_converter_8() { return &___m_converter_8; }
|
|
inline void set_m_converter_8(RuntimeObject* value)
|
|
{
|
|
___m_converter_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_converter_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_fullTypeName_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_fullTypeName_9)); }
|
|
inline String_t* get_m_fullTypeName_9() const { return ___m_fullTypeName_9; }
|
|
inline String_t** get_address_of_m_fullTypeName_9() { return &___m_fullTypeName_9; }
|
|
inline void set_m_fullTypeName_9(String_t* value)
|
|
{
|
|
___m_fullTypeName_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_fullTypeName_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_assemName_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_assemName_10)); }
|
|
inline String_t* get_m_assemName_10() const { return ___m_assemName_10; }
|
|
inline String_t** get_address_of_m_assemName_10() { return &___m_assemName_10; }
|
|
inline void set_m_assemName_10(String_t* value)
|
|
{
|
|
___m_assemName_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_assemName_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_objectType_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___objectType_11)); }
|
|
inline Type_t * get_objectType_11() const { return ___objectType_11; }
|
|
inline Type_t ** get_address_of_objectType_11() { return &___objectType_11; }
|
|
inline void set_objectType_11(Type_t * value)
|
|
{
|
|
___objectType_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___objectType_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isFullTypeNameSetExplicit_12() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isFullTypeNameSetExplicit_12)); }
|
|
inline bool get_isFullTypeNameSetExplicit_12() const { return ___isFullTypeNameSetExplicit_12; }
|
|
inline bool* get_address_of_isFullTypeNameSetExplicit_12() { return &___isFullTypeNameSetExplicit_12; }
|
|
inline void set_isFullTypeNameSetExplicit_12(bool value)
|
|
{
|
|
___isFullTypeNameSetExplicit_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isAssemblyNameSetExplicit_13() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isAssemblyNameSetExplicit_13)); }
|
|
inline bool get_isAssemblyNameSetExplicit_13() const { return ___isAssemblyNameSetExplicit_13; }
|
|
inline bool* get_address_of_isAssemblyNameSetExplicit_13() { return &___isAssemblyNameSetExplicit_13; }
|
|
inline void set_isAssemblyNameSetExplicit_13(bool value)
|
|
{
|
|
___isAssemblyNameSetExplicit_13 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_requireSameTokenInPartialTrust_14() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___requireSameTokenInPartialTrust_14)); }
|
|
inline bool get_requireSameTokenInPartialTrust_14() const { return ___requireSameTokenInPartialTrust_14; }
|
|
inline bool* get_address_of_requireSameTokenInPartialTrust_14() { return &___requireSameTokenInPartialTrust_14; }
|
|
inline void set_requireSameTokenInPartialTrust_14(bool value)
|
|
{
|
|
___requireSameTokenInPartialTrust_14 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Security.Cryptography.AsymmetricAlgorithm
|
|
struct AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::KeySizeValue
|
|
int32_t ___KeySizeValue_0;
|
|
// System.Security.Cryptography.KeySizes[] System.Security.Cryptography.AsymmetricAlgorithm::LegalKeySizesValue
|
|
KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* ___LegalKeySizesValue_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_KeySizeValue_0() { return static_cast<int32_t>(offsetof(AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB, ___KeySizeValue_0)); }
|
|
inline int32_t get_KeySizeValue_0() const { return ___KeySizeValue_0; }
|
|
inline int32_t* get_address_of_KeySizeValue_0() { return &___KeySizeValue_0; }
|
|
inline void set_KeySizeValue_0(int32_t value)
|
|
{
|
|
___KeySizeValue_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_LegalKeySizesValue_1() { return static_cast<int32_t>(offsetof(AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB, ___LegalKeySizesValue_1)); }
|
|
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* get_LegalKeySizesValue_1() const { return ___LegalKeySizesValue_1; }
|
|
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E** get_address_of_LegalKeySizesValue_1() { return &___LegalKeySizesValue_1; }
|
|
inline void set_LegalKeySizesValue_1(KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* value)
|
|
{
|
|
___LegalKeySizesValue_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___LegalKeySizesValue_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Security.Cryptography.HashAlgorithm
|
|
struct HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32 System.Security.Cryptography.HashAlgorithm::HashSizeValue
|
|
int32_t ___HashSizeValue_0;
|
|
// System.Byte[] System.Security.Cryptography.HashAlgorithm::HashValue
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___HashValue_1;
|
|
// System.Int32 System.Security.Cryptography.HashAlgorithm::State
|
|
int32_t ___State_2;
|
|
// System.Boolean System.Security.Cryptography.HashAlgorithm::m_bDisposed
|
|
bool ___m_bDisposed_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_HashSizeValue_0() { return static_cast<int32_t>(offsetof(HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA, ___HashSizeValue_0)); }
|
|
inline int32_t get_HashSizeValue_0() const { return ___HashSizeValue_0; }
|
|
inline int32_t* get_address_of_HashSizeValue_0() { return &___HashSizeValue_0; }
|
|
inline void set_HashSizeValue_0(int32_t value)
|
|
{
|
|
___HashSizeValue_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_HashValue_1() { return static_cast<int32_t>(offsetof(HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA, ___HashValue_1)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_HashValue_1() const { return ___HashValue_1; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_HashValue_1() { return &___HashValue_1; }
|
|
inline void set_HashValue_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___HashValue_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___HashValue_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_State_2() { return static_cast<int32_t>(offsetof(HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA, ___State_2)); }
|
|
inline int32_t get_State_2() const { return ___State_2; }
|
|
inline int32_t* get_address_of_State_2() { return &___State_2; }
|
|
inline void set_State_2(int32_t value)
|
|
{
|
|
___State_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_bDisposed_3() { return static_cast<int32_t>(offsetof(HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA, ___m_bDisposed_3)); }
|
|
inline bool get_m_bDisposed_3() const { return ___m_bDisposed_3; }
|
|
inline bool* get_address_of_m_bDisposed_3() { return &___m_bDisposed_3; }
|
|
inline void set_m_bDisposed_3(bool value)
|
|
{
|
|
___m_bDisposed_3 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Security.Policy.Evidence
|
|
struct Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Boolean System.Security.Policy.Evidence::_locked
|
|
bool ____locked_0;
|
|
// System.Collections.ArrayList System.Security.Policy.Evidence::hostEvidenceList
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___hostEvidenceList_1;
|
|
// System.Collections.ArrayList System.Security.Policy.Evidence::assemblyEvidenceList
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___assemblyEvidenceList_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__locked_0() { return static_cast<int32_t>(offsetof(Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307, ____locked_0)); }
|
|
inline bool get__locked_0() const { return ____locked_0; }
|
|
inline bool* get_address_of__locked_0() { return &____locked_0; }
|
|
inline void set__locked_0(bool value)
|
|
{
|
|
____locked_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_hostEvidenceList_1() { return static_cast<int32_t>(offsetof(Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307, ___hostEvidenceList_1)); }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_hostEvidenceList_1() const { return ___hostEvidenceList_1; }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_hostEvidenceList_1() { return &___hostEvidenceList_1; }
|
|
inline void set_hostEvidenceList_1(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
|
|
{
|
|
___hostEvidenceList_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___hostEvidenceList_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_assemblyEvidenceList_2() { return static_cast<int32_t>(offsetof(Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307, ___assemblyEvidenceList_2)); }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_assemblyEvidenceList_2() const { return ___assemblyEvidenceList_2; }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_assemblyEvidenceList_2() { return &___assemblyEvidenceList_2; }
|
|
inline void set_assemblyEvidenceList_2(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
|
|
{
|
|
___assemblyEvidenceList_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___assemblyEvidenceList_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Security.SecurityElement
|
|
struct SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.Security.SecurityElement::text
|
|
String_t* ___text_0;
|
|
// System.String System.Security.SecurityElement::tag
|
|
String_t* ___tag_1;
|
|
// System.Collections.ArrayList System.Security.SecurityElement::attributes
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___attributes_2;
|
|
// System.Collections.ArrayList System.Security.SecurityElement::children
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___children_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_text_0() { return static_cast<int32_t>(offsetof(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7, ___text_0)); }
|
|
inline String_t* get_text_0() const { return ___text_0; }
|
|
inline String_t** get_address_of_text_0() { return &___text_0; }
|
|
inline void set_text_0(String_t* value)
|
|
{
|
|
___text_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___text_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_tag_1() { return static_cast<int32_t>(offsetof(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7, ___tag_1)); }
|
|
inline String_t* get_tag_1() const { return ___tag_1; }
|
|
inline String_t** get_address_of_tag_1() { return &___tag_1; }
|
|
inline void set_tag_1(String_t* value)
|
|
{
|
|
___tag_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___tag_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_attributes_2() { return static_cast<int32_t>(offsetof(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7, ___attributes_2)); }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_attributes_2() const { return ___attributes_2; }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_attributes_2() { return &___attributes_2; }
|
|
inline void set_attributes_2(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
|
|
{
|
|
___attributes_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___attributes_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_children_3() { return static_cast<int32_t>(offsetof(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7, ___children_3)); }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_children_3() const { return ___children_3; }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_children_3() { return &___children_3; }
|
|
inline void set_children_3(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
|
|
{
|
|
___children_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___children_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_StaticFields
|
|
{
|
|
public:
|
|
// System.Char[] System.Security.SecurityElement::invalid_tag_chars
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___invalid_tag_chars_4;
|
|
// System.Char[] System.Security.SecurityElement::invalid_text_chars
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___invalid_text_chars_5;
|
|
// System.Char[] System.Security.SecurityElement::invalid_attr_name_chars
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___invalid_attr_name_chars_6;
|
|
// System.Char[] System.Security.SecurityElement::invalid_attr_value_chars
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___invalid_attr_value_chars_7;
|
|
// System.Char[] System.Security.SecurityElement::invalid_chars
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___invalid_chars_8;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_invalid_tag_chars_4() { return static_cast<int32_t>(offsetof(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_StaticFields, ___invalid_tag_chars_4)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_invalid_tag_chars_4() const { return ___invalid_tag_chars_4; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_invalid_tag_chars_4() { return &___invalid_tag_chars_4; }
|
|
inline void set_invalid_tag_chars_4(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___invalid_tag_chars_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___invalid_tag_chars_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_invalid_text_chars_5() { return static_cast<int32_t>(offsetof(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_StaticFields, ___invalid_text_chars_5)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_invalid_text_chars_5() const { return ___invalid_text_chars_5; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_invalid_text_chars_5() { return &___invalid_text_chars_5; }
|
|
inline void set_invalid_text_chars_5(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___invalid_text_chars_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___invalid_text_chars_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_invalid_attr_name_chars_6() { return static_cast<int32_t>(offsetof(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_StaticFields, ___invalid_attr_name_chars_6)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_invalid_attr_name_chars_6() const { return ___invalid_attr_name_chars_6; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_invalid_attr_name_chars_6() { return &___invalid_attr_name_chars_6; }
|
|
inline void set_invalid_attr_name_chars_6(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___invalid_attr_name_chars_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___invalid_attr_name_chars_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_invalid_attr_value_chars_7() { return static_cast<int32_t>(offsetof(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_StaticFields, ___invalid_attr_value_chars_7)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_invalid_attr_value_chars_7() const { return ___invalid_attr_value_chars_7; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_invalid_attr_value_chars_7() { return &___invalid_attr_value_chars_7; }
|
|
inline void set_invalid_attr_value_chars_7(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___invalid_attr_value_chars_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___invalid_attr_value_chars_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_invalid_chars_8() { return static_cast<int32_t>(offsetof(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_StaticFields, ___invalid_chars_8)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_invalid_chars_8() const { return ___invalid_chars_8; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_invalid_chars_8() { return &___invalid_chars_8; }
|
|
inline void set_invalid_chars_8(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___invalid_chars_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___invalid_chars_8), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.String
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32 System.String::m_stringLength
|
|
int32_t ___m_stringLength_0;
|
|
// System.Char System.String::m_firstChar
|
|
Il2CppChar ___m_firstChar_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
|
|
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
|
|
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
|
|
inline void set_m_stringLength_0(int32_t value)
|
|
{
|
|
___m_stringLength_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
|
|
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
|
|
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
|
|
inline void set_m_firstChar_1(Il2CppChar value)
|
|
{
|
|
___m_firstChar_1 = value;
|
|
}
|
|
};
|
|
|
|
struct String_t_StaticFields
|
|
{
|
|
public:
|
|
// System.String System.String::Empty
|
|
String_t* ___Empty_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
|
|
inline String_t* get_Empty_5() const { return ___Empty_5; }
|
|
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
|
|
inline void set_Empty_5(String_t* value)
|
|
{
|
|
___Empty_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Text.Encoding
|
|
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32 System.Text.Encoding::m_codePage
|
|
int32_t ___m_codePage_9;
|
|
// System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
|
|
CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_10;
|
|
// System.Boolean System.Text.Encoding::m_deserializedFromEverett
|
|
bool ___m_deserializedFromEverett_11;
|
|
// System.Boolean System.Text.Encoding::m_isReadOnly
|
|
bool ___m_isReadOnly_12;
|
|
// System.Text.EncoderFallback System.Text.Encoding::encoderFallback
|
|
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13;
|
|
// System.Text.DecoderFallback System.Text.Encoding::decoderFallback
|
|
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_9)); }
|
|
inline int32_t get_m_codePage_9() const { return ___m_codePage_9; }
|
|
inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; }
|
|
inline void set_m_codePage_9(int32_t value)
|
|
{
|
|
___m_codePage_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); }
|
|
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; }
|
|
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; }
|
|
inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value)
|
|
{
|
|
___dataItem_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_11)); }
|
|
inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; }
|
|
inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; }
|
|
inline void set_m_deserializedFromEverett_11(bool value)
|
|
{
|
|
___m_deserializedFromEverett_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_12)); }
|
|
inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; }
|
|
inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; }
|
|
inline void set_m_isReadOnly_12(bool value)
|
|
{
|
|
___m_isReadOnly_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); }
|
|
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; }
|
|
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; }
|
|
inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
|
|
{
|
|
___encoderFallback_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); }
|
|
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; }
|
|
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; }
|
|
inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
|
|
{
|
|
___decoderFallback_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields
|
|
{
|
|
public:
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7;
|
|
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8;
|
|
// System.Object System.Text.Encoding::s_InternalSyncObject
|
|
RuntimeObject * ___s_InternalSyncObject_15;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; }
|
|
inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
|
|
{
|
|
___defaultEncoding_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; }
|
|
inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
|
|
{
|
|
___unicodeEncoding_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; }
|
|
inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
|
|
{
|
|
___bigEndianUnicode_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; }
|
|
inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
|
|
{
|
|
___utf7Encoding_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; }
|
|
inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
|
|
{
|
|
___utf8Encoding_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; }
|
|
inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
|
|
{
|
|
___utf32Encoding_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; }
|
|
inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
|
|
{
|
|
___asciiEncoding_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; }
|
|
inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
|
|
{
|
|
___latin1Encoding_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; }
|
|
inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
___encodings_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_15)); }
|
|
inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; }
|
|
inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; }
|
|
inline void set_s_InternalSyncObject_15(RuntimeObject * value)
|
|
{
|
|
___s_InternalSyncObject_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Text.StringBuilder
|
|
struct StringBuilder_t : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Char[] System.Text.StringBuilder::m_ChunkChars
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
|
|
StringBuilder_t * ___m_ChunkPrevious_1;
|
|
// System.Int32 System.Text.StringBuilder::m_ChunkLength
|
|
int32_t ___m_ChunkLength_2;
|
|
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
|
|
int32_t ___m_ChunkOffset_3;
|
|
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
|
|
int32_t ___m_MaxCapacity_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
|
|
inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___m_ChunkChars_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
|
|
inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
|
|
inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
|
|
inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
|
|
{
|
|
___m_ChunkPrevious_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
|
|
inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
|
|
inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
|
|
inline void set_m_ChunkLength_2(int32_t value)
|
|
{
|
|
___m_ChunkLength_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
|
|
inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
|
|
inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
|
|
inline void set_m_ChunkOffset_3(int32_t value)
|
|
{
|
|
___m_ChunkOffset_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
|
|
inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
|
|
inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
|
|
inline void set_m_MaxCapacity_4(int32_t value)
|
|
{
|
|
___m_MaxCapacity_4 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ValueType
|
|
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.ValueType
|
|
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.ValueType
|
|
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
|
|
{
|
|
};
|
|
|
|
// System.Version
|
|
struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32 System.Version::_Major
|
|
int32_t ____Major_0;
|
|
// System.Int32 System.Version::_Minor
|
|
int32_t ____Minor_1;
|
|
// System.Int32 System.Version::_Build
|
|
int32_t ____Build_2;
|
|
// System.Int32 System.Version::_Revision
|
|
int32_t ____Revision_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__Major_0() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Major_0)); }
|
|
inline int32_t get__Major_0() const { return ____Major_0; }
|
|
inline int32_t* get_address_of__Major_0() { return &____Major_0; }
|
|
inline void set__Major_0(int32_t value)
|
|
{
|
|
____Major_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__Minor_1() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Minor_1)); }
|
|
inline int32_t get__Minor_1() const { return ____Minor_1; }
|
|
inline int32_t* get_address_of__Minor_1() { return &____Minor_1; }
|
|
inline void set__Minor_1(int32_t value)
|
|
{
|
|
____Minor_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__Build_2() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Build_2)); }
|
|
inline int32_t get__Build_2() const { return ____Build_2; }
|
|
inline int32_t* get_address_of__Build_2() { return &____Build_2; }
|
|
inline void set__Build_2(int32_t value)
|
|
{
|
|
____Build_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__Revision_3() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Revision_3)); }
|
|
inline int32_t get__Revision_3() const { return ____Revision_3; }
|
|
inline int32_t* get_address_of__Revision_3() { return &____Revision_3; }
|
|
inline void set__Revision_3(int32_t value)
|
|
{
|
|
____Revision_3 = value;
|
|
}
|
|
};
|
|
|
|
struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_StaticFields
|
|
{
|
|
public:
|
|
// System.Char[] System.Version::SeparatorsArray
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___SeparatorsArray_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_SeparatorsArray_4() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_StaticFields, ___SeparatorsArray_4)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_SeparatorsArray_4() const { return ___SeparatorsArray_4; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_SeparatorsArray_4() { return &___SeparatorsArray_4; }
|
|
inline void set_SeparatorsArray_4(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___SeparatorsArray_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___SeparatorsArray_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10
|
|
struct __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C__padding[10];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018
|
|
struct __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4__padding[1018];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080
|
|
struct __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84__padding[1080];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614
|
|
struct __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5__padding[11614];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12
|
|
struct __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879__padding[12];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120
|
|
struct __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252__padding[120];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208
|
|
struct __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD__padding[1208];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128
|
|
struct __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1__padding[128];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130
|
|
struct __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F__padding[130];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D14
|
|
struct __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05__padding[14];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450
|
|
struct __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4__padding[1450];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16
|
|
struct __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341__padding[16];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162
|
|
struct __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA__padding[162];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665
|
|
struct __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20__padding[1665];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174
|
|
struct __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F__padding[174];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D20
|
|
struct __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63__padding[20];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2048
|
|
struct __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02__padding[2048];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100
|
|
struct __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA__padding[2100];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212
|
|
struct __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF__padding[212];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252
|
|
struct __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462__padding[21252];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350
|
|
struct __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D__padding[2350];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382
|
|
struct __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA__padding[2382];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24
|
|
struct __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123__padding[24];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240
|
|
struct __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8__padding[240];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256
|
|
struct __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F__padding[256];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262
|
|
struct __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7__padding[262];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288
|
|
struct __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55__padding[288];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3
|
|
struct __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E__padding[3];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3132
|
|
struct __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333__padding[3132];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32
|
|
struct __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472__padding[32];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320
|
|
struct __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49__padding[320];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36
|
|
struct __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17__padding[36];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360
|
|
struct __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7__padding[360];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38
|
|
struct __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D__padding[38];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40
|
|
struct __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04__padding[40];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D4096
|
|
struct __StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23__padding[4096];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42
|
|
struct __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4__padding[42];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44
|
|
struct __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F__padding[44];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D48
|
|
struct __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A__padding[48];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52
|
|
struct __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A__padding[52];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D56
|
|
struct __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10__padding[56];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6
|
|
struct __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78__padding[6];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64
|
|
struct __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6__padding[64];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D640
|
|
struct __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910__padding[640];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72
|
|
struct __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1__padding[72];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76
|
|
struct __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB__padding[76];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D82
|
|
struct __StaticArrayInitTypeSizeU3D82_tFF649C1155A9721BEFA144DC346A162E7B138F3B
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D82_tFF649C1155A9721BEFA144DC346A162E7B138F3B__padding[82];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84
|
|
struct __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A__padding[84];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D9
|
|
struct __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928__padding[9];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94
|
|
struct __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6__padding[94];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998
|
|
struct __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C__padding[998];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// Mono.Security.X509.X509CertificateCollection
|
|
struct X509CertificateCollection_t5BA116B445B1DB65CBCEAECF7EF3CFC1368E3ECA : public CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// Mono.Security.X509.X509ExtensionCollection
|
|
struct X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 : public CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01
|
|
{
|
|
public:
|
|
// System.Boolean Mono.Security.X509.X509ExtensionCollection::readOnly
|
|
bool ___readOnly_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_readOnly_1() { return static_cast<int32_t>(offsetof(X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1, ___readOnly_1)); }
|
|
inline bool get_readOnly_1() const { return ___readOnly_1; }
|
|
inline bool* get_address_of_readOnly_1() { return &___readOnly_1; }
|
|
inline void set_readOnly_1(bool value)
|
|
{
|
|
___readOnly_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// Mono.Xml.SecurityParser
|
|
struct SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714 : public SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196
|
|
{
|
|
public:
|
|
// System.Security.SecurityElement Mono.Xml.SecurityParser::root
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * ___root_12;
|
|
// System.Security.SecurityElement Mono.Xml.SecurityParser::current
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * ___current_13;
|
|
// System.Collections.Stack Mono.Xml.SecurityParser::stack
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ___stack_14;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_root_12() { return static_cast<int32_t>(offsetof(SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714, ___root_12)); }
|
|
inline SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * get_root_12() const { return ___root_12; }
|
|
inline SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 ** get_address_of_root_12() { return &___root_12; }
|
|
inline void set_root_12(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * value)
|
|
{
|
|
___root_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___root_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_current_13() { return static_cast<int32_t>(offsetof(SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714, ___current_13)); }
|
|
inline SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * get_current_13() const { return ___current_13; }
|
|
inline SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 ** get_address_of_current_13() { return &___current_13; }
|
|
inline void set_current_13(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * value)
|
|
{
|
|
___current_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___current_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_stack_14() { return static_cast<int32_t>(offsetof(SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714, ___stack_14)); }
|
|
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * get_stack_14() const { return ___stack_14; }
|
|
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 ** get_address_of_stack_14() { return &___stack_14; }
|
|
inline void set_stack_14(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * value)
|
|
{
|
|
___stack_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___stack_14), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Array_SorterGenericArray
|
|
struct SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891
|
|
{
|
|
public:
|
|
// System.Array System.Array_SorterGenericArray::keys
|
|
RuntimeArray * ___keys_0;
|
|
// System.Array System.Array_SorterGenericArray::items
|
|
RuntimeArray * ___items_1;
|
|
// System.Collections.IComparer System.Array_SorterGenericArray::comparer
|
|
RuntimeObject* ___comparer_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_keys_0() { return static_cast<int32_t>(offsetof(SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891, ___keys_0)); }
|
|
inline RuntimeArray * get_keys_0() const { return ___keys_0; }
|
|
inline RuntimeArray ** get_address_of_keys_0() { return &___keys_0; }
|
|
inline void set_keys_0(RuntimeArray * value)
|
|
{
|
|
___keys_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___keys_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_items_1() { return static_cast<int32_t>(offsetof(SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891, ___items_1)); }
|
|
inline RuntimeArray * get_items_1() const { return ___items_1; }
|
|
inline RuntimeArray ** get_address_of_items_1() { return &___items_1; }
|
|
inline void set_items_1(RuntimeArray * value)
|
|
{
|
|
___items_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___items_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_comparer_2() { return static_cast<int32_t>(offsetof(SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891, ___comparer_2)); }
|
|
inline RuntimeObject* get_comparer_2() const { return ___comparer_2; }
|
|
inline RuntimeObject** get_address_of_comparer_2() { return &___comparer_2; }
|
|
inline void set_comparer_2(RuntimeObject* value)
|
|
{
|
|
___comparer_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___comparer_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Array/SorterGenericArray
|
|
struct SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_pinvoke
|
|
{
|
|
RuntimeArray * ___keys_0;
|
|
RuntimeArray * ___items_1;
|
|
RuntimeObject* ___comparer_2;
|
|
};
|
|
// Native definition for COM marshalling of System.Array/SorterGenericArray
|
|
struct SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_com
|
|
{
|
|
RuntimeArray * ___keys_0;
|
|
RuntimeArray * ___items_1;
|
|
RuntimeObject* ___comparer_2;
|
|
};
|
|
|
|
// System.Array_SorterObjectArray
|
|
struct SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4
|
|
{
|
|
public:
|
|
// System.Object[] System.Array_SorterObjectArray::keys
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys_0;
|
|
// System.Object[] System.Array_SorterObjectArray::items
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items_1;
|
|
// System.Collections.IComparer System.Array_SorterObjectArray::comparer
|
|
RuntimeObject* ___comparer_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_keys_0() { return static_cast<int32_t>(offsetof(SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4, ___keys_0)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_keys_0() const { return ___keys_0; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_keys_0() { return &___keys_0; }
|
|
inline void set_keys_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
___keys_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___keys_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_items_1() { return static_cast<int32_t>(offsetof(SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4, ___items_1)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_items_1() const { return ___items_1; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_items_1() { return &___items_1; }
|
|
inline void set_items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
___items_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___items_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_comparer_2() { return static_cast<int32_t>(offsetof(SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4, ___comparer_2)); }
|
|
inline RuntimeObject* get_comparer_2() const { return ___comparer_2; }
|
|
inline RuntimeObject** get_address_of_comparer_2() { return &___comparer_2; }
|
|
inline void set_comparer_2(RuntimeObject* value)
|
|
{
|
|
___comparer_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___comparer_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Array/SorterObjectArray
|
|
struct SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_pinvoke
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys_0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items_1;
|
|
RuntimeObject* ___comparer_2;
|
|
};
|
|
// Native definition for COM marshalling of System.Array/SorterObjectArray
|
|
struct SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_com
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys_0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items_1;
|
|
RuntimeObject* ___comparer_2;
|
|
};
|
|
|
|
// System.AssemblyLoadEventArgs
|
|
struct AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
|
|
{
|
|
public:
|
|
// System.Reflection.Assembly System.AssemblyLoadEventArgs::m_loadedAssembly
|
|
Assembly_t * ___m_loadedAssembly_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_loadedAssembly_1() { return static_cast<int32_t>(offsetof(AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8, ___m_loadedAssembly_1)); }
|
|
inline Assembly_t * get_m_loadedAssembly_1() const { return ___m_loadedAssembly_1; }
|
|
inline Assembly_t ** get_address_of_m_loadedAssembly_1() { return &___m_loadedAssembly_1; }
|
|
inline void set_m_loadedAssembly_1(Assembly_t * value)
|
|
{
|
|
___m_loadedAssembly_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_loadedAssembly_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Boolean
|
|
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
|
|
{
|
|
public:
|
|
// System.Boolean System.Boolean::m_value
|
|
bool ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
|
|
inline bool get_m_value_0() const { return ___m_value_0; }
|
|
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(bool value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
|
|
{
|
|
public:
|
|
// System.String System.Boolean::TrueString
|
|
String_t* ___TrueString_5;
|
|
// System.String System.Boolean::FalseString
|
|
String_t* ___FalseString_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
|
|
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
|
|
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
|
|
inline void set_TrueString_5(String_t* value)
|
|
{
|
|
___TrueString_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
|
|
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
|
|
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
|
|
inline void set_FalseString_6(String_t* value)
|
|
{
|
|
___FalseString_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Byte
|
|
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
|
|
{
|
|
public:
|
|
// System.Byte System.Byte::m_value
|
|
uint8_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
|
|
inline uint8_t get_m_value_0() const { return ___m_value_0; }
|
|
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(uint8_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.CLSCompliantAttribute
|
|
struct CLSCompliantAttribute_tDC4B8ADF0962285DBD3D530871274CBA04E791E6 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.CLSCompliantAttribute::m_compliant
|
|
bool ___m_compliant_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_compliant_0() { return static_cast<int32_t>(offsetof(CLSCompliantAttribute_tDC4B8ADF0962285DBD3D530871274CBA04E791E6, ___m_compliant_0)); }
|
|
inline bool get_m_compliant_0() const { return ___m_compliant_0; }
|
|
inline bool* get_address_of_m_compliant_0() { return &___m_compliant_0; }
|
|
inline void set_m_compliant_0(bool value)
|
|
{
|
|
___m_compliant_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Char
|
|
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
|
|
{
|
|
public:
|
|
// System.Char System.Char::m_value
|
|
Il2CppChar ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); }
|
|
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
|
|
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(Il2CppChar value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
|
|
{
|
|
public:
|
|
// System.Byte[] System.Char::categoryForLatin1
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
|
|
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___categoryForLatin1_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.DateTime
|
|
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132
|
|
{
|
|
public:
|
|
// System.UInt64 System.DateTime::dateData
|
|
uint64_t ___dateData_44;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); }
|
|
inline uint64_t get_dateData_44() const { return ___dateData_44; }
|
|
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
|
|
inline void set_dateData_44(uint64_t value)
|
|
{
|
|
___dateData_44 = value;
|
|
}
|
|
};
|
|
|
|
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields
|
|
{
|
|
public:
|
|
// System.Int32[] System.DateTime::DaysToMonth365
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29;
|
|
// System.Int32[] System.DateTime::DaysToMonth366
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30;
|
|
// System.DateTime System.DateTime::MinValue
|
|
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31;
|
|
// System.DateTime System.DateTime::MaxValue
|
|
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
|
|
inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
___DaysToMonth365_29 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
|
|
inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
___DaysToMonth366_30 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); }
|
|
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; }
|
|
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; }
|
|
inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
|
|
{
|
|
___MinValue_31 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); }
|
|
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; }
|
|
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
|
|
inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
|
|
{
|
|
___MaxValue_32 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Decimal
|
|
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8
|
|
{
|
|
public:
|
|
// System.Int32 System.Decimal::flags
|
|
int32_t ___flags_14;
|
|
// System.Int32 System.Decimal::hi
|
|
int32_t ___hi_15;
|
|
// System.Int32 System.Decimal::lo
|
|
int32_t ___lo_16;
|
|
// System.Int32 System.Decimal::mid
|
|
int32_t ___mid_17;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); }
|
|
inline int32_t get_flags_14() const { return ___flags_14; }
|
|
inline int32_t* get_address_of_flags_14() { return &___flags_14; }
|
|
inline void set_flags_14(int32_t value)
|
|
{
|
|
___flags_14 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); }
|
|
inline int32_t get_hi_15() const { return ___hi_15; }
|
|
inline int32_t* get_address_of_hi_15() { return &___hi_15; }
|
|
inline void set_hi_15(int32_t value)
|
|
{
|
|
___hi_15 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); }
|
|
inline int32_t get_lo_16() const { return ___lo_16; }
|
|
inline int32_t* get_address_of_lo_16() { return &___lo_16; }
|
|
inline void set_lo_16(int32_t value)
|
|
{
|
|
___lo_16 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); }
|
|
inline int32_t get_mid_17() const { return ___mid_17; }
|
|
inline int32_t* get_address_of_mid_17() { return &___mid_17; }
|
|
inline void set_mid_17(int32_t value)
|
|
{
|
|
___mid_17 = value;
|
|
}
|
|
};
|
|
|
|
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields
|
|
{
|
|
public:
|
|
// System.UInt32[] System.Decimal::Powers10
|
|
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6;
|
|
// System.Decimal System.Decimal::Zero
|
|
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7;
|
|
// System.Decimal System.Decimal::One
|
|
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8;
|
|
// System.Decimal System.Decimal::MinusOne
|
|
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9;
|
|
// System.Decimal System.Decimal::MaxValue
|
|
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10;
|
|
// System.Decimal System.Decimal::MinValue
|
|
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11;
|
|
// System.Decimal System.Decimal::NearNegativeZero
|
|
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12;
|
|
// System.Decimal System.Decimal::NearPositiveZero
|
|
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); }
|
|
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; }
|
|
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; }
|
|
inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
|
|
{
|
|
___Powers10_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; }
|
|
inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
|
|
{
|
|
___Zero_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; }
|
|
inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
|
|
{
|
|
___One_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
|
|
inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
|
|
{
|
|
___MinusOne_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
|
|
inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
|
|
{
|
|
___MaxValue_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; }
|
|
inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
|
|
{
|
|
___MinValue_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
|
|
inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
|
|
{
|
|
___NearNegativeZero_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
|
|
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
|
|
inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
|
|
{
|
|
___NearPositiveZero_13 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Double
|
|
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409
|
|
{
|
|
public:
|
|
// System.Double System.Double::m_value
|
|
double ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); }
|
|
inline double get_m_value_0() const { return ___m_value_0; }
|
|
inline double* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(double value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields
|
|
{
|
|
public:
|
|
// System.Double System.Double::NegativeZero
|
|
double ___NegativeZero_7;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); }
|
|
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
|
|
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
|
|
inline void set_NegativeZero_7(double value)
|
|
{
|
|
___NegativeZero_7 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Enum
|
|
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
|
|
{
|
|
public:
|
|
// System.Char[] System.Enum::enumSeperatorCharArray
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
|
|
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___enumSeperatorCharArray_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Enum
|
|
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.Enum
|
|
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
|
|
{
|
|
};
|
|
|
|
// System.Guid
|
|
struct Guid_t
|
|
{
|
|
public:
|
|
// System.Int32 System.Guid::_a
|
|
int32_t ____a_1;
|
|
// System.Int16 System.Guid::_b
|
|
int16_t ____b_2;
|
|
// System.Int16 System.Guid::_c
|
|
int16_t ____c_3;
|
|
// System.Byte System.Guid::_d
|
|
uint8_t ____d_4;
|
|
// System.Byte System.Guid::_e
|
|
uint8_t ____e_5;
|
|
// System.Byte System.Guid::_f
|
|
uint8_t ____f_6;
|
|
// System.Byte System.Guid::_g
|
|
uint8_t ____g_7;
|
|
// System.Byte System.Guid::_h
|
|
uint8_t ____h_8;
|
|
// System.Byte System.Guid::_i
|
|
uint8_t ____i_9;
|
|
// System.Byte System.Guid::_j
|
|
uint8_t ____j_10;
|
|
// System.Byte System.Guid::_k
|
|
uint8_t ____k_11;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
|
|
inline int32_t get__a_1() const { return ____a_1; }
|
|
inline int32_t* get_address_of__a_1() { return &____a_1; }
|
|
inline void set__a_1(int32_t value)
|
|
{
|
|
____a_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
|
|
inline int16_t get__b_2() const { return ____b_2; }
|
|
inline int16_t* get_address_of__b_2() { return &____b_2; }
|
|
inline void set__b_2(int16_t value)
|
|
{
|
|
____b_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
|
|
inline int16_t get__c_3() const { return ____c_3; }
|
|
inline int16_t* get_address_of__c_3() { return &____c_3; }
|
|
inline void set__c_3(int16_t value)
|
|
{
|
|
____c_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
|
|
inline uint8_t get__d_4() const { return ____d_4; }
|
|
inline uint8_t* get_address_of__d_4() { return &____d_4; }
|
|
inline void set__d_4(uint8_t value)
|
|
{
|
|
____d_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
|
|
inline uint8_t get__e_5() const { return ____e_5; }
|
|
inline uint8_t* get_address_of__e_5() { return &____e_5; }
|
|
inline void set__e_5(uint8_t value)
|
|
{
|
|
____e_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
|
|
inline uint8_t get__f_6() const { return ____f_6; }
|
|
inline uint8_t* get_address_of__f_6() { return &____f_6; }
|
|
inline void set__f_6(uint8_t value)
|
|
{
|
|
____f_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
|
|
inline uint8_t get__g_7() const { return ____g_7; }
|
|
inline uint8_t* get_address_of__g_7() { return &____g_7; }
|
|
inline void set__g_7(uint8_t value)
|
|
{
|
|
____g_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
|
|
inline uint8_t get__h_8() const { return ____h_8; }
|
|
inline uint8_t* get_address_of__h_8() { return &____h_8; }
|
|
inline void set__h_8(uint8_t value)
|
|
{
|
|
____h_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
|
|
inline uint8_t get__i_9() const { return ____i_9; }
|
|
inline uint8_t* get_address_of__i_9() { return &____i_9; }
|
|
inline void set__i_9(uint8_t value)
|
|
{
|
|
____i_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
|
|
inline uint8_t get__j_10() const { return ____j_10; }
|
|
inline uint8_t* get_address_of__j_10() { return &____j_10; }
|
|
inline void set__j_10(uint8_t value)
|
|
{
|
|
____j_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
|
|
inline uint8_t get__k_11() const { return ____k_11; }
|
|
inline uint8_t* get_address_of__k_11() { return &____k_11; }
|
|
inline void set__k_11(uint8_t value)
|
|
{
|
|
____k_11 = value;
|
|
}
|
|
};
|
|
|
|
struct Guid_t_StaticFields
|
|
{
|
|
public:
|
|
// System.Guid System.Guid::Empty
|
|
Guid_t ___Empty_0;
|
|
// System.Object System.Guid::_rngAccess
|
|
RuntimeObject * ____rngAccess_12;
|
|
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
|
|
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
|
|
inline Guid_t get_Empty_0() const { return ___Empty_0; }
|
|
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
|
|
inline void set_Empty_0(Guid_t value)
|
|
{
|
|
___Empty_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
|
|
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
|
|
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
|
|
inline void set__rngAccess_12(RuntimeObject * value)
|
|
{
|
|
____rngAccess_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
|
|
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; }
|
|
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; }
|
|
inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
|
|
{
|
|
____rng_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.Stream
|
|
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
|
|
{
|
|
public:
|
|
// System.IO.Stream_ReadWriteTask System.IO.Stream::_activeReadWriteTask
|
|
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_2;
|
|
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
|
|
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_2)); }
|
|
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; }
|
|
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; }
|
|
inline void set__activeReadWriteTask_2(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value)
|
|
{
|
|
____activeReadWriteTask_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__asyncActiveSemaphore_3() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_3)); }
|
|
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; }
|
|
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; }
|
|
inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value)
|
|
{
|
|
____asyncActiveSemaphore_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields
|
|
{
|
|
public:
|
|
// System.IO.Stream System.IO.Stream::Null
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); }
|
|
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; }
|
|
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; }
|
|
inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
|
|
{
|
|
___Null_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.TextReader
|
|
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields
|
|
{
|
|
public:
|
|
// System.Func`2<System.Object,System.String> System.IO.TextReader::_ReadLineDelegate
|
|
Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * ____ReadLineDelegate_1;
|
|
// System.Func`2<System.Object,System.Int32> System.IO.TextReader::_ReadDelegate
|
|
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ____ReadDelegate_2;
|
|
// System.IO.TextReader System.IO.TextReader::Null
|
|
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___Null_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadLineDelegate_1)); }
|
|
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; }
|
|
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; }
|
|
inline void set__ReadLineDelegate_1(Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * value)
|
|
{
|
|
____ReadLineDelegate_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____ReadLineDelegate_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadDelegate_2)); }
|
|
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get__ReadDelegate_2() const { return ____ReadDelegate_2; }
|
|
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; }
|
|
inline void set__ReadDelegate_2(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value)
|
|
{
|
|
____ReadDelegate_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____ReadDelegate_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ___Null_3)); }
|
|
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_Null_3() const { return ___Null_3; }
|
|
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_Null_3() { return &___Null_3; }
|
|
inline void set_Null_3(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
|
|
{
|
|
___Null_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Int16
|
|
struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D
|
|
{
|
|
public:
|
|
// System.Int16 System.Int16::m_value
|
|
int16_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); }
|
|
inline int16_t get_m_value_0() const { return ___m_value_0; }
|
|
inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(int16_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Int32
|
|
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
|
|
{
|
|
public:
|
|
// System.Int32 System.Int32::m_value
|
|
int32_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
|
|
inline int32_t get_m_value_0() const { return ___m_value_0; }
|
|
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(int32_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Int64
|
|
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
|
|
{
|
|
public:
|
|
// System.Int64 System.Int64::m_value
|
|
int64_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
|
|
inline int64_t get_m_value_0() const { return ___m_value_0; }
|
|
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(int64_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.IntPtr
|
|
struct IntPtr_t
|
|
{
|
|
public:
|
|
// System.Void* System.IntPtr::m_value
|
|
void* ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
|
|
inline void* get_m_value_0() const { return ___m_value_0; }
|
|
inline void** get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(void* value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
public:
|
|
// System.IntPtr System.IntPtr::Zero
|
|
intptr_t ___Zero_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
|
|
inline intptr_t get_Zero_1() const { return ___Zero_1; }
|
|
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
|
|
inline void set_Zero_1(intptr_t value)
|
|
{
|
|
___Zero_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Nullable`1<System.Boolean>
|
|
struct Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793
|
|
{
|
|
public:
|
|
// T System.Nullable`1::value
|
|
bool ___value_0;
|
|
// System.Boolean System.Nullable`1::has_value
|
|
bool ___has_value_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___value_0)); }
|
|
inline bool get_value_0() const { return ___value_0; }
|
|
inline bool* get_address_of_value_0() { return &___value_0; }
|
|
inline void set_value_0(bool value)
|
|
{
|
|
___value_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___has_value_1)); }
|
|
inline bool get_has_value_1() const { return ___has_value_1; }
|
|
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
|
|
inline void set_has_value_1(bool value)
|
|
{
|
|
___has_value_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.EventInfo
|
|
struct EventInfo_t : public MemberInfo_t
|
|
{
|
|
public:
|
|
// System.Reflection.EventInfo_AddEventAdapter System.Reflection.EventInfo::cached_add_event
|
|
AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * ___cached_add_event_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_cached_add_event_0() { return static_cast<int32_t>(offsetof(EventInfo_t, ___cached_add_event_0)); }
|
|
inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * get_cached_add_event_0() const { return ___cached_add_event_0; }
|
|
inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B ** get_address_of_cached_add_event_0() { return &___cached_add_event_0; }
|
|
inline void set_cached_add_event_0(AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * value)
|
|
{
|
|
___cached_add_event_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___cached_add_event_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.FieldInfo
|
|
struct FieldInfo_t : public MemberInfo_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.MethodBase
|
|
struct MethodBase_t : public MemberInfo_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.PropertyInfo
|
|
struct PropertyInfo_t : public MemberInfo_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ResolveEventArgs
|
|
struct ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
|
|
{
|
|
public:
|
|
// System.String System.ResolveEventArgs::m_Name
|
|
String_t* ___m_Name_1;
|
|
// System.Reflection.Assembly System.ResolveEventArgs::m_Requesting
|
|
Assembly_t * ___m_Requesting_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_Name_1() { return static_cast<int32_t>(offsetof(ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D, ___m_Name_1)); }
|
|
inline String_t* get_m_Name_1() const { return ___m_Name_1; }
|
|
inline String_t** get_address_of_m_Name_1() { return &___m_Name_1; }
|
|
inline void set_m_Name_1(String_t* value)
|
|
{
|
|
___m_Name_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_Requesting_2() { return static_cast<int32_t>(offsetof(ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D, ___m_Requesting_2)); }
|
|
inline Assembly_t * get_m_Requesting_2() const { return ___m_Requesting_2; }
|
|
inline Assembly_t ** get_address_of_m_Requesting_2() { return &___m_Requesting_2; }
|
|
inline void set_m_Requesting_2(Assembly_t * value)
|
|
{
|
|
___m_Requesting_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_Requesting_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Runtime.Remoting.Messaging.CADMethodCallMessage
|
|
struct CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 : public CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B
|
|
{
|
|
public:
|
|
// System.String System.Runtime.Remoting.Messaging.CADMethodCallMessage::_uri
|
|
String_t* ____uri_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__uri_5() { return static_cast<int32_t>(offsetof(CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8, ____uri_5)); }
|
|
inline String_t* get__uri_5() const { return ____uri_5; }
|
|
inline String_t** get_address_of__uri_5() { return &____uri_5; }
|
|
inline void set__uri_5(String_t* value)
|
|
{
|
|
____uri_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____uri_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Runtime.Remoting.Messaging.CADMethodReturnMessage
|
|
struct CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C : public CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B
|
|
{
|
|
public:
|
|
// System.Object System.Runtime.Remoting.Messaging.CADMethodReturnMessage::_returnValue
|
|
RuntimeObject * ____returnValue_5;
|
|
// System.Runtime.Remoting.Messaging.CADArgHolder System.Runtime.Remoting.Messaging.CADMethodReturnMessage::_exception
|
|
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * ____exception_6;
|
|
// System.Type[] System.Runtime.Remoting.Messaging.CADMethodReturnMessage::_sig
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____sig_7;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__returnValue_5() { return static_cast<int32_t>(offsetof(CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C, ____returnValue_5)); }
|
|
inline RuntimeObject * get__returnValue_5() const { return ____returnValue_5; }
|
|
inline RuntimeObject ** get_address_of__returnValue_5() { return &____returnValue_5; }
|
|
inline void set__returnValue_5(RuntimeObject * value)
|
|
{
|
|
____returnValue_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____returnValue_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__exception_6() { return static_cast<int32_t>(offsetof(CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C, ____exception_6)); }
|
|
inline CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * get__exception_6() const { return ____exception_6; }
|
|
inline CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A ** get_address_of__exception_6() { return &____exception_6; }
|
|
inline void set__exception_6(CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * value)
|
|
{
|
|
____exception_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____exception_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__sig_7() { return static_cast<int32_t>(offsetof(CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C, ____sig_7)); }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__sig_7() const { return ____sig_7; }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__sig_7() { return &____sig_7; }
|
|
inline void set__sig_7(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
|
|
{
|
|
____sig_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____sig_7), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.SByte
|
|
struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF
|
|
{
|
|
public:
|
|
// System.SByte System.SByte::m_value
|
|
int8_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); }
|
|
inline int8_t get_m_value_0() const { return ___m_value_0; }
|
|
inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(int8_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Security.Cryptography.DSA
|
|
struct DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF : public AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Security.Cryptography.DSAParameters
|
|
struct DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6
|
|
{
|
|
public:
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::P
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___P_0;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::Q
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Q_1;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::G
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___G_2;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::Y
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Y_3;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::J
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___J_4;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::X
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___X_5;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::Seed
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Seed_6;
|
|
// System.Int32 System.Security.Cryptography.DSAParameters::Counter
|
|
int32_t ___Counter_7;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_P_0() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___P_0)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_P_0() const { return ___P_0; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_P_0() { return &___P_0; }
|
|
inline void set_P_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___P_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___P_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Q_1() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___Q_1)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Q_1() const { return ___Q_1; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Q_1() { return &___Q_1; }
|
|
inline void set_Q_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___Q_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Q_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_G_2() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___G_2)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_G_2() const { return ___G_2; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_G_2() { return &___G_2; }
|
|
inline void set_G_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___G_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___G_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Y_3() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___Y_3)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Y_3() const { return ___Y_3; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Y_3() { return &___Y_3; }
|
|
inline void set_Y_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___Y_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Y_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_J_4() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___J_4)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_J_4() const { return ___J_4; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_J_4() { return &___J_4; }
|
|
inline void set_J_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___J_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___J_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_X_5() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___X_5)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_X_5() const { return ___X_5; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_X_5() { return &___X_5; }
|
|
inline void set_X_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___X_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___X_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Seed_6() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___Seed_6)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Seed_6() const { return ___Seed_6; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Seed_6() { return &___Seed_6; }
|
|
inline void set_Seed_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___Seed_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Seed_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Counter_7() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___Counter_7)); }
|
|
inline int32_t get_Counter_7() const { return ___Counter_7; }
|
|
inline int32_t* get_address_of_Counter_7() { return &___Counter_7; }
|
|
inline void set_Counter_7(int32_t value)
|
|
{
|
|
___Counter_7 = value;
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Security.Cryptography.DSAParameters
|
|
struct DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6_marshaled_pinvoke
|
|
{
|
|
Il2CppSafeArray/*NONE*/* ___P_0;
|
|
Il2CppSafeArray/*NONE*/* ___Q_1;
|
|
Il2CppSafeArray/*NONE*/* ___G_2;
|
|
Il2CppSafeArray/*NONE*/* ___Y_3;
|
|
Il2CppSafeArray/*NONE*/* ___J_4;
|
|
Il2CppSafeArray/*NONE*/* ___X_5;
|
|
Il2CppSafeArray/*NONE*/* ___Seed_6;
|
|
int32_t ___Counter_7;
|
|
};
|
|
// Native definition for COM marshalling of System.Security.Cryptography.DSAParameters
|
|
struct DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6_marshaled_com
|
|
{
|
|
Il2CppSafeArray/*NONE*/* ___P_0;
|
|
Il2CppSafeArray/*NONE*/* ___Q_1;
|
|
Il2CppSafeArray/*NONE*/* ___G_2;
|
|
Il2CppSafeArray/*NONE*/* ___Y_3;
|
|
Il2CppSafeArray/*NONE*/* ___J_4;
|
|
Il2CppSafeArray/*NONE*/* ___X_5;
|
|
Il2CppSafeArray/*NONE*/* ___Seed_6;
|
|
int32_t ___Counter_7;
|
|
};
|
|
|
|
// System.Security.Cryptography.RSA
|
|
struct RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 : public AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Security.Cryptography.RSAParameters
|
|
struct RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717
|
|
{
|
|
public:
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::Exponent
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Exponent_0;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::Modulus
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Modulus_1;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::P
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___P_2;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::Q
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Q_3;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::DP
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___DP_4;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::DQ
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___DQ_5;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::InverseQ
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___InverseQ_6;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::D
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___D_7;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Exponent_0() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___Exponent_0)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Exponent_0() const { return ___Exponent_0; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Exponent_0() { return &___Exponent_0; }
|
|
inline void set_Exponent_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___Exponent_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Exponent_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Modulus_1() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___Modulus_1)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Modulus_1() const { return ___Modulus_1; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Modulus_1() { return &___Modulus_1; }
|
|
inline void set_Modulus_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___Modulus_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Modulus_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_P_2() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___P_2)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_P_2() const { return ___P_2; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_P_2() { return &___P_2; }
|
|
inline void set_P_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___P_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___P_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Q_3() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___Q_3)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Q_3() const { return ___Q_3; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Q_3() { return &___Q_3; }
|
|
inline void set_Q_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___Q_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Q_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DP_4() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___DP_4)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_DP_4() const { return ___DP_4; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_DP_4() { return &___DP_4; }
|
|
inline void set_DP_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___DP_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___DP_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DQ_5() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___DQ_5)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_DQ_5() const { return ___DQ_5; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_DQ_5() { return &___DQ_5; }
|
|
inline void set_DQ_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___DQ_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___DQ_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_InverseQ_6() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___InverseQ_6)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_InverseQ_6() const { return ___InverseQ_6; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_InverseQ_6() { return &___InverseQ_6; }
|
|
inline void set_InverseQ_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___InverseQ_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___InverseQ_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_D_7() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___D_7)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_D_7() const { return ___D_7; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_D_7() { return &___D_7; }
|
|
inline void set_D_7(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___D_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___D_7), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Security.Cryptography.RSAParameters
|
|
struct RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717_marshaled_pinvoke
|
|
{
|
|
Il2CppSafeArray/*NONE*/* ___Exponent_0;
|
|
Il2CppSafeArray/*NONE*/* ___Modulus_1;
|
|
Il2CppSafeArray/*NONE*/* ___P_2;
|
|
Il2CppSafeArray/*NONE*/* ___Q_3;
|
|
Il2CppSafeArray/*NONE*/* ___DP_4;
|
|
Il2CppSafeArray/*NONE*/* ___DQ_5;
|
|
Il2CppSafeArray/*NONE*/* ___InverseQ_6;
|
|
Il2CppSafeArray/*NONE*/* ___D_7;
|
|
};
|
|
// Native definition for COM marshalling of System.Security.Cryptography.RSAParameters
|
|
struct RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717_marshaled_com
|
|
{
|
|
Il2CppSafeArray/*NONE*/* ___Exponent_0;
|
|
Il2CppSafeArray/*NONE*/* ___Modulus_1;
|
|
Il2CppSafeArray/*NONE*/* ___P_2;
|
|
Il2CppSafeArray/*NONE*/* ___Q_3;
|
|
Il2CppSafeArray/*NONE*/* ___DP_4;
|
|
Il2CppSafeArray/*NONE*/* ___DQ_5;
|
|
Il2CppSafeArray/*NONE*/* ___InverseQ_6;
|
|
Il2CppSafeArray/*NONE*/* ___D_7;
|
|
};
|
|
|
|
// System.Single
|
|
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
|
|
{
|
|
public:
|
|
// System.Single System.Single::m_value
|
|
float ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
|
|
inline float get_m_value_0() const { return ___m_value_0; }
|
|
inline float* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(float value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.UInt16
|
|
struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E
|
|
{
|
|
public:
|
|
// System.UInt16 System.UInt16::m_value
|
|
uint16_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); }
|
|
inline uint16_t get_m_value_0() const { return ___m_value_0; }
|
|
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(uint16_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.UInt32
|
|
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
|
|
{
|
|
public:
|
|
// System.UInt32 System.UInt32::m_value
|
|
uint32_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); }
|
|
inline uint32_t get_m_value_0() const { return ___m_value_0; }
|
|
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(uint32_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.UInt64
|
|
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E
|
|
{
|
|
public:
|
|
// System.UInt64 System.UInt64::m_value
|
|
uint64_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); }
|
|
inline uint64_t get_m_value_0() const { return ___m_value_0; }
|
|
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(uint64_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.UIntPtr
|
|
struct UIntPtr_t
|
|
{
|
|
public:
|
|
// System.Void* System.UIntPtr::_pointer
|
|
void* ____pointer_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); }
|
|
inline void* get__pointer_1() const { return ____pointer_1; }
|
|
inline void** get_address_of__pointer_1() { return &____pointer_1; }
|
|
inline void set__pointer_1(void* value)
|
|
{
|
|
____pointer_1 = value;
|
|
}
|
|
};
|
|
|
|
struct UIntPtr_t_StaticFields
|
|
{
|
|
public:
|
|
// System.UIntPtr System.UIntPtr::Zero
|
|
uintptr_t ___Zero_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); }
|
|
inline uintptr_t get_Zero_0() const { return ___Zero_0; }
|
|
inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; }
|
|
inline void set_Zero_0(uintptr_t value)
|
|
{
|
|
___Zero_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Void
|
|
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// <PrivateImplementationDetails>
|
|
struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields
|
|
{
|
|
public:
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::0392525BCB01691D1F319D89F2C12BF93A478467
|
|
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___0392525BCB01691D1F319D89F2C12BF93A478467_0;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::0588059ACBD52F7EA2835882F977A9CF72EB9775
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___0588059ACBD52F7EA2835882F977A9CF72EB9775_1;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84 <PrivateImplementationDetails>::0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C
|
|
__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240 <PrivateImplementationDetails>::121EC59E23F7559B28D338D562528F6299C2DE22
|
|
__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 ___121EC59E23F7559B28D338D562528F6299C2DE22_3;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::12D04472A8285260EA12FD3813CDFA9F2D2B548C
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::13A35EF1A549297C70E2AD46045BBD2ECA17852D
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::1730F09044E91DB8371B849EFF5E6D17BDE4AED0
|
|
__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::1A84029C80CB5518379F199F53FF08A7B764F8FD
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___1A84029C80CB5518379F199F53FF08A7B764F8FD_7;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D4096 <PrivateImplementationDetails>::1AEF3D8DF416A46288C91C724CBF7B154D9E5BF3
|
|
__StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 ___1AEF3D8DF416A46288C91C724CBF7B154D9E5BF3_8;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2048 <PrivateImplementationDetails>::1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5
|
|
__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 ___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_9;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::1FE6CE411858B3D864679DE2139FB081F08BFACD
|
|
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___1FE6CE411858B3D864679DE2139FB081F08BFACD_10;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::235D99572263B22ADFEE10FDA0C25E12F4D94FFC
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_11;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::25420D0055076FA8D3E4DD96BC53AE24DE6E619F
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_12;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208 <PrivateImplementationDetails>::25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E
|
|
__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_13;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42 <PrivateImplementationDetails>::29C1A61550F0E3260E1953D4FAD71C256218EF40
|
|
__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 ___29C1A61550F0E3260E1953D4FAD71C256218EF40_14;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::2B33BEC8C30DFDC49DAFE20D3BDE19487850D717
|
|
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_15;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::2BA840FF6020B8FF623DBCB7188248CF853FAF4F
|
|
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_16;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2C840AFA48C27B9C05593E468C1232CA1CC74AFD
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_17;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::2D1DA5BB407F0C11C3B5116196C0C6374D932B20
|
|
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_18;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D14 <PrivateImplementationDetails>::2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130
|
|
__StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_19;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_20;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::320B018758ECE3752FFEDBAEB1A6DB67C80B9359
|
|
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_21;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::34476C29F6F81C989CFCA42F7C06E84C66236834
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___34476C29F6F81C989CFCA42F7C06E84C66236834_22;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382 <PrivateImplementationDetails>::35EED060772F2748D13B745DAEC8CD7BD3B87604
|
|
__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA ___35EED060772F2748D13B745DAEC8CD7BD3B87604_23;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38 <PrivateImplementationDetails>::375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3
|
|
__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_24;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450 <PrivateImplementationDetails>::379C06C9E702D31469C29033F0DD63931EB349F5
|
|
__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 ___379C06C9E702D31469C29033F0DD63931EB349F5_25;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::399BD13E240F33F808CA7940293D6EC4E6FD5A00
|
|
__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_26;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::39C9CE73C7B0619D409EF28344F687C1B5C130FE
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_27;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320 <PrivateImplementationDetails>::3C53AFB51FEC23491684C7BEDBC6D4E0F409F851
|
|
__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_28;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::3E3442C7396F3F2BB4C7348F4A2074C7DC677D68
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_29;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::3E823444D2DFECF0F90B436B88F02A533CB376F1
|
|
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___3E823444D2DFECF0F90B436B88F02A533CB376F1_30;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::3FE6C283BCF384FD2C8789880DFF59664E2AB4A1
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_31;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665 <PrivateImplementationDetails>::40981BAA39513E58B28DCF0103CC04DE2A0A0444
|
|
__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_32;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::40E7C49413D261F3F38AD3A870C0AC69C8BDA048
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_33;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::421EC7E82F2967DF6CA8C3605514DC6F29EE5845
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_34;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::433175D38B13FFE177FDD661A309F1B528B3F6E2
|
|
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___433175D38B13FFE177FDD661A309F1B528B3F6E2_35;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::46232052BC757E030490D851F265FB47FA100902
|
|
__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___46232052BC757E030490D851F265FB47FA100902_36;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::4858DB4AA76D3933F1CA9E6712D4FDB16903F628
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_37;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D48 <PrivateImplementationDetails>::4E3B533C39447AAEB59A8E48FABD7E15B5B5D195
|
|
__StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_38;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::4F7A8890F332B22B8DE0BD29D36FA7364748D76A
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_39;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::536422B321459B242ADED7240B7447E904E083E3
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___536422B321459B242ADED7240B7447E904E083E3_40;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080 <PrivateImplementationDetails>::5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3
|
|
__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_41;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::56DFA5053B3131883637F53219E7D88CCEF35949
|
|
__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___56DFA5053B3131883637F53219E7D88CCEF35949_42;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::57218C316B6921E2CD61027A2387EDC31A2D9471
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___57218C316B6921E2CD61027A2387EDC31A2D9471_43;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::57F320D62696EC99727E0FE2045A05F1289CC0C6
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___57F320D62696EC99727E0FE2045A05F1289CC0C6_44;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3
|
|
__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_45;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::5BBDF8058D4235C33F2E8DCF76004031B6187A2F
|
|
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_46;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288 <PrivateImplementationDetails>::5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF
|
|
__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_47;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::5BFE2819B4778217C56416C7585FF0E56EBACD89
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___5BFE2819B4778217C56416C7585FF0E56EBACD89_48;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128 <PrivateImplementationDetails>::609C0E8D8DA86A09D6013D301C86BA8782C16B8C
|
|
__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_49;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D48 <PrivateImplementationDetails>::62BAB0F245E66C3EB982CF5A7015F0A7C3382283
|
|
__StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A ___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_50;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2048 <PrivateImplementationDetails>::646036A65DECCD6835C914A46E6E44B729433B60
|
|
__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 ___646036A65DECCD6835C914A46E6E44B729433B60_51;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::65E32B4E150FD8D24B93B0D42A17F1DAD146162B
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_52;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::6770974FEF1E98B9C1864370E2B5B786EB0EA39E
|
|
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_53;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::67EEAD805D708D9AA4E14BF747E44CED801744F3
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___67EEAD805D708D9AA4E14BF747E44CED801744F3_54;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::6C71197D228427B2864C69B357FEF73D8C9D59DF
|
|
__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___6C71197D228427B2864C69B357FEF73D8C9D59DF_55;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::6CEE45445AFD150B047A5866FFA76AA651CDB7B7
|
|
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_56;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D9 <PrivateImplementationDetails>::6D49C9D487D7AD3491ECE08732D68A593CC2038D
|
|
__StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_57;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2048 <PrivateImplementationDetails>::6D797C11E1D4FB68B6570CF2A92B792433527065
|
|
__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 ___6D797C11E1D4FB68B6570CF2A92B792433527065_58;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3132 <PrivateImplementationDetails>::6E5DC824F803F8565AF31B42199DAE39FE7F4EA9
|
|
__StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_59;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::6FC754859E4EC74E447048364B216D825C6F8FE7
|
|
__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___6FC754859E4EC74E447048364B216D825C6F8FE7_60;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::704939CD172085D1295FCE3F1D92431D685D7AA2
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___704939CD172085D1295FCE3F1D92431D685D7AA2_61;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::7088AAE49F0627B72729078DE6E3182DDCF8ED99
|
|
__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_62;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::7341C933A70EAE383CC50C4B945ADB8E08F06737
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___7341C933A70EAE383CC50C4B945ADB8E08F06737_63;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::736D39815215889F11249D9958F6ED12D37B9F57
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___736D39815215889F11249D9958F6ED12D37B9F57_64;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D4096 <PrivateImplementationDetails>::7F42F2EDC974BE29B2746957416ED1AEFA605F47
|
|
__StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 ___7F42F2EDC974BE29B2746957416ED1AEFA605F47_65;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_66;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252 <PrivateImplementationDetails>::811A927B7DADD378BE60BBDE794B9277AA9B50EC
|
|
__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_67;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::81917F1E21F3C22B9F916994547A614FB03E968E
|
|
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___81917F1E21F3C22B9F916994547A614FB03E968E_68;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::823566DA642D6EA356E15585921F2A4CA23D6760
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___823566DA642D6EA356E15585921F2A4CA23D6760_69;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::82C2A59850B2E85BCE1A45A479537A384DF6098D
|
|
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___82C2A59850B2E85BCE1A45A479537A384DF6098D_70;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4
|
|
__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_71;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::86F4F563FA2C61798AE6238D789139739428463A
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___86F4F563FA2C61798AE6238D789139739428463A_72;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::871B9CF85DB352BAADF12BAE8F19857683E385AC
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___871B9CF85DB352BAADF12BAE8F19857683E385AC_73;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::89A040451C8CC5C8FB268BE44BDD74964C104155
|
|
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___89A040451C8CC5C8FB268BE44BDD74964C104155_74;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::8AEFB06C426E07A0A671A1E2488B4858D694A730
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___8AEFB06C426E07A0A671A1E2488B4858D694A730_75;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8CAA092E783257106251246FF5C97F88D28517A6
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8CAA092E783257106251246FF5C97F88D28517A6_76;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100 <PrivateImplementationDetails>::8D231DD55FE1AD7631BBD0905A17D5EB616C2154
|
|
__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_77;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8E10AC2F34545DFBBF3FCBC06055D797A8C99991
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_78;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::8F22C9ECE1331718CBD268A9BBFD2F5E451441E3
|
|
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___8F22C9ECE1331718CBD268A9BBFD2F5E451441E3_79;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D640 <PrivateImplementationDetails>::90A0542282A011472F94E97CEAE59F8B3B1A3291
|
|
__StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 ___90A0542282A011472F94E97CEAE59F8B3B1A3291_80;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::93A63E90605400F34B49F0EB3361D23C89164BDA
|
|
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___93A63E90605400F34B49F0EB3361D23C89164BDA_81;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::94841DD2F330CCB1089BF413E4FA9B04505152E2
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___94841DD2F330CCB1089BF413E4FA9B04505152E2_82;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::95264589E48F94B7857CFF398FB72A537E13EEE2
|
|
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___95264589E48F94B7857CFF398FB72A537E13EEE2_83;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::95C48758CAE1715783472FB073AB158AB8A0AB2A
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___95C48758CAE1715783472FB073AB158AB8A0AB2A_84;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::973417296623D8DC6961B09664E54039E44CA5D8
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___973417296623D8DC6961B09664E54039E44CA5D8_85;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::97FB30C84FF4A41CD4625B44B2940BFC8DB43003
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_86;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D4096 <PrivateImplementationDetails>::99E2E88877D14C7DDC4E957A0ED7079CA0E9EB24
|
|
__StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 ___99E2E88877D14C7DDC4E957A0ED7079CA0E9EB24_87;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5
|
|
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_88;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_89;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::A0074C15377C0C870B055927403EA9FA7A349D12
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___A0074C15377C0C870B055927403EA9FA7A349D12_90;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130 <PrivateImplementationDetails>::A1319B706116AB2C6D44483F60A7D0ACEA543396
|
|
__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F ___A1319B706116AB2C6D44483F60A7D0ACEA543396_91;
|
|
// System.Int64 <PrivateImplementationDetails>::A13AA52274D951A18029131A8DDECF76B569A15D
|
|
int64_t ___A13AA52274D951A18029131A8DDECF76B569A15D_92;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::A323DB0813C4D072957BA6FDA79D9776674CD06B
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___A323DB0813C4D072957BA6FDA79D9776674CD06B_93;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::A5444763673307F6828C748D4B9708CFC02B0959
|
|
__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___A5444763673307F6828C748D4B9708CFC02B0959_94;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::A6732F8E7FC23766AB329B492D6BF82E3B33233F
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_95;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::A705A106D95282BD15E13EEA6B0AF583FF786D83
|
|
__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___A705A106D95282BD15E13EEA6B0AF583FF786D83_96;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018 <PrivateImplementationDetails>::A8A491E4CED49AE0027560476C10D933CE70C8DF
|
|
__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 ___A8A491E4CED49AE0027560476C10D933CE70C8DF_97;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::AC791C4F39504D1184B73478943D0636258DA7B1
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___AC791C4F39504D1184B73478943D0636258DA7B1_98;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::AFCD4E1211233E99373A3367B23105A3D624B1F2
|
|
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___AFCD4E1211233E99373A3367B23105A3D624B1F2_99;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::B472ED77CB3B2A66D49D179F1EE2081B70A6AB61
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_100;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D
|
|
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_101;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF
|
|
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_102;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D4096 <PrivateImplementationDetails>::B6002BBF29B2704922EC3BBF0F9EE40ABF185D6B
|
|
__StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 ___B6002BBF29B2704922EC3BBF0F9EE40ABF185D6B_103;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998 <PrivateImplementationDetails>::B881DA88BE0B68D8A6B6B6893822586B8B2CFC45
|
|
__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_104;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162 <PrivateImplementationDetails>::B8864ACB9DD69E3D42151513C840AAE270BF21C8
|
|
__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_105;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360 <PrivateImplementationDetails>::B8F87834C3597B2EEF22BA6D3A392CC925636401
|
|
__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 ___B8F87834C3597B2EEF22BA6D3A392CC925636401_106;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::B9B670F134A59FB1107AF01A9FE8F8E3980B3093
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_107;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D20 <PrivateImplementationDetails>::BE1BDEC0AA74B4DCB079943E70528096CCA985F8
|
|
__StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_108;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::BEBC9ECC660A13EFC359BA3383411F698CFF25DB
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_109;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_110;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::BF477463CE2F5EF38FC4C644BBBF4DF109E7670A
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_111;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::BF5EB60806ECB74EE484105DD9D6F463BF994867
|
|
__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___BF5EB60806ECB74EE484105DD9D6F463BF994867_112;
|
|
// System.Int64 <PrivateImplementationDetails>::C1A1100642BA9685B30A84D97348484E14AA1865
|
|
int64_t ___C1A1100642BA9685B30A84D97348484E14AA1865_113;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::C6F364A0AD934EFED8909446C215752E565D77C1
|
|
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___C6F364A0AD934EFED8909446C215752E565D77C1_114;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::CE5835130F5277F63D716FC9115526B0AC68FFAD
|
|
__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___CE5835130F5277F63D716FC9115526B0AC68FFAD_115;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::CE93C35B755802BC4B3D180716B048FC61701EF7
|
|
__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___CE93C35B755802BC4B3D180716B048FC61701EF7_116;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::CF0B42666EF5E37EDEA0AB8E173E42C196D03814
|
|
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_117;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7
|
|
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_118;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::D117188BE8D4609C0D531C51B0BB911A4219DEBE
|
|
__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_119;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE
|
|
__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_120;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::D2C5BAE967587C6F3D9F2C4551911E0575A1101F
|
|
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_121;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D82 <PrivateImplementationDetails>::D76478B994B312CD022DCA207AA2254880D2FCC9
|
|
__StaticArrayInitTypeSizeU3D82_tFF649C1155A9721BEFA144DC346A162E7B138F3B ___D76478B994B312CD022DCA207AA2254880D2FCC9_122;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636
|
|
__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_123;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::DA19DB47B583EFCF7825D2E39D661D2354F28219
|
|
__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___DA19DB47B583EFCF7825D2E39D661D2354F28219_124;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D56 <PrivateImplementationDetails>::DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82
|
|
__StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 ___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_125;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::DD3AEFEADB1CD615F3017763F1568179FEE640B0
|
|
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_126;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::E1827270A5FE1C85F5352A66FD87BA747213D006
|
|
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___E1827270A5FE1C85F5352A66FD87BA747213D006_127;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::E45BAB43F7D5D038672B3E3431F92E34A7AF2571
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_128;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::E75835D001C843F156FBA01B001DFE1B8029AC17
|
|
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___E75835D001C843F156FBA01B001DFE1B8029AC17_129;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::E92B39D8233061927D9ACDE54665E68E7535635A
|
|
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___E92B39D8233061927D9ACDE54665E68E7535635A_130;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::EA9506959484C55CFE0C139C624DF6060E285866
|
|
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___EA9506959484C55CFE0C139C624DF6060E285866_131;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262 <PrivateImplementationDetails>::EB5E9A80A40096AB74D2E226650C7258D7BC5E9D
|
|
__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_132;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::EBF68F411848D603D059DFDEA2321C5A5EA78044
|
|
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___EBF68F411848D603D059DFDEA2321C5A5EA78044_133;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11
|
|
__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_134;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::EC83FB16C20052BEE2B4025159BC2ED45C9C70C3
|
|
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_135;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::EC89C317EA2BF49A70EFF5E89C691E34733D7C37
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_136;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::F06E829E62F3AFBC045D064E10A4F5DF7C969612
|
|
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_137;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614 <PrivateImplementationDetails>::F073AA332018FDA0D572E99448FFF1D6422BD520
|
|
__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 ___F073AA332018FDA0D572E99448FFF1D6422BD520_138;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::F34B0E10653402E8F788F8BC3F7CD7090928A429
|
|
__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___F34B0E10653402E8F788F8BC3F7CD7090928A429_139;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::F37E34BEADB04F34FCC31078A59F49856CA83D5B
|
|
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_140;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94 <PrivateImplementationDetails>::F512A9ABF88066AAEB92684F95CC05D8101B462B
|
|
__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 ___F512A9ABF88066AAEB92684F95CC05D8101B462B_141;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::F8FAABB821300AA500C2CEC6091B3782A7FB44A4
|
|
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_142;
|
|
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350 <PrivateImplementationDetails>::FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B
|
|
__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_143;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_U30392525BCB01691D1F319D89F2C12BF93A478467_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0392525BCB01691D1F319D89F2C12BF93A478467_0)); }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_U30392525BCB01691D1F319D89F2C12BF93A478467_0() const { return ___0392525BCB01691D1F319D89F2C12BF93A478467_0; }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_U30392525BCB01691D1F319D89F2C12BF93A478467_0() { return &___0392525BCB01691D1F319D89F2C12BF93A478467_0; }
|
|
inline void set_U30392525BCB01691D1F319D89F2C12BF93A478467_0(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
|
|
{
|
|
___0392525BCB01691D1F319D89F2C12BF93A478467_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0588059ACBD52F7EA2835882F977A9CF72EB9775_1)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1() const { return ___0588059ACBD52F7EA2835882F977A9CF72EB9775_1; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1() { return &___0588059ACBD52F7EA2835882F977A9CF72EB9775_1; }
|
|
inline void set_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___0588059ACBD52F7EA2835882F977A9CF72EB9775_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2)); }
|
|
inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A get_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2() const { return ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2; }
|
|
inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A * get_address_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2() { return &___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2; }
|
|
inline void set_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2(__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A value)
|
|
{
|
|
___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___121EC59E23F7559B28D338D562528F6299C2DE22_3)); }
|
|
inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 get_U3121EC59E23F7559B28D338D562528F6299C2DE22_3() const { return ___121EC59E23F7559B28D338D562528F6299C2DE22_3; }
|
|
inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 * get_address_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_3() { return &___121EC59E23F7559B28D338D562528F6299C2DE22_3; }
|
|
inline void set_U3121EC59E23F7559B28D338D562528F6299C2DE22_3(__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 value)
|
|
{
|
|
___121EC59E23F7559B28D338D562528F6299C2DE22_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4() const { return ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4() { return &___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4; }
|
|
inline void set_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5() const { return ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5() { return &___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5; }
|
|
inline void set_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6)); }
|
|
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6() const { return ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6; }
|
|
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6() { return &___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6; }
|
|
inline void set_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value)
|
|
{
|
|
___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1A84029C80CB5518379F199F53FF08A7B764F8FD_7)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7() const { return ___1A84029C80CB5518379F199F53FF08A7B764F8FD_7; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7() { return &___1A84029C80CB5518379F199F53FF08A7B764F8FD_7; }
|
|
inline void set_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___1A84029C80CB5518379F199F53FF08A7B764F8FD_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U31AEF3D8DF416A46288C91C724CBF7B154D9E5BF3_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1AEF3D8DF416A46288C91C724CBF7B154D9E5BF3_8)); }
|
|
inline __StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 get_U31AEF3D8DF416A46288C91C724CBF7B154D9E5BF3_8() const { return ___1AEF3D8DF416A46288C91C724CBF7B154D9E5BF3_8; }
|
|
inline __StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 * get_address_of_U31AEF3D8DF416A46288C91C724CBF7B154D9E5BF3_8() { return &___1AEF3D8DF416A46288C91C724CBF7B154D9E5BF3_8; }
|
|
inline void set_U31AEF3D8DF416A46288C91C724CBF7B154D9E5BF3_8(__StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 value)
|
|
{
|
|
___1AEF3D8DF416A46288C91C724CBF7B154D9E5BF3_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_9)); }
|
|
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 get_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_9() const { return ___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_9; }
|
|
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 * get_address_of_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_9() { return &___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_9; }
|
|
inline void set_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_9(__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 value)
|
|
{
|
|
___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1FE6CE411858B3D864679DE2139FB081F08BFACD_10)); }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U31FE6CE411858B3D864679DE2139FB081F08BFACD_10() const { return ___1FE6CE411858B3D864679DE2139FB081F08BFACD_10; }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_10() { return &___1FE6CE411858B3D864679DE2139FB081F08BFACD_10; }
|
|
inline void set_U31FE6CE411858B3D864679DE2139FB081F08BFACD_10(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
|
|
{
|
|
___1FE6CE411858B3D864679DE2139FB081F08BFACD_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_11)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_11() const { return ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_11; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_11() { return &___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_11; }
|
|
inline void set_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_11(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_12)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_12() const { return ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_12; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_12() { return &___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_12; }
|
|
inline void set_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_12(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_13)); }
|
|
inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD get_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_13() const { return ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_13; }
|
|
inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD * get_address_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_13() { return &___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_13; }
|
|
inline void set_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_13(__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD value)
|
|
{
|
|
___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_13 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___29C1A61550F0E3260E1953D4FAD71C256218EF40_14)); }
|
|
inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 get_U329C1A61550F0E3260E1953D4FAD71C256218EF40_14() const { return ___29C1A61550F0E3260E1953D4FAD71C256218EF40_14; }
|
|
inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 * get_address_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_14() { return &___29C1A61550F0E3260E1953D4FAD71C256218EF40_14; }
|
|
inline void set_U329C1A61550F0E3260E1953D4FAD71C256218EF40_14(__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 value)
|
|
{
|
|
___29C1A61550F0E3260E1953D4FAD71C256218EF40_14 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_15)); }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_15() const { return ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_15; }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_15() { return &___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_15; }
|
|
inline void set_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_15(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
|
|
{
|
|
___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_15 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_16() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_16)); }
|
|
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_16() const { return ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_16; }
|
|
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_16() { return &___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_16; }
|
|
inline void set_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_16(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
|
|
{
|
|
___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_16 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_17() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_17)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_17() const { return ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_17; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_17() { return &___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_17; }
|
|
inline void set_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_17(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_17 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_18() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_18)); }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_18() const { return ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_18; }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_18() { return &___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_18; }
|
|
inline void set_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_18(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
|
|
{
|
|
___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_18 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_19() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_19)); }
|
|
inline __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 get_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_19() const { return ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_19; }
|
|
inline __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 * get_address_of_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_19() { return &___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_19; }
|
|
inline void set_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_19(__StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 value)
|
|
{
|
|
___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_19 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_20() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_20)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_20() const { return ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_20; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_20() { return &___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_20; }
|
|
inline void set_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_20(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_20 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_21() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_21)); }
|
|
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_21() const { return ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_21; }
|
|
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_21() { return &___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_21; }
|
|
inline void set_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_21(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
|
|
{
|
|
___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_21 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_22() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___34476C29F6F81C989CFCA42F7C06E84C66236834_22)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U334476C29F6F81C989CFCA42F7C06E84C66236834_22() const { return ___34476C29F6F81C989CFCA42F7C06E84C66236834_22; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_22() { return &___34476C29F6F81C989CFCA42F7C06E84C66236834_22; }
|
|
inline void set_U334476C29F6F81C989CFCA42F7C06E84C66236834_22(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___34476C29F6F81C989CFCA42F7C06E84C66236834_22 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_23() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___35EED060772F2748D13B745DAEC8CD7BD3B87604_23)); }
|
|
inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA get_U335EED060772F2748D13B745DAEC8CD7BD3B87604_23() const { return ___35EED060772F2748D13B745DAEC8CD7BD3B87604_23; }
|
|
inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA * get_address_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_23() { return &___35EED060772F2748D13B745DAEC8CD7BD3B87604_23; }
|
|
inline void set_U335EED060772F2748D13B745DAEC8CD7BD3B87604_23(__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA value)
|
|
{
|
|
___35EED060772F2748D13B745DAEC8CD7BD3B87604_23 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_24() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_24)); }
|
|
inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D get_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_24() const { return ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_24; }
|
|
inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D * get_address_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_24() { return &___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_24; }
|
|
inline void set_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_24(__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D value)
|
|
{
|
|
___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_24 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_25() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___379C06C9E702D31469C29033F0DD63931EB349F5_25)); }
|
|
inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 get_U3379C06C9E702D31469C29033F0DD63931EB349F5_25() const { return ___379C06C9E702D31469C29033F0DD63931EB349F5_25; }
|
|
inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 * get_address_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_25() { return &___379C06C9E702D31469C29033F0DD63931EB349F5_25; }
|
|
inline void set_U3379C06C9E702D31469C29033F0DD63931EB349F5_25(__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 value)
|
|
{
|
|
___379C06C9E702D31469C29033F0DD63931EB349F5_25 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_26() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_26)); }
|
|
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_26() const { return ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_26; }
|
|
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_26() { return &___399BD13E240F33F808CA7940293D6EC4E6FD5A00_26; }
|
|
inline void set_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_26(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value)
|
|
{
|
|
___399BD13E240F33F808CA7940293D6EC4E6FD5A00_26 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_27() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_27)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_27() const { return ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_27; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_27() { return &___39C9CE73C7B0619D409EF28344F687C1B5C130FE_27; }
|
|
inline void set_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_27(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___39C9CE73C7B0619D409EF28344F687C1B5C130FE_27 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_28() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_28)); }
|
|
inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 get_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_28() const { return ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_28; }
|
|
inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 * get_address_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_28() { return &___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_28; }
|
|
inline void set_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_28(__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 value)
|
|
{
|
|
___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_28 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_29() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_29)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_29() const { return ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_29; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_29() { return &___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_29; }
|
|
inline void set_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_29(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_29 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_30() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E823444D2DFECF0F90B436B88F02A533CB376F1_30)); }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U33E823444D2DFECF0F90B436B88F02A533CB376F1_30() const { return ___3E823444D2DFECF0F90B436B88F02A533CB376F1_30; }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_30() { return &___3E823444D2DFECF0F90B436B88F02A533CB376F1_30; }
|
|
inline void set_U33E823444D2DFECF0F90B436B88F02A533CB376F1_30(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
|
|
{
|
|
___3E823444D2DFECF0F90B436B88F02A533CB376F1_30 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_31() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_31)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_31() const { return ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_31; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_31() { return &___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_31; }
|
|
inline void set_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_31(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_31 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_32() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_32)); }
|
|
inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 get_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_32() const { return ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_32; }
|
|
inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 * get_address_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_32() { return &___40981BAA39513E58B28DCF0103CC04DE2A0A0444_32; }
|
|
inline void set_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_32(__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 value)
|
|
{
|
|
___40981BAA39513E58B28DCF0103CC04DE2A0A0444_32 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_33() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_33)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_33() const { return ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_33; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_33() { return &___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_33; }
|
|
inline void set_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_33(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_33 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_34() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_34)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_34() const { return ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_34; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_34() { return &___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_34; }
|
|
inline void set_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_34(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_34 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_35() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___433175D38B13FFE177FDD661A309F1B528B3F6E2_35)); }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_35() const { return ___433175D38B13FFE177FDD661A309F1B528B3F6E2_35; }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_35() { return &___433175D38B13FFE177FDD661A309F1B528B3F6E2_35; }
|
|
inline void set_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_35(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
|
|
{
|
|
___433175D38B13FFE177FDD661A309F1B528B3F6E2_35 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U346232052BC757E030490D851F265FB47FA100902_36() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___46232052BC757E030490D851F265FB47FA100902_36)); }
|
|
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_U346232052BC757E030490D851F265FB47FA100902_36() const { return ___46232052BC757E030490D851F265FB47FA100902_36; }
|
|
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_U346232052BC757E030490D851F265FB47FA100902_36() { return &___46232052BC757E030490D851F265FB47FA100902_36; }
|
|
inline void set_U346232052BC757E030490D851F265FB47FA100902_36(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value)
|
|
{
|
|
___46232052BC757E030490D851F265FB47FA100902_36 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_37() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_37)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_37() const { return ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_37; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_37() { return &___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_37; }
|
|
inline void set_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_37(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_37 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_38() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_38)); }
|
|
inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A get_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_38() const { return ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_38; }
|
|
inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A * get_address_of_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_38() { return &___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_38; }
|
|
inline void set_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_38(__StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A value)
|
|
{
|
|
___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_38 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_39() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_39)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_39() const { return ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_39; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_39() { return &___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_39; }
|
|
inline void set_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_39(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_39 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3536422B321459B242ADED7240B7447E904E083E3_40() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___536422B321459B242ADED7240B7447E904E083E3_40)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3536422B321459B242ADED7240B7447E904E083E3_40() const { return ___536422B321459B242ADED7240B7447E904E083E3_40; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3536422B321459B242ADED7240B7447E904E083E3_40() { return &___536422B321459B242ADED7240B7447E904E083E3_40; }
|
|
inline void set_U3536422B321459B242ADED7240B7447E904E083E3_40(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___536422B321459B242ADED7240B7447E904E083E3_40 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_41() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_41)); }
|
|
inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 get_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_41() const { return ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_41; }
|
|
inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 * get_address_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_41() { return &___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_41; }
|
|
inline void set_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_41(__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 value)
|
|
{
|
|
___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_41 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U356DFA5053B3131883637F53219E7D88CCEF35949_42() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___56DFA5053B3131883637F53219E7D88CCEF35949_42)); }
|
|
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_U356DFA5053B3131883637F53219E7D88CCEF35949_42() const { return ___56DFA5053B3131883637F53219E7D88CCEF35949_42; }
|
|
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_U356DFA5053B3131883637F53219E7D88CCEF35949_42() { return &___56DFA5053B3131883637F53219E7D88CCEF35949_42; }
|
|
inline void set_U356DFA5053B3131883637F53219E7D88CCEF35949_42(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value)
|
|
{
|
|
___56DFA5053B3131883637F53219E7D88CCEF35949_42 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_43() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57218C316B6921E2CD61027A2387EDC31A2D9471_43)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U357218C316B6921E2CD61027A2387EDC31A2D9471_43() const { return ___57218C316B6921E2CD61027A2387EDC31A2D9471_43; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_43() { return &___57218C316B6921E2CD61027A2387EDC31A2D9471_43; }
|
|
inline void set_U357218C316B6921E2CD61027A2387EDC31A2D9471_43(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___57218C316B6921E2CD61027A2387EDC31A2D9471_43 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_44() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57F320D62696EC99727E0FE2045A05F1289CC0C6_44)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U357F320D62696EC99727E0FE2045A05F1289CC0C6_44() const { return ___57F320D62696EC99727E0FE2045A05F1289CC0C6_44; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_44() { return &___57F320D62696EC99727E0FE2045A05F1289CC0C6_44; }
|
|
inline void set_U357F320D62696EC99727E0FE2045A05F1289CC0C6_44(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___57F320D62696EC99727E0FE2045A05F1289CC0C6_44 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_45() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_45)); }
|
|
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_45() const { return ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_45; }
|
|
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_45() { return &___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_45; }
|
|
inline void set_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_45(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value)
|
|
{
|
|
___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_45 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_46() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_46)); }
|
|
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_46() const { return ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_46; }
|
|
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_46() { return &___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_46; }
|
|
inline void set_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_46(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
|
|
{
|
|
___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_46 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_47() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_47)); }
|
|
inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 get_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_47() const { return ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_47; }
|
|
inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 * get_address_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_47() { return &___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_47; }
|
|
inline void set_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_47(__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 value)
|
|
{
|
|
___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_47 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_48() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BFE2819B4778217C56416C7585FF0E56EBACD89_48)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U35BFE2819B4778217C56416C7585FF0E56EBACD89_48() const { return ___5BFE2819B4778217C56416C7585FF0E56EBACD89_48; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_48() { return &___5BFE2819B4778217C56416C7585FF0E56EBACD89_48; }
|
|
inline void set_U35BFE2819B4778217C56416C7585FF0E56EBACD89_48(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___5BFE2819B4778217C56416C7585FF0E56EBACD89_48 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_49() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_49)); }
|
|
inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 get_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_49() const { return ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_49; }
|
|
inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 * get_address_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_49() { return &___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_49; }
|
|
inline void set_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_49(__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 value)
|
|
{
|
|
___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_49 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_50() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_50)); }
|
|
inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A get_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_50() const { return ___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_50; }
|
|
inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A * get_address_of_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_50() { return &___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_50; }
|
|
inline void set_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_50(__StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A value)
|
|
{
|
|
___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_50 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3646036A65DECCD6835C914A46E6E44B729433B60_51() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___646036A65DECCD6835C914A46E6E44B729433B60_51)); }
|
|
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 get_U3646036A65DECCD6835C914A46E6E44B729433B60_51() const { return ___646036A65DECCD6835C914A46E6E44B729433B60_51; }
|
|
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 * get_address_of_U3646036A65DECCD6835C914A46E6E44B729433B60_51() { return &___646036A65DECCD6835C914A46E6E44B729433B60_51; }
|
|
inline void set_U3646036A65DECCD6835C914A46E6E44B729433B60_51(__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 value)
|
|
{
|
|
___646036A65DECCD6835C914A46E6E44B729433B60_51 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_52() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_52)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_52() const { return ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_52; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_52() { return &___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_52; }
|
|
inline void set_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_52(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_52 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_53() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_53)); }
|
|
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_53() const { return ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_53; }
|
|
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_53() { return &___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_53; }
|
|
inline void set_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_53(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
|
|
{
|
|
___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_53 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_54() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___67EEAD805D708D9AA4E14BF747E44CED801744F3_54)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U367EEAD805D708D9AA4E14BF747E44CED801744F3_54() const { return ___67EEAD805D708D9AA4E14BF747E44CED801744F3_54; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_54() { return &___67EEAD805D708D9AA4E14BF747E44CED801744F3_54; }
|
|
inline void set_U367EEAD805D708D9AA4E14BF747E44CED801744F3_54(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___67EEAD805D708D9AA4E14BF747E44CED801744F3_54 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_55() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6C71197D228427B2864C69B357FEF73D8C9D59DF_55)); }
|
|
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_U36C71197D228427B2864C69B357FEF73D8C9D59DF_55() const { return ___6C71197D228427B2864C69B357FEF73D8C9D59DF_55; }
|
|
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_55() { return &___6C71197D228427B2864C69B357FEF73D8C9D59DF_55; }
|
|
inline void set_U36C71197D228427B2864C69B357FEF73D8C9D59DF_55(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value)
|
|
{
|
|
___6C71197D228427B2864C69B357FEF73D8C9D59DF_55 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_56() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_56)); }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_56() const { return ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_56; }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_56() { return &___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_56; }
|
|
inline void set_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_56(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
|
|
{
|
|
___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_56 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_57() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_57)); }
|
|
inline __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 get_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_57() const { return ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_57; }
|
|
inline __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 * get_address_of_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_57() { return &___6D49C9D487D7AD3491ECE08732D68A593CC2038D_57; }
|
|
inline void set_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_57(__StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 value)
|
|
{
|
|
___6D49C9D487D7AD3491ECE08732D68A593CC2038D_57 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U36D797C11E1D4FB68B6570CF2A92B792433527065_58() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6D797C11E1D4FB68B6570CF2A92B792433527065_58)); }
|
|
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 get_U36D797C11E1D4FB68B6570CF2A92B792433527065_58() const { return ___6D797C11E1D4FB68B6570CF2A92B792433527065_58; }
|
|
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 * get_address_of_U36D797C11E1D4FB68B6570CF2A92B792433527065_58() { return &___6D797C11E1D4FB68B6570CF2A92B792433527065_58; }
|
|
inline void set_U36D797C11E1D4FB68B6570CF2A92B792433527065_58(__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 value)
|
|
{
|
|
___6D797C11E1D4FB68B6570CF2A92B792433527065_58 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_59() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_59)); }
|
|
inline __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 get_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_59() const { return ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_59; }
|
|
inline __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 * get_address_of_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_59() { return &___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_59; }
|
|
inline void set_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_59(__StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 value)
|
|
{
|
|
___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_59 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_60() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6FC754859E4EC74E447048364B216D825C6F8FE7_60)); }
|
|
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_U36FC754859E4EC74E447048364B216D825C6F8FE7_60() const { return ___6FC754859E4EC74E447048364B216D825C6F8FE7_60; }
|
|
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_60() { return &___6FC754859E4EC74E447048364B216D825C6F8FE7_60; }
|
|
inline void set_U36FC754859E4EC74E447048364B216D825C6F8FE7_60(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value)
|
|
{
|
|
___6FC754859E4EC74E447048364B216D825C6F8FE7_60 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_61() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___704939CD172085D1295FCE3F1D92431D685D7AA2_61)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3704939CD172085D1295FCE3F1D92431D685D7AA2_61() const { return ___704939CD172085D1295FCE3F1D92431D685D7AA2_61; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_61() { return &___704939CD172085D1295FCE3F1D92431D685D7AA2_61; }
|
|
inline void set_U3704939CD172085D1295FCE3F1D92431D685D7AA2_61(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___704939CD172085D1295FCE3F1D92431D685D7AA2_61 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_62() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_62)); }
|
|
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_62() const { return ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_62; }
|
|
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_62() { return &___7088AAE49F0627B72729078DE6E3182DDCF8ED99_62; }
|
|
inline void set_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_62(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value)
|
|
{
|
|
___7088AAE49F0627B72729078DE6E3182DDCF8ED99_62 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_63() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7341C933A70EAE383CC50C4B945ADB8E08F06737_63)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U37341C933A70EAE383CC50C4B945ADB8E08F06737_63() const { return ___7341C933A70EAE383CC50C4B945ADB8E08F06737_63; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_63() { return &___7341C933A70EAE383CC50C4B945ADB8E08F06737_63; }
|
|
inline void set_U37341C933A70EAE383CC50C4B945ADB8E08F06737_63(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___7341C933A70EAE383CC50C4B945ADB8E08F06737_63 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3736D39815215889F11249D9958F6ED12D37B9F57_64() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___736D39815215889F11249D9958F6ED12D37B9F57_64)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U3736D39815215889F11249D9958F6ED12D37B9F57_64() const { return ___736D39815215889F11249D9958F6ED12D37B9F57_64; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U3736D39815215889F11249D9958F6ED12D37B9F57_64() { return &___736D39815215889F11249D9958F6ED12D37B9F57_64; }
|
|
inline void set_U3736D39815215889F11249D9958F6ED12D37B9F57_64(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___736D39815215889F11249D9958F6ED12D37B9F57_64 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U37F42F2EDC974BE29B2746957416ED1AEFA605F47_65() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7F42F2EDC974BE29B2746957416ED1AEFA605F47_65)); }
|
|
inline __StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 get_U37F42F2EDC974BE29B2746957416ED1AEFA605F47_65() const { return ___7F42F2EDC974BE29B2746957416ED1AEFA605F47_65; }
|
|
inline __StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 * get_address_of_U37F42F2EDC974BE29B2746957416ED1AEFA605F47_65() { return &___7F42F2EDC974BE29B2746957416ED1AEFA605F47_65; }
|
|
inline void set_U37F42F2EDC974BE29B2746957416ED1AEFA605F47_65(__StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 value)
|
|
{
|
|
___7F42F2EDC974BE29B2746957416ED1AEFA605F47_65 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_66() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_66)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_66() const { return ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_66; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_66() { return &___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_66; }
|
|
inline void set_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_66(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_66 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_67() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_67)); }
|
|
inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 get_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_67() const { return ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_67; }
|
|
inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 * get_address_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_67() { return &___811A927B7DADD378BE60BBDE794B9277AA9B50EC_67; }
|
|
inline void set_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_67(__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 value)
|
|
{
|
|
___811A927B7DADD378BE60BBDE794B9277AA9B50EC_67 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U381917F1E21F3C22B9F916994547A614FB03E968E_68() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___81917F1E21F3C22B9F916994547A614FB03E968E_68)); }
|
|
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U381917F1E21F3C22B9F916994547A614FB03E968E_68() const { return ___81917F1E21F3C22B9F916994547A614FB03E968E_68; }
|
|
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U381917F1E21F3C22B9F916994547A614FB03E968E_68() { return &___81917F1E21F3C22B9F916994547A614FB03E968E_68; }
|
|
inline void set_U381917F1E21F3C22B9F916994547A614FB03E968E_68(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
|
|
{
|
|
___81917F1E21F3C22B9F916994547A614FB03E968E_68 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_69() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___823566DA642D6EA356E15585921F2A4CA23D6760_69)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3823566DA642D6EA356E15585921F2A4CA23D6760_69() const { return ___823566DA642D6EA356E15585921F2A4CA23D6760_69; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_69() { return &___823566DA642D6EA356E15585921F2A4CA23D6760_69; }
|
|
inline void set_U3823566DA642D6EA356E15585921F2A4CA23D6760_69(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___823566DA642D6EA356E15585921F2A4CA23D6760_69 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_70() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C2A59850B2E85BCE1A45A479537A384DF6098D_70)); }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U382C2A59850B2E85BCE1A45A479537A384DF6098D_70() const { return ___82C2A59850B2E85BCE1A45A479537A384DF6098D_70; }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_70() { return &___82C2A59850B2E85BCE1A45A479537A384DF6098D_70; }
|
|
inline void set_U382C2A59850B2E85BCE1A45A479537A384DF6098D_70(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
|
|
{
|
|
___82C2A59850B2E85BCE1A45A479537A384DF6098D_70 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_71() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_71)); }
|
|
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_71() const { return ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_71; }
|
|
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_71() { return &___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_71; }
|
|
inline void set_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_71(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value)
|
|
{
|
|
___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_71 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U386F4F563FA2C61798AE6238D789139739428463A_72() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___86F4F563FA2C61798AE6238D789139739428463A_72)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U386F4F563FA2C61798AE6238D789139739428463A_72() const { return ___86F4F563FA2C61798AE6238D789139739428463A_72; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U386F4F563FA2C61798AE6238D789139739428463A_72() { return &___86F4F563FA2C61798AE6238D789139739428463A_72; }
|
|
inline void set_U386F4F563FA2C61798AE6238D789139739428463A_72(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___86F4F563FA2C61798AE6238D789139739428463A_72 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_73() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___871B9CF85DB352BAADF12BAE8F19857683E385AC_73)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_73() const { return ___871B9CF85DB352BAADF12BAE8F19857683E385AC_73; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_73() { return &___871B9CF85DB352BAADF12BAE8F19857683E385AC_73; }
|
|
inline void set_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_73(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___871B9CF85DB352BAADF12BAE8F19857683E385AC_73 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_74() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___89A040451C8CC5C8FB268BE44BDD74964C104155_74)); }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U389A040451C8CC5C8FB268BE44BDD74964C104155_74() const { return ___89A040451C8CC5C8FB268BE44BDD74964C104155_74; }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_74() { return &___89A040451C8CC5C8FB268BE44BDD74964C104155_74; }
|
|
inline void set_U389A040451C8CC5C8FB268BE44BDD74964C104155_74(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
|
|
{
|
|
___89A040451C8CC5C8FB268BE44BDD74964C104155_74 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U38AEFB06C426E07A0A671A1E2488B4858D694A730_75() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8AEFB06C426E07A0A671A1E2488B4858D694A730_75)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U38AEFB06C426E07A0A671A1E2488B4858D694A730_75() const { return ___8AEFB06C426E07A0A671A1E2488B4858D694A730_75; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U38AEFB06C426E07A0A671A1E2488B4858D694A730_75() { return &___8AEFB06C426E07A0A671A1E2488B4858D694A730_75; }
|
|
inline void set_U38AEFB06C426E07A0A671A1E2488B4858D694A730_75(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___8AEFB06C426E07A0A671A1E2488B4858D694A730_75 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U38CAA092E783257106251246FF5C97F88D28517A6_76() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8CAA092E783257106251246FF5C97F88D28517A6_76)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38CAA092E783257106251246FF5C97F88D28517A6_76() const { return ___8CAA092E783257106251246FF5C97F88D28517A6_76; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38CAA092E783257106251246FF5C97F88D28517A6_76() { return &___8CAA092E783257106251246FF5C97F88D28517A6_76; }
|
|
inline void set_U38CAA092E783257106251246FF5C97F88D28517A6_76(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___8CAA092E783257106251246FF5C97F88D28517A6_76 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_77() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_77)); }
|
|
inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA get_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_77() const { return ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_77; }
|
|
inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA * get_address_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_77() { return &___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_77; }
|
|
inline void set_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_77(__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA value)
|
|
{
|
|
___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_77 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_78() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_78)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_78() const { return ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_78; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_78() { return &___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_78; }
|
|
inline void set_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_78(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_78 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U38F22C9ECE1331718CBD268A9BBFD2F5E451441E3_79() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8F22C9ECE1331718CBD268A9BBFD2F5E451441E3_79)); }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_U38F22C9ECE1331718CBD268A9BBFD2F5E451441E3_79() const { return ___8F22C9ECE1331718CBD268A9BBFD2F5E451441E3_79; }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_U38F22C9ECE1331718CBD268A9BBFD2F5E451441E3_79() { return &___8F22C9ECE1331718CBD268A9BBFD2F5E451441E3_79; }
|
|
inline void set_U38F22C9ECE1331718CBD268A9BBFD2F5E451441E3_79(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
|
|
{
|
|
___8F22C9ECE1331718CBD268A9BBFD2F5E451441E3_79 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U390A0542282A011472F94E97CEAE59F8B3B1A3291_80() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___90A0542282A011472F94E97CEAE59F8B3B1A3291_80)); }
|
|
inline __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 get_U390A0542282A011472F94E97CEAE59F8B3B1A3291_80() const { return ___90A0542282A011472F94E97CEAE59F8B3B1A3291_80; }
|
|
inline __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 * get_address_of_U390A0542282A011472F94E97CEAE59F8B3B1A3291_80() { return &___90A0542282A011472F94E97CEAE59F8B3B1A3291_80; }
|
|
inline void set_U390A0542282A011472F94E97CEAE59F8B3B1A3291_80(__StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 value)
|
|
{
|
|
___90A0542282A011472F94E97CEAE59F8B3B1A3291_80 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_81() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___93A63E90605400F34B49F0EB3361D23C89164BDA_81)); }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U393A63E90605400F34B49F0EB3361D23C89164BDA_81() const { return ___93A63E90605400F34B49F0EB3361D23C89164BDA_81; }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_81() { return &___93A63E90605400F34B49F0EB3361D23C89164BDA_81; }
|
|
inline void set_U393A63E90605400F34B49F0EB3361D23C89164BDA_81(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
|
|
{
|
|
___93A63E90605400F34B49F0EB3361D23C89164BDA_81 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_82() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___94841DD2F330CCB1089BF413E4FA9B04505152E2_82)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U394841DD2F330CCB1089BF413E4FA9B04505152E2_82() const { return ___94841DD2F330CCB1089BF413E4FA9B04505152E2_82; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_82() { return &___94841DD2F330CCB1089BF413E4FA9B04505152E2_82; }
|
|
inline void set_U394841DD2F330CCB1089BF413E4FA9B04505152E2_82(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___94841DD2F330CCB1089BF413E4FA9B04505152E2_82 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_83() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95264589E48F94B7857CFF398FB72A537E13EEE2_83)); }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U395264589E48F94B7857CFF398FB72A537E13EEE2_83() const { return ___95264589E48F94B7857CFF398FB72A537E13EEE2_83; }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_83() { return &___95264589E48F94B7857CFF398FB72A537E13EEE2_83; }
|
|
inline void set_U395264589E48F94B7857CFF398FB72A537E13EEE2_83(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
|
|
{
|
|
___95264589E48F94B7857CFF398FB72A537E13EEE2_83 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_84() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95C48758CAE1715783472FB073AB158AB8A0AB2A_84)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U395C48758CAE1715783472FB073AB158AB8A0AB2A_84() const { return ___95C48758CAE1715783472FB073AB158AB8A0AB2A_84; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_84() { return &___95C48758CAE1715783472FB073AB158AB8A0AB2A_84; }
|
|
inline void set_U395C48758CAE1715783472FB073AB158AB8A0AB2A_84(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___95C48758CAE1715783472FB073AB158AB8A0AB2A_84 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3973417296623D8DC6961B09664E54039E44CA5D8_85() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___973417296623D8DC6961B09664E54039E44CA5D8_85)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3973417296623D8DC6961B09664E54039E44CA5D8_85() const { return ___973417296623D8DC6961B09664E54039E44CA5D8_85; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3973417296623D8DC6961B09664E54039E44CA5D8_85() { return &___973417296623D8DC6961B09664E54039E44CA5D8_85; }
|
|
inline void set_U3973417296623D8DC6961B09664E54039E44CA5D8_85(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___973417296623D8DC6961B09664E54039E44CA5D8_85 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_86() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_86)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_86() const { return ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_86; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_86() { return &___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_86; }
|
|
inline void set_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_86(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_86 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U399E2E88877D14C7DDC4E957A0ED7079CA0E9EB24_87() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___99E2E88877D14C7DDC4E957A0ED7079CA0E9EB24_87)); }
|
|
inline __StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 get_U399E2E88877D14C7DDC4E957A0ED7079CA0E9EB24_87() const { return ___99E2E88877D14C7DDC4E957A0ED7079CA0E9EB24_87; }
|
|
inline __StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 * get_address_of_U399E2E88877D14C7DDC4E957A0ED7079CA0E9EB24_87() { return &___99E2E88877D14C7DDC4E957A0ED7079CA0E9EB24_87; }
|
|
inline void set_U399E2E88877D14C7DDC4E957A0ED7079CA0E9EB24_87(__StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 value)
|
|
{
|
|
___99E2E88877D14C7DDC4E957A0ED7079CA0E9EB24_87 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_88() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_88)); }
|
|
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_88() const { return ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_88; }
|
|
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_88() { return &___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_88; }
|
|
inline void set_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_88(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
|
|
{
|
|
___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_88 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_89() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_89)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_89() const { return ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_89; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_89() { return &___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_89; }
|
|
inline void set_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_89(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_89 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_A0074C15377C0C870B055927403EA9FA7A349D12_90() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A0074C15377C0C870B055927403EA9FA7A349D12_90)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_A0074C15377C0C870B055927403EA9FA7A349D12_90() const { return ___A0074C15377C0C870B055927403EA9FA7A349D12_90; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_A0074C15377C0C870B055927403EA9FA7A349D12_90() { return &___A0074C15377C0C870B055927403EA9FA7A349D12_90; }
|
|
inline void set_A0074C15377C0C870B055927403EA9FA7A349D12_90(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___A0074C15377C0C870B055927403EA9FA7A349D12_90 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_91() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A1319B706116AB2C6D44483F60A7D0ACEA543396_91)); }
|
|
inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F get_A1319B706116AB2C6D44483F60A7D0ACEA543396_91() const { return ___A1319B706116AB2C6D44483F60A7D0ACEA543396_91; }
|
|
inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F * get_address_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_91() { return &___A1319B706116AB2C6D44483F60A7D0ACEA543396_91; }
|
|
inline void set_A1319B706116AB2C6D44483F60A7D0ACEA543396_91(__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F value)
|
|
{
|
|
___A1319B706116AB2C6D44483F60A7D0ACEA543396_91 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_A13AA52274D951A18029131A8DDECF76B569A15D_92() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A13AA52274D951A18029131A8DDECF76B569A15D_92)); }
|
|
inline int64_t get_A13AA52274D951A18029131A8DDECF76B569A15D_92() const { return ___A13AA52274D951A18029131A8DDECF76B569A15D_92; }
|
|
inline int64_t* get_address_of_A13AA52274D951A18029131A8DDECF76B569A15D_92() { return &___A13AA52274D951A18029131A8DDECF76B569A15D_92; }
|
|
inline void set_A13AA52274D951A18029131A8DDECF76B569A15D_92(int64_t value)
|
|
{
|
|
___A13AA52274D951A18029131A8DDECF76B569A15D_92 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_A323DB0813C4D072957BA6FDA79D9776674CD06B_93() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A323DB0813C4D072957BA6FDA79D9776674CD06B_93)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_A323DB0813C4D072957BA6FDA79D9776674CD06B_93() const { return ___A323DB0813C4D072957BA6FDA79D9776674CD06B_93; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_A323DB0813C4D072957BA6FDA79D9776674CD06B_93() { return &___A323DB0813C4D072957BA6FDA79D9776674CD06B_93; }
|
|
inline void set_A323DB0813C4D072957BA6FDA79D9776674CD06B_93(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___A323DB0813C4D072957BA6FDA79D9776674CD06B_93 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_A5444763673307F6828C748D4B9708CFC02B0959_94() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A5444763673307F6828C748D4B9708CFC02B0959_94)); }
|
|
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_A5444763673307F6828C748D4B9708CFC02B0959_94() const { return ___A5444763673307F6828C748D4B9708CFC02B0959_94; }
|
|
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_A5444763673307F6828C748D4B9708CFC02B0959_94() { return &___A5444763673307F6828C748D4B9708CFC02B0959_94; }
|
|
inline void set_A5444763673307F6828C748D4B9708CFC02B0959_94(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value)
|
|
{
|
|
___A5444763673307F6828C748D4B9708CFC02B0959_94 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_95() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_95)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_A6732F8E7FC23766AB329B492D6BF82E3B33233F_95() const { return ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_95; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_95() { return &___A6732F8E7FC23766AB329B492D6BF82E3B33233F_95; }
|
|
inline void set_A6732F8E7FC23766AB329B492D6BF82E3B33233F_95(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___A6732F8E7FC23766AB329B492D6BF82E3B33233F_95 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_96() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A705A106D95282BD15E13EEA6B0AF583FF786D83_96)); }
|
|
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_A705A106D95282BD15E13EEA6B0AF583FF786D83_96() const { return ___A705A106D95282BD15E13EEA6B0AF583FF786D83_96; }
|
|
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_96() { return &___A705A106D95282BD15E13EEA6B0AF583FF786D83_96; }
|
|
inline void set_A705A106D95282BD15E13EEA6B0AF583FF786D83_96(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value)
|
|
{
|
|
___A705A106D95282BD15E13EEA6B0AF583FF786D83_96 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_97() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A8A491E4CED49AE0027560476C10D933CE70C8DF_97)); }
|
|
inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 get_A8A491E4CED49AE0027560476C10D933CE70C8DF_97() const { return ___A8A491E4CED49AE0027560476C10D933CE70C8DF_97; }
|
|
inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 * get_address_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_97() { return &___A8A491E4CED49AE0027560476C10D933CE70C8DF_97; }
|
|
inline void set_A8A491E4CED49AE0027560476C10D933CE70C8DF_97(__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 value)
|
|
{
|
|
___A8A491E4CED49AE0027560476C10D933CE70C8DF_97 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_AC791C4F39504D1184B73478943D0636258DA7B1_98() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AC791C4F39504D1184B73478943D0636258DA7B1_98)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_AC791C4F39504D1184B73478943D0636258DA7B1_98() const { return ___AC791C4F39504D1184B73478943D0636258DA7B1_98; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_AC791C4F39504D1184B73478943D0636258DA7B1_98() { return &___AC791C4F39504D1184B73478943D0636258DA7B1_98; }
|
|
inline void set_AC791C4F39504D1184B73478943D0636258DA7B1_98(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___AC791C4F39504D1184B73478943D0636258DA7B1_98 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_99() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AFCD4E1211233E99373A3367B23105A3D624B1F2_99)); }
|
|
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_AFCD4E1211233E99373A3367B23105A3D624B1F2_99() const { return ___AFCD4E1211233E99373A3367B23105A3D624B1F2_99; }
|
|
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_99() { return &___AFCD4E1211233E99373A3367B23105A3D624B1F2_99; }
|
|
inline void set_AFCD4E1211233E99373A3367B23105A3D624B1F2_99(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
|
|
{
|
|
___AFCD4E1211233E99373A3367B23105A3D624B1F2_99 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_100() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_100)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_100() const { return ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_100; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_100() { return &___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_100; }
|
|
inline void set_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_100(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_100 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_101() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_101)); }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_101() const { return ___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_101; }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_101() { return &___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_101; }
|
|
inline void set_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_101(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
|
|
{
|
|
___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_101 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_102() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_102)); }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_102() const { return ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_102; }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_102() { return &___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_102; }
|
|
inline void set_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_102(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
|
|
{
|
|
___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_102 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_B6002BBF29B2704922EC3BBF0F9EE40ABF185D6B_103() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B6002BBF29B2704922EC3BBF0F9EE40ABF185D6B_103)); }
|
|
inline __StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 get_B6002BBF29B2704922EC3BBF0F9EE40ABF185D6B_103() const { return ___B6002BBF29B2704922EC3BBF0F9EE40ABF185D6B_103; }
|
|
inline __StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 * get_address_of_B6002BBF29B2704922EC3BBF0F9EE40ABF185D6B_103() { return &___B6002BBF29B2704922EC3BBF0F9EE40ABF185D6B_103; }
|
|
inline void set_B6002BBF29B2704922EC3BBF0F9EE40ABF185D6B_103(__StaticArrayInitTypeSizeU3D4096_t48AD4C96663434746AEF5C2251003E817CC5FD23 value)
|
|
{
|
|
___B6002BBF29B2704922EC3BBF0F9EE40ABF185D6B_103 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_104() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_104)); }
|
|
inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C get_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_104() const { return ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_104; }
|
|
inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C * get_address_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_104() { return &___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_104; }
|
|
inline void set_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_104(__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C value)
|
|
{
|
|
___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_104 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_105() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_105)); }
|
|
inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA get_B8864ACB9DD69E3D42151513C840AAE270BF21C8_105() const { return ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_105; }
|
|
inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA * get_address_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_105() { return &___B8864ACB9DD69E3D42151513C840AAE270BF21C8_105; }
|
|
inline void set_B8864ACB9DD69E3D42151513C840AAE270BF21C8_105(__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA value)
|
|
{
|
|
___B8864ACB9DD69E3D42151513C840AAE270BF21C8_105 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_106() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8F87834C3597B2EEF22BA6D3A392CC925636401_106)); }
|
|
inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 get_B8F87834C3597B2EEF22BA6D3A392CC925636401_106() const { return ___B8F87834C3597B2EEF22BA6D3A392CC925636401_106; }
|
|
inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 * get_address_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_106() { return &___B8F87834C3597B2EEF22BA6D3A392CC925636401_106; }
|
|
inline void set_B8F87834C3597B2EEF22BA6D3A392CC925636401_106(__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 value)
|
|
{
|
|
___B8F87834C3597B2EEF22BA6D3A392CC925636401_106 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_107() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_107)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_107() const { return ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_107; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_107() { return &___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_107; }
|
|
inline void set_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_107(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_107 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_108() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_108)); }
|
|
inline __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 get_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_108() const { return ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_108; }
|
|
inline __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 * get_address_of_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_108() { return &___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_108; }
|
|
inline void set_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_108(__StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 value)
|
|
{
|
|
___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_108 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_109() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_109)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_109() const { return ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_109; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_109() { return &___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_109; }
|
|
inline void set_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_109(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_109 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_110() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_110)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_110() const { return ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_110; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_110() { return &___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_110; }
|
|
inline void set_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_110(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_110 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_111() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_111)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_111() const { return ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_111; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_111() { return &___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_111; }
|
|
inline void set_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_111(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_111 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_112() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BF5EB60806ECB74EE484105DD9D6F463BF994867_112)); }
|
|
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_BF5EB60806ECB74EE484105DD9D6F463BF994867_112() const { return ___BF5EB60806ECB74EE484105DD9D6F463BF994867_112; }
|
|
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_112() { return &___BF5EB60806ECB74EE484105DD9D6F463BF994867_112; }
|
|
inline void set_BF5EB60806ECB74EE484105DD9D6F463BF994867_112(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value)
|
|
{
|
|
___BF5EB60806ECB74EE484105DD9D6F463BF994867_112 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_C1A1100642BA9685B30A84D97348484E14AA1865_113() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C1A1100642BA9685B30A84D97348484E14AA1865_113)); }
|
|
inline int64_t get_C1A1100642BA9685B30A84D97348484E14AA1865_113() const { return ___C1A1100642BA9685B30A84D97348484E14AA1865_113; }
|
|
inline int64_t* get_address_of_C1A1100642BA9685B30A84D97348484E14AA1865_113() { return &___C1A1100642BA9685B30A84D97348484E14AA1865_113; }
|
|
inline void set_C1A1100642BA9685B30A84D97348484E14AA1865_113(int64_t value)
|
|
{
|
|
___C1A1100642BA9685B30A84D97348484E14AA1865_113 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_C6F364A0AD934EFED8909446C215752E565D77C1_114() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C6F364A0AD934EFED8909446C215752E565D77C1_114)); }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_C6F364A0AD934EFED8909446C215752E565D77C1_114() const { return ___C6F364A0AD934EFED8909446C215752E565D77C1_114; }
|
|
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_C6F364A0AD934EFED8909446C215752E565D77C1_114() { return &___C6F364A0AD934EFED8909446C215752E565D77C1_114; }
|
|
inline void set_C6F364A0AD934EFED8909446C215752E565D77C1_114(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
|
|
{
|
|
___C6F364A0AD934EFED8909446C215752E565D77C1_114 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_115() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE5835130F5277F63D716FC9115526B0AC68FFAD_115)); }
|
|
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_CE5835130F5277F63D716FC9115526B0AC68FFAD_115() const { return ___CE5835130F5277F63D716FC9115526B0AC68FFAD_115; }
|
|
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_115() { return &___CE5835130F5277F63D716FC9115526B0AC68FFAD_115; }
|
|
inline void set_CE5835130F5277F63D716FC9115526B0AC68FFAD_115(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value)
|
|
{
|
|
___CE5835130F5277F63D716FC9115526B0AC68FFAD_115 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_CE93C35B755802BC4B3D180716B048FC61701EF7_116() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE93C35B755802BC4B3D180716B048FC61701EF7_116)); }
|
|
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_CE93C35B755802BC4B3D180716B048FC61701EF7_116() const { return ___CE93C35B755802BC4B3D180716B048FC61701EF7_116; }
|
|
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_CE93C35B755802BC4B3D180716B048FC61701EF7_116() { return &___CE93C35B755802BC4B3D180716B048FC61701EF7_116; }
|
|
inline void set_CE93C35B755802BC4B3D180716B048FC61701EF7_116(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value)
|
|
{
|
|
___CE93C35B755802BC4B3D180716B048FC61701EF7_116 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_117() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_117)); }
|
|
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_117() const { return ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_117; }
|
|
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_117() { return &___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_117; }
|
|
inline void set_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_117(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
|
|
{
|
|
___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_117 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_118() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_118)); }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_118() const { return ___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_118; }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_118() { return &___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_118; }
|
|
inline void set_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_118(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
|
|
{
|
|
___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_118 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_119() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_119)); }
|
|
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 get_D117188BE8D4609C0D531C51B0BB911A4219DEBE_119() const { return ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_119; }
|
|
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 * get_address_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_119() { return &___D117188BE8D4609C0D531C51B0BB911A4219DEBE_119; }
|
|
inline void set_D117188BE8D4609C0D531C51B0BB911A4219DEBE_119(__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 value)
|
|
{
|
|
___D117188BE8D4609C0D531C51B0BB911A4219DEBE_119 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_120() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_120)); }
|
|
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 get_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_120() const { return ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_120; }
|
|
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 * get_address_of_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_120() { return &___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_120; }
|
|
inline void set_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_120(__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 value)
|
|
{
|
|
___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_120 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_121() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_121)); }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_121() const { return ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_121; }
|
|
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_121() { return &___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_121; }
|
|
inline void set_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_121(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
|
|
{
|
|
___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_121 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_D76478B994B312CD022DCA207AA2254880D2FCC9_122() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D76478B994B312CD022DCA207AA2254880D2FCC9_122)); }
|
|
inline __StaticArrayInitTypeSizeU3D82_tFF649C1155A9721BEFA144DC346A162E7B138F3B get_D76478B994B312CD022DCA207AA2254880D2FCC9_122() const { return ___D76478B994B312CD022DCA207AA2254880D2FCC9_122; }
|
|
inline __StaticArrayInitTypeSizeU3D82_tFF649C1155A9721BEFA144DC346A162E7B138F3B * get_address_of_D76478B994B312CD022DCA207AA2254880D2FCC9_122() { return &___D76478B994B312CD022DCA207AA2254880D2FCC9_122; }
|
|
inline void set_D76478B994B312CD022DCA207AA2254880D2FCC9_122(__StaticArrayInitTypeSizeU3D82_tFF649C1155A9721BEFA144DC346A162E7B138F3B value)
|
|
{
|
|
___D76478B994B312CD022DCA207AA2254880D2FCC9_122 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_123() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_123)); }
|
|
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_123() const { return ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_123; }
|
|
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_123() { return &___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_123; }
|
|
inline void set_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_123(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value)
|
|
{
|
|
___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_123 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_124() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DA19DB47B583EFCF7825D2E39D661D2354F28219_124)); }
|
|
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_DA19DB47B583EFCF7825D2E39D661D2354F28219_124() const { return ___DA19DB47B583EFCF7825D2E39D661D2354F28219_124; }
|
|
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_124() { return &___DA19DB47B583EFCF7825D2E39D661D2354F28219_124; }
|
|
inline void set_DA19DB47B583EFCF7825D2E39D661D2354F28219_124(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value)
|
|
{
|
|
___DA19DB47B583EFCF7825D2E39D661D2354F28219_124 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_125() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_125)); }
|
|
inline __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 get_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_125() const { return ___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_125; }
|
|
inline __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 * get_address_of_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_125() { return &___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_125; }
|
|
inline void set_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_125(__StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 value)
|
|
{
|
|
___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_125 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_126() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_126)); }
|
|
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_DD3AEFEADB1CD615F3017763F1568179FEE640B0_126() const { return ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_126; }
|
|
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_126() { return &___DD3AEFEADB1CD615F3017763F1568179FEE640B0_126; }
|
|
inline void set_DD3AEFEADB1CD615F3017763F1568179FEE640B0_126(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
|
|
{
|
|
___DD3AEFEADB1CD615F3017763F1568179FEE640B0_126 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_E1827270A5FE1C85F5352A66FD87BA747213D006_127() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E1827270A5FE1C85F5352A66FD87BA747213D006_127)); }
|
|
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_E1827270A5FE1C85F5352A66FD87BA747213D006_127() const { return ___E1827270A5FE1C85F5352A66FD87BA747213D006_127; }
|
|
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_E1827270A5FE1C85F5352A66FD87BA747213D006_127() { return &___E1827270A5FE1C85F5352A66FD87BA747213D006_127; }
|
|
inline void set_E1827270A5FE1C85F5352A66FD87BA747213D006_127(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
|
|
{
|
|
___E1827270A5FE1C85F5352A66FD87BA747213D006_127 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_128() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_128)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_128() const { return ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_128; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_128() { return &___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_128; }
|
|
inline void set_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_128(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_128 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_E75835D001C843F156FBA01B001DFE1B8029AC17_129() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E75835D001C843F156FBA01B001DFE1B8029AC17_129)); }
|
|
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_E75835D001C843F156FBA01B001DFE1B8029AC17_129() const { return ___E75835D001C843F156FBA01B001DFE1B8029AC17_129; }
|
|
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_E75835D001C843F156FBA01B001DFE1B8029AC17_129() { return &___E75835D001C843F156FBA01B001DFE1B8029AC17_129; }
|
|
inline void set_E75835D001C843F156FBA01B001DFE1B8029AC17_129(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
|
|
{
|
|
___E75835D001C843F156FBA01B001DFE1B8029AC17_129 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_E92B39D8233061927D9ACDE54665E68E7535635A_130() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E92B39D8233061927D9ACDE54665E68E7535635A_130)); }
|
|
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_E92B39D8233061927D9ACDE54665E68E7535635A_130() const { return ___E92B39D8233061927D9ACDE54665E68E7535635A_130; }
|
|
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_E92B39D8233061927D9ACDE54665E68E7535635A_130() { return &___E92B39D8233061927D9ACDE54665E68E7535635A_130; }
|
|
inline void set_E92B39D8233061927D9ACDE54665E68E7535635A_130(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
|
|
{
|
|
___E92B39D8233061927D9ACDE54665E68E7535635A_130 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_EA9506959484C55CFE0C139C624DF6060E285866_131() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EA9506959484C55CFE0C139C624DF6060E285866_131)); }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_EA9506959484C55CFE0C139C624DF6060E285866_131() const { return ___EA9506959484C55CFE0C139C624DF6060E285866_131; }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_EA9506959484C55CFE0C139C624DF6060E285866_131() { return &___EA9506959484C55CFE0C139C624DF6060E285866_131; }
|
|
inline void set_EA9506959484C55CFE0C139C624DF6060E285866_131(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
|
|
{
|
|
___EA9506959484C55CFE0C139C624DF6060E285866_131 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_132() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_132)); }
|
|
inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 get_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_132() const { return ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_132; }
|
|
inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 * get_address_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_132() { return &___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_132; }
|
|
inline void set_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_132(__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 value)
|
|
{
|
|
___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_132 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_133() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EBF68F411848D603D059DFDEA2321C5A5EA78044_133)); }
|
|
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_EBF68F411848D603D059DFDEA2321C5A5EA78044_133() const { return ___EBF68F411848D603D059DFDEA2321C5A5EA78044_133; }
|
|
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_133() { return &___EBF68F411848D603D059DFDEA2321C5A5EA78044_133; }
|
|
inline void set_EBF68F411848D603D059DFDEA2321C5A5EA78044_133(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
|
|
{
|
|
___EBF68F411848D603D059DFDEA2321C5A5EA78044_133 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_134() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_134)); }
|
|
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_134() const { return ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_134; }
|
|
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_134() { return &___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_134; }
|
|
inline void set_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_134(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value)
|
|
{
|
|
___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_134 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_135() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_135)); }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_135() const { return ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_135; }
|
|
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_135() { return &___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_135; }
|
|
inline void set_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_135(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
|
|
{
|
|
___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_135 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_136() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_136)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_136() const { return ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_136; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_136() { return &___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_136; }
|
|
inline void set_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_136(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_136 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_137() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_137)); }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_F06E829E62F3AFBC045D064E10A4F5DF7C969612_137() const { return ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_137; }
|
|
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_137() { return &___F06E829E62F3AFBC045D064E10A4F5DF7C969612_137; }
|
|
inline void set_F06E829E62F3AFBC045D064E10A4F5DF7C969612_137(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
|
|
{
|
|
___F06E829E62F3AFBC045D064E10A4F5DF7C969612_137 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_F073AA332018FDA0D572E99448FFF1D6422BD520_138() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F073AA332018FDA0D572E99448FFF1D6422BD520_138)); }
|
|
inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 get_F073AA332018FDA0D572E99448FFF1D6422BD520_138() const { return ___F073AA332018FDA0D572E99448FFF1D6422BD520_138; }
|
|
inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 * get_address_of_F073AA332018FDA0D572E99448FFF1D6422BD520_138() { return &___F073AA332018FDA0D572E99448FFF1D6422BD520_138; }
|
|
inline void set_F073AA332018FDA0D572E99448FFF1D6422BD520_138(__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 value)
|
|
{
|
|
___F073AA332018FDA0D572E99448FFF1D6422BD520_138 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_139() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F34B0E10653402E8F788F8BC3F7CD7090928A429_139)); }
|
|
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_F34B0E10653402E8F788F8BC3F7CD7090928A429_139() const { return ___F34B0E10653402E8F788F8BC3F7CD7090928A429_139; }
|
|
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_139() { return &___F34B0E10653402E8F788F8BC3F7CD7090928A429_139; }
|
|
inline void set_F34B0E10653402E8F788F8BC3F7CD7090928A429_139(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value)
|
|
{
|
|
___F34B0E10653402E8F788F8BC3F7CD7090928A429_139 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_140() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_140)); }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_F37E34BEADB04F34FCC31078A59F49856CA83D5B_140() const { return ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_140; }
|
|
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_140() { return &___F37E34BEADB04F34FCC31078A59F49856CA83D5B_140; }
|
|
inline void set_F37E34BEADB04F34FCC31078A59F49856CA83D5B_140(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
|
|
{
|
|
___F37E34BEADB04F34FCC31078A59F49856CA83D5B_140 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_141() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F512A9ABF88066AAEB92684F95CC05D8101B462B_141)); }
|
|
inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 get_F512A9ABF88066AAEB92684F95CC05D8101B462B_141() const { return ___F512A9ABF88066AAEB92684F95CC05D8101B462B_141; }
|
|
inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 * get_address_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_141() { return &___F512A9ABF88066AAEB92684F95CC05D8101B462B_141; }
|
|
inline void set_F512A9ABF88066AAEB92684F95CC05D8101B462B_141(__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 value)
|
|
{
|
|
___F512A9ABF88066AAEB92684F95CC05D8101B462B_141 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_142() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_142)); }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_142() const { return ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_142; }
|
|
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_142() { return &___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_142; }
|
|
inline void set_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_142(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
|
|
{
|
|
___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_142 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_143() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_143)); }
|
|
inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D get_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_143() const { return ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_143; }
|
|
inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D * get_address_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_143() { return &___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_143; }
|
|
inline void set_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_143(__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D value)
|
|
{
|
|
___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_143 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// Mono.Security.X509.X509Certificate
|
|
struct X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA : public RuntimeObject
|
|
{
|
|
public:
|
|
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::decoder
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___decoder_0;
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::m_encodedcert
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_encodedcert_1;
|
|
// System.DateTime Mono.Security.X509.X509Certificate::m_from
|
|
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_from_2;
|
|
// System.DateTime Mono.Security.X509.X509Certificate::m_until
|
|
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_until_3;
|
|
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::issuer
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___issuer_4;
|
|
// System.String Mono.Security.X509.X509Certificate::m_issuername
|
|
String_t* ___m_issuername_5;
|
|
// System.String Mono.Security.X509.X509Certificate::m_keyalgo
|
|
String_t* ___m_keyalgo_6;
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::m_keyalgoparams
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_keyalgoparams_7;
|
|
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::subject
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___subject_8;
|
|
// System.String Mono.Security.X509.X509Certificate::m_subject
|
|
String_t* ___m_subject_9;
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::m_publickey
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_publickey_10;
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::signature
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___signature_11;
|
|
// System.String Mono.Security.X509.X509Certificate::m_signaturealgo
|
|
String_t* ___m_signaturealgo_12;
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::m_signaturealgoparams
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_signaturealgoparams_13;
|
|
// System.Security.Cryptography.RSA Mono.Security.X509.X509Certificate::_rsa
|
|
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * ____rsa_14;
|
|
// System.Security.Cryptography.DSA Mono.Security.X509.X509Certificate::_dsa
|
|
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * ____dsa_15;
|
|
// System.Int32 Mono.Security.X509.X509Certificate::version
|
|
int32_t ___version_16;
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::serialnumber
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___serialnumber_17;
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::issuerUniqueID
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___issuerUniqueID_18;
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::subjectUniqueID
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___subjectUniqueID_19;
|
|
// Mono.Security.X509.X509ExtensionCollection Mono.Security.X509.X509Certificate::extensions
|
|
X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 * ___extensions_20;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_decoder_0() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___decoder_0)); }
|
|
inline ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * get_decoder_0() const { return ___decoder_0; }
|
|
inline ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 ** get_address_of_decoder_0() { return &___decoder_0; }
|
|
inline void set_decoder_0(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * value)
|
|
{
|
|
___decoder_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___decoder_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_encodedcert_1() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___m_encodedcert_1)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_encodedcert_1() const { return ___m_encodedcert_1; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_encodedcert_1() { return &___m_encodedcert_1; }
|
|
inline void set_m_encodedcert_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___m_encodedcert_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_encodedcert_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_from_2() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___m_from_2)); }
|
|
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_from_2() const { return ___m_from_2; }
|
|
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_from_2() { return &___m_from_2; }
|
|
inline void set_m_from_2(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
|
|
{
|
|
___m_from_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_until_3() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___m_until_3)); }
|
|
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_until_3() const { return ___m_until_3; }
|
|
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_until_3() { return &___m_until_3; }
|
|
inline void set_m_until_3(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
|
|
{
|
|
___m_until_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_issuer_4() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___issuer_4)); }
|
|
inline ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * get_issuer_4() const { return ___issuer_4; }
|
|
inline ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 ** get_address_of_issuer_4() { return &___issuer_4; }
|
|
inline void set_issuer_4(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * value)
|
|
{
|
|
___issuer_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___issuer_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_issuername_5() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___m_issuername_5)); }
|
|
inline String_t* get_m_issuername_5() const { return ___m_issuername_5; }
|
|
inline String_t** get_address_of_m_issuername_5() { return &___m_issuername_5; }
|
|
inline void set_m_issuername_5(String_t* value)
|
|
{
|
|
___m_issuername_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_issuername_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_keyalgo_6() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___m_keyalgo_6)); }
|
|
inline String_t* get_m_keyalgo_6() const { return ___m_keyalgo_6; }
|
|
inline String_t** get_address_of_m_keyalgo_6() { return &___m_keyalgo_6; }
|
|
inline void set_m_keyalgo_6(String_t* value)
|
|
{
|
|
___m_keyalgo_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_keyalgo_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_keyalgoparams_7() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___m_keyalgoparams_7)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_keyalgoparams_7() const { return ___m_keyalgoparams_7; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_keyalgoparams_7() { return &___m_keyalgoparams_7; }
|
|
inline void set_m_keyalgoparams_7(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___m_keyalgoparams_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_keyalgoparams_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_subject_8() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___subject_8)); }
|
|
inline ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * get_subject_8() const { return ___subject_8; }
|
|
inline ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 ** get_address_of_subject_8() { return &___subject_8; }
|
|
inline void set_subject_8(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * value)
|
|
{
|
|
___subject_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___subject_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_subject_9() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___m_subject_9)); }
|
|
inline String_t* get_m_subject_9() const { return ___m_subject_9; }
|
|
inline String_t** get_address_of_m_subject_9() { return &___m_subject_9; }
|
|
inline void set_m_subject_9(String_t* value)
|
|
{
|
|
___m_subject_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_subject_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_publickey_10() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___m_publickey_10)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_publickey_10() const { return ___m_publickey_10; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_publickey_10() { return &___m_publickey_10; }
|
|
inline void set_m_publickey_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___m_publickey_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_publickey_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_signature_11() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___signature_11)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_signature_11() const { return ___signature_11; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_signature_11() { return &___signature_11; }
|
|
inline void set_signature_11(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___signature_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___signature_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_signaturealgo_12() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___m_signaturealgo_12)); }
|
|
inline String_t* get_m_signaturealgo_12() const { return ___m_signaturealgo_12; }
|
|
inline String_t** get_address_of_m_signaturealgo_12() { return &___m_signaturealgo_12; }
|
|
inline void set_m_signaturealgo_12(String_t* value)
|
|
{
|
|
___m_signaturealgo_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_signaturealgo_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_signaturealgoparams_13() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___m_signaturealgoparams_13)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_signaturealgoparams_13() const { return ___m_signaturealgoparams_13; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_signaturealgoparams_13() { return &___m_signaturealgoparams_13; }
|
|
inline void set_m_signaturealgoparams_13(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___m_signaturealgoparams_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_signaturealgoparams_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__rsa_14() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ____rsa_14)); }
|
|
inline RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * get__rsa_14() const { return ____rsa_14; }
|
|
inline RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 ** get_address_of__rsa_14() { return &____rsa_14; }
|
|
inline void set__rsa_14(RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * value)
|
|
{
|
|
____rsa_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____rsa_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__dsa_15() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ____dsa_15)); }
|
|
inline DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * get__dsa_15() const { return ____dsa_15; }
|
|
inline DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF ** get_address_of__dsa_15() { return &____dsa_15; }
|
|
inline void set__dsa_15(DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * value)
|
|
{
|
|
____dsa_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____dsa_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_version_16() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___version_16)); }
|
|
inline int32_t get_version_16() const { return ___version_16; }
|
|
inline int32_t* get_address_of_version_16() { return &___version_16; }
|
|
inline void set_version_16(int32_t value)
|
|
{
|
|
___version_16 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_serialnumber_17() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___serialnumber_17)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_serialnumber_17() const { return ___serialnumber_17; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_serialnumber_17() { return &___serialnumber_17; }
|
|
inline void set_serialnumber_17(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___serialnumber_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___serialnumber_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_issuerUniqueID_18() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___issuerUniqueID_18)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_issuerUniqueID_18() const { return ___issuerUniqueID_18; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_issuerUniqueID_18() { return &___issuerUniqueID_18; }
|
|
inline void set_issuerUniqueID_18(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___issuerUniqueID_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___issuerUniqueID_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_subjectUniqueID_19() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___subjectUniqueID_19)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_subjectUniqueID_19() const { return ___subjectUniqueID_19; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_subjectUniqueID_19() { return &___subjectUniqueID_19; }
|
|
inline void set_subjectUniqueID_19(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___subjectUniqueID_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___subjectUniqueID_19), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_extensions_20() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA, ___extensions_20)); }
|
|
inline X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 * get_extensions_20() const { return ___extensions_20; }
|
|
inline X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 ** get_address_of_extensions_20() { return &___extensions_20; }
|
|
inline void set_extensions_20(X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 * value)
|
|
{
|
|
___extensions_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___extensions_20), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_StaticFields
|
|
{
|
|
public:
|
|
// System.String Mono.Security.X509.X509Certificate::encoding_error
|
|
String_t* ___encoding_error_21;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_encoding_error_21() { return static_cast<int32_t>(offsetof(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_StaticFields, ___encoding_error_21)); }
|
|
inline String_t* get_encoding_error_21() const { return ___encoding_error_21; }
|
|
inline String_t** get_address_of_encoding_error_21() { return &___encoding_error_21; }
|
|
inline void set_encoding_error_21(String_t* value)
|
|
{
|
|
___encoding_error_21 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___encoding_error_21), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.AppDomain
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
|
|
{
|
|
public:
|
|
// System.IntPtr System.AppDomain::_mono_app_domain
|
|
intptr_t ____mono_app_domain_1;
|
|
// System.Object System.AppDomain::_evidence
|
|
RuntimeObject * ____evidence_6;
|
|
// System.Object System.AppDomain::_granted
|
|
RuntimeObject * ____granted_7;
|
|
// System.Int32 System.AppDomain::_principalPolicy
|
|
int32_t ____principalPolicy_8;
|
|
// System.AssemblyLoadEventHandler System.AppDomain::AssemblyLoad
|
|
AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * ___AssemblyLoad_11;
|
|
// System.ResolveEventHandler System.AppDomain::AssemblyResolve
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___AssemblyResolve_12;
|
|
// System.EventHandler System.AppDomain::DomainUnload
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___DomainUnload_13;
|
|
// System.EventHandler System.AppDomain::ProcessExit
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___ProcessExit_14;
|
|
// System.ResolveEventHandler System.AppDomain::ResourceResolve
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___ResourceResolve_15;
|
|
// System.ResolveEventHandler System.AppDomain::TypeResolve
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___TypeResolve_16;
|
|
// System.UnhandledExceptionEventHandler System.AppDomain::UnhandledException
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * ___UnhandledException_17;
|
|
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs> System.AppDomain::FirstChanceException
|
|
EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * ___FirstChanceException_18;
|
|
// System.Object System.AppDomain::_domain_manager
|
|
RuntimeObject * ____domain_manager_19;
|
|
// System.ResolveEventHandler System.AppDomain::ReflectionOnlyAssemblyResolve
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___ReflectionOnlyAssemblyResolve_20;
|
|
// System.Object System.AppDomain::_activation
|
|
RuntimeObject * ____activation_21;
|
|
// System.Object System.AppDomain::_applicationIdentity
|
|
RuntimeObject * ____applicationIdentity_22;
|
|
// System.Collections.Generic.List`1<System.String> System.AppDomain::compatibility_switch
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__mono_app_domain_1() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____mono_app_domain_1)); }
|
|
inline intptr_t get__mono_app_domain_1() const { return ____mono_app_domain_1; }
|
|
inline intptr_t* get_address_of__mono_app_domain_1() { return &____mono_app_domain_1; }
|
|
inline void set__mono_app_domain_1(intptr_t value)
|
|
{
|
|
____mono_app_domain_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__evidence_6() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____evidence_6)); }
|
|
inline RuntimeObject * get__evidence_6() const { return ____evidence_6; }
|
|
inline RuntimeObject ** get_address_of__evidence_6() { return &____evidence_6; }
|
|
inline void set__evidence_6(RuntimeObject * value)
|
|
{
|
|
____evidence_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____evidence_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__granted_7() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____granted_7)); }
|
|
inline RuntimeObject * get__granted_7() const { return ____granted_7; }
|
|
inline RuntimeObject ** get_address_of__granted_7() { return &____granted_7; }
|
|
inline void set__granted_7(RuntimeObject * value)
|
|
{
|
|
____granted_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____granted_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__principalPolicy_8() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____principalPolicy_8)); }
|
|
inline int32_t get__principalPolicy_8() const { return ____principalPolicy_8; }
|
|
inline int32_t* get_address_of__principalPolicy_8() { return &____principalPolicy_8; }
|
|
inline void set__principalPolicy_8(int32_t value)
|
|
{
|
|
____principalPolicy_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_AssemblyLoad_11() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___AssemblyLoad_11)); }
|
|
inline AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * get_AssemblyLoad_11() const { return ___AssemblyLoad_11; }
|
|
inline AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 ** get_address_of_AssemblyLoad_11() { return &___AssemblyLoad_11; }
|
|
inline void set_AssemblyLoad_11(AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * value)
|
|
{
|
|
___AssemblyLoad_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyLoad_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_AssemblyResolve_12() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___AssemblyResolve_12)); }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_AssemblyResolve_12() const { return ___AssemblyResolve_12; }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_AssemblyResolve_12() { return &___AssemblyResolve_12; }
|
|
inline void set_AssemblyResolve_12(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
|
|
{
|
|
___AssemblyResolve_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyResolve_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DomainUnload_13() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___DomainUnload_13)); }
|
|
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * get_DomainUnload_13() const { return ___DomainUnload_13; }
|
|
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C ** get_address_of_DomainUnload_13() { return &___DomainUnload_13; }
|
|
inline void set_DomainUnload_13(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * value)
|
|
{
|
|
___DomainUnload_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___DomainUnload_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ProcessExit_14() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ProcessExit_14)); }
|
|
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * get_ProcessExit_14() const { return ___ProcessExit_14; }
|
|
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C ** get_address_of_ProcessExit_14() { return &___ProcessExit_14; }
|
|
inline void set_ProcessExit_14(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * value)
|
|
{
|
|
___ProcessExit_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ProcessExit_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ResourceResolve_15() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ResourceResolve_15)); }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_ResourceResolve_15() const { return ___ResourceResolve_15; }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_ResourceResolve_15() { return &___ResourceResolve_15; }
|
|
inline void set_ResourceResolve_15(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
|
|
{
|
|
___ResourceResolve_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ResourceResolve_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_TypeResolve_16() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___TypeResolve_16)); }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_TypeResolve_16() const { return ___TypeResolve_16; }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_TypeResolve_16() { return &___TypeResolve_16; }
|
|
inline void set_TypeResolve_16(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
|
|
{
|
|
___TypeResolve_16 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___TypeResolve_16), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UnhandledException_17() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___UnhandledException_17)); }
|
|
inline UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * get_UnhandledException_17() const { return ___UnhandledException_17; }
|
|
inline UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE ** get_address_of_UnhandledException_17() { return &___UnhandledException_17; }
|
|
inline void set_UnhandledException_17(UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * value)
|
|
{
|
|
___UnhandledException_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UnhandledException_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_FirstChanceException_18() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___FirstChanceException_18)); }
|
|
inline EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * get_FirstChanceException_18() const { return ___FirstChanceException_18; }
|
|
inline EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF ** get_address_of_FirstChanceException_18() { return &___FirstChanceException_18; }
|
|
inline void set_FirstChanceException_18(EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * value)
|
|
{
|
|
___FirstChanceException_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FirstChanceException_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__domain_manager_19() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____domain_manager_19)); }
|
|
inline RuntimeObject * get__domain_manager_19() const { return ____domain_manager_19; }
|
|
inline RuntimeObject ** get_address_of__domain_manager_19() { return &____domain_manager_19; }
|
|
inline void set__domain_manager_19(RuntimeObject * value)
|
|
{
|
|
____domain_manager_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____domain_manager_19), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ReflectionOnlyAssemblyResolve_20() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ReflectionOnlyAssemblyResolve_20)); }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_ReflectionOnlyAssemblyResolve_20() const { return ___ReflectionOnlyAssemblyResolve_20; }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_ReflectionOnlyAssemblyResolve_20() { return &___ReflectionOnlyAssemblyResolve_20; }
|
|
inline void set_ReflectionOnlyAssemblyResolve_20(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
|
|
{
|
|
___ReflectionOnlyAssemblyResolve_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ReflectionOnlyAssemblyResolve_20), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__activation_21() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____activation_21)); }
|
|
inline RuntimeObject * get__activation_21() const { return ____activation_21; }
|
|
inline RuntimeObject ** get_address_of__activation_21() { return &____activation_21; }
|
|
inline void set__activation_21(RuntimeObject * value)
|
|
{
|
|
____activation_21 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____activation_21), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__applicationIdentity_22() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____applicationIdentity_22)); }
|
|
inline RuntimeObject * get__applicationIdentity_22() const { return ____applicationIdentity_22; }
|
|
inline RuntimeObject ** get_address_of__applicationIdentity_22() { return &____applicationIdentity_22; }
|
|
inline void set__applicationIdentity_22(RuntimeObject * value)
|
|
{
|
|
____applicationIdentity_22 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____applicationIdentity_22), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_compatibility_switch_23() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___compatibility_switch_23)); }
|
|
inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_compatibility_switch_23() const { return ___compatibility_switch_23; }
|
|
inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_compatibility_switch_23() { return &___compatibility_switch_23; }
|
|
inline void set_compatibility_switch_23(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value)
|
|
{
|
|
___compatibility_switch_23 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___compatibility_switch_23), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields
|
|
{
|
|
public:
|
|
// System.String System.AppDomain::_process_guid
|
|
String_t* ____process_guid_2;
|
|
// System.AppDomain System.AppDomain::default_domain
|
|
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * ___default_domain_10;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__process_guid_2() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields, ____process_guid_2)); }
|
|
inline String_t* get__process_guid_2() const { return ____process_guid_2; }
|
|
inline String_t** get_address_of__process_guid_2() { return &____process_guid_2; }
|
|
inline void set__process_guid_2(String_t* value)
|
|
{
|
|
____process_guid_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____process_guid_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_default_domain_10() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields, ___default_domain_10)); }
|
|
inline AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * get_default_domain_10() const { return ___default_domain_10; }
|
|
inline AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 ** get_address_of_default_domain_10() { return &___default_domain_10; }
|
|
inline void set_default_domain_10(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * value)
|
|
{
|
|
___default_domain_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___default_domain_10), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields
|
|
{
|
|
public:
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::type_resolve_in_progress
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___type_resolve_in_progress_3;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___assembly_resolve_in_progress_4;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress_refonly
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___assembly_resolve_in_progress_refonly_5;
|
|
// System.Object System.AppDomain::_principal
|
|
RuntimeObject * ____principal_9;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_type_resolve_in_progress_3() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___type_resolve_in_progress_3)); }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_type_resolve_in_progress_3() const { return ___type_resolve_in_progress_3; }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_type_resolve_in_progress_3() { return &___type_resolve_in_progress_3; }
|
|
inline void set_type_resolve_in_progress_3(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value)
|
|
{
|
|
___type_resolve_in_progress_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___type_resolve_in_progress_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_assembly_resolve_in_progress_4() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___assembly_resolve_in_progress_4)); }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_assembly_resolve_in_progress_4() const { return ___assembly_resolve_in_progress_4; }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_assembly_resolve_in_progress_4() { return &___assembly_resolve_in_progress_4; }
|
|
inline void set_assembly_resolve_in_progress_4(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value)
|
|
{
|
|
___assembly_resolve_in_progress_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___assembly_resolve_in_progress_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_assembly_resolve_in_progress_refonly_5() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___assembly_resolve_in_progress_refonly_5)); }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_assembly_resolve_in_progress_refonly_5() const { return ___assembly_resolve_in_progress_refonly_5; }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_assembly_resolve_in_progress_refonly_5() { return &___assembly_resolve_in_progress_refonly_5; }
|
|
inline void set_assembly_resolve_in_progress_refonly_5(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value)
|
|
{
|
|
___assembly_resolve_in_progress_refonly_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___assembly_resolve_in_progress_refonly_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__principal_9() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ____principal_9)); }
|
|
inline RuntimeObject * get__principal_9() const { return ____principal_9; }
|
|
inline RuntimeObject ** get_address_of__principal_9() { return &____principal_9; }
|
|
inline void set__principal_9(RuntimeObject * value)
|
|
{
|
|
____principal_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____principal_9), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.AppDomain
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_pinvoke : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
|
|
{
|
|
intptr_t ____mono_app_domain_1;
|
|
Il2CppIUnknown* ____evidence_6;
|
|
Il2CppIUnknown* ____granted_7;
|
|
int32_t ____principalPolicy_8;
|
|
Il2CppMethodPointer ___AssemblyLoad_11;
|
|
Il2CppMethodPointer ___AssemblyResolve_12;
|
|
Il2CppMethodPointer ___DomainUnload_13;
|
|
Il2CppMethodPointer ___ProcessExit_14;
|
|
Il2CppMethodPointer ___ResourceResolve_15;
|
|
Il2CppMethodPointer ___TypeResolve_16;
|
|
Il2CppMethodPointer ___UnhandledException_17;
|
|
Il2CppMethodPointer ___FirstChanceException_18;
|
|
Il2CppIUnknown* ____domain_manager_19;
|
|
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_20;
|
|
Il2CppIUnknown* ____activation_21;
|
|
Il2CppIUnknown* ____applicationIdentity_22;
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23;
|
|
};
|
|
// Native definition for COM marshalling of System.AppDomain
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_com : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
|
|
{
|
|
intptr_t ____mono_app_domain_1;
|
|
Il2CppIUnknown* ____evidence_6;
|
|
Il2CppIUnknown* ____granted_7;
|
|
int32_t ____principalPolicy_8;
|
|
Il2CppMethodPointer ___AssemblyLoad_11;
|
|
Il2CppMethodPointer ___AssemblyResolve_12;
|
|
Il2CppMethodPointer ___DomainUnload_13;
|
|
Il2CppMethodPointer ___ProcessExit_14;
|
|
Il2CppMethodPointer ___ResourceResolve_15;
|
|
Il2CppMethodPointer ___TypeResolve_16;
|
|
Il2CppMethodPointer ___UnhandledException_17;
|
|
Il2CppMethodPointer ___FirstChanceException_18;
|
|
Il2CppIUnknown* ____domain_manager_19;
|
|
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_20;
|
|
Il2CppIUnknown* ____activation_21;
|
|
Il2CppIUnknown* ____applicationIdentity_22;
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23;
|
|
};
|
|
|
|
// System.ArgIterator
|
|
struct ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855
|
|
{
|
|
public:
|
|
// System.IntPtr System.ArgIterator::sig
|
|
intptr_t ___sig_0;
|
|
// System.IntPtr System.ArgIterator::args
|
|
intptr_t ___args_1;
|
|
// System.Int32 System.ArgIterator::next_arg
|
|
int32_t ___next_arg_2;
|
|
// System.Int32 System.ArgIterator::num_args
|
|
int32_t ___num_args_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_sig_0() { return static_cast<int32_t>(offsetof(ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855, ___sig_0)); }
|
|
inline intptr_t get_sig_0() const { return ___sig_0; }
|
|
inline intptr_t* get_address_of_sig_0() { return &___sig_0; }
|
|
inline void set_sig_0(intptr_t value)
|
|
{
|
|
___sig_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_args_1() { return static_cast<int32_t>(offsetof(ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855, ___args_1)); }
|
|
inline intptr_t get_args_1() const { return ___args_1; }
|
|
inline intptr_t* get_address_of_args_1() { return &___args_1; }
|
|
inline void set_args_1(intptr_t value)
|
|
{
|
|
___args_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_next_arg_2() { return static_cast<int32_t>(offsetof(ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855, ___next_arg_2)); }
|
|
inline int32_t get_next_arg_2() const { return ___next_arg_2; }
|
|
inline int32_t* get_address_of_next_arg_2() { return &___next_arg_2; }
|
|
inline void set_next_arg_2(int32_t value)
|
|
{
|
|
___next_arg_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_num_args_3() { return static_cast<int32_t>(offsetof(ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855, ___num_args_3)); }
|
|
inline int32_t get_num_args_3() const { return ___num_args_3; }
|
|
inline int32_t* get_address_of_num_args_3() { return &___num_args_3; }
|
|
inline void set_num_args_3(int32_t value)
|
|
{
|
|
___num_args_3 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.AttributeTargets
|
|
struct AttributeTargets_t7CC0DE6D2B11C951E525EE69AD02313792932741
|
|
{
|
|
public:
|
|
// System.Int32 System.AttributeTargets::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AttributeTargets_t7CC0DE6D2B11C951E525EE69AD02313792932741, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.BRECORD
|
|
struct BRECORD_tDDC5F1A5DC569C234C6141FCBA5F8DE8293BC601
|
|
{
|
|
public:
|
|
// System.IntPtr System.BRECORD::pvRecord
|
|
intptr_t ___pvRecord_0;
|
|
// System.IntPtr System.BRECORD::pRecInfo
|
|
intptr_t ___pRecInfo_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_pvRecord_0() { return static_cast<int32_t>(offsetof(BRECORD_tDDC5F1A5DC569C234C6141FCBA5F8DE8293BC601, ___pvRecord_0)); }
|
|
inline intptr_t get_pvRecord_0() const { return ___pvRecord_0; }
|
|
inline intptr_t* get_address_of_pvRecord_0() { return &___pvRecord_0; }
|
|
inline void set_pvRecord_0(intptr_t value)
|
|
{
|
|
___pvRecord_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_pRecInfo_1() { return static_cast<int32_t>(offsetof(BRECORD_tDDC5F1A5DC569C234C6141FCBA5F8DE8293BC601, ___pRecInfo_1)); }
|
|
inline intptr_t get_pRecInfo_1() const { return ___pRecInfo_1; }
|
|
inline intptr_t* get_address_of_pRecInfo_1() { return &___pRecInfo_1; }
|
|
inline void set_pRecInfo_1(intptr_t value)
|
|
{
|
|
___pRecInfo_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Base64FormattingOptions
|
|
struct Base64FormattingOptions_t3D2B3AE9295A0F8B2C84D603C3178659D1C11ADE
|
|
{
|
|
public:
|
|
// System.Int32 System.Base64FormattingOptions::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Base64FormattingOptions_t3D2B3AE9295A0F8B2C84D603C3178659D1C11ADE, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ByteEnum
|
|
struct ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD
|
|
{
|
|
public:
|
|
// System.Byte System.ByteEnum::value__
|
|
uint8_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD, ___value___2)); }
|
|
inline uint8_t get_value___2() const { return ___value___2; }
|
|
inline uint8_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(uint8_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Hashtable
|
|
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.Hashtable_bucket[] System.Collections.Hashtable::buckets
|
|
bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* ___buckets_0;
|
|
// System.Int32 System.Collections.Hashtable::count
|
|
int32_t ___count_1;
|
|
// System.Int32 System.Collections.Hashtable::occupancy
|
|
int32_t ___occupancy_2;
|
|
// System.Int32 System.Collections.Hashtable::loadsize
|
|
int32_t ___loadsize_3;
|
|
// System.Single System.Collections.Hashtable::loadFactor
|
|
float ___loadFactor_4;
|
|
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::version
|
|
int32_t ___version_5;
|
|
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::isWriterInProgress
|
|
bool ___isWriterInProgress_6;
|
|
// System.Collections.ICollection System.Collections.Hashtable::keys
|
|
RuntimeObject* ___keys_7;
|
|
// System.Collections.ICollection System.Collections.Hashtable::values
|
|
RuntimeObject* ___values_8;
|
|
// System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer
|
|
RuntimeObject* ____keycomparer_9;
|
|
// System.Object System.Collections.Hashtable::_syncRoot
|
|
RuntimeObject * ____syncRoot_10;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___buckets_0)); }
|
|
inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* get_buckets_0() const { return ___buckets_0; }
|
|
inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A** get_address_of_buckets_0() { return &___buckets_0; }
|
|
inline void set_buckets_0(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* value)
|
|
{
|
|
___buckets_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___count_1)); }
|
|
inline int32_t get_count_1() const { return ___count_1; }
|
|
inline int32_t* get_address_of_count_1() { return &___count_1; }
|
|
inline void set_count_1(int32_t value)
|
|
{
|
|
___count_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_occupancy_2() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___occupancy_2)); }
|
|
inline int32_t get_occupancy_2() const { return ___occupancy_2; }
|
|
inline int32_t* get_address_of_occupancy_2() { return &___occupancy_2; }
|
|
inline void set_occupancy_2(int32_t value)
|
|
{
|
|
___occupancy_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_loadsize_3() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadsize_3)); }
|
|
inline int32_t get_loadsize_3() const { return ___loadsize_3; }
|
|
inline int32_t* get_address_of_loadsize_3() { return &___loadsize_3; }
|
|
inline void set_loadsize_3(int32_t value)
|
|
{
|
|
___loadsize_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_loadFactor_4() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadFactor_4)); }
|
|
inline float get_loadFactor_4() const { return ___loadFactor_4; }
|
|
inline float* get_address_of_loadFactor_4() { return &___loadFactor_4; }
|
|
inline void set_loadFactor_4(float value)
|
|
{
|
|
___loadFactor_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_version_5() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___version_5)); }
|
|
inline int32_t get_version_5() const { return ___version_5; }
|
|
inline int32_t* get_address_of_version_5() { return &___version_5; }
|
|
inline void set_version_5(int32_t value)
|
|
{
|
|
___version_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isWriterInProgress_6() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___isWriterInProgress_6)); }
|
|
inline bool get_isWriterInProgress_6() const { return ___isWriterInProgress_6; }
|
|
inline bool* get_address_of_isWriterInProgress_6() { return &___isWriterInProgress_6; }
|
|
inline void set_isWriterInProgress_6(bool value)
|
|
{
|
|
___isWriterInProgress_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___keys_7)); }
|
|
inline RuntimeObject* get_keys_7() const { return ___keys_7; }
|
|
inline RuntimeObject** get_address_of_keys_7() { return &___keys_7; }
|
|
inline void set_keys_7(RuntimeObject* value)
|
|
{
|
|
___keys_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___values_8)); }
|
|
inline RuntimeObject* get_values_8() const { return ___values_8; }
|
|
inline RuntimeObject** get_address_of_values_8() { return &___values_8; }
|
|
inline void set_values_8(RuntimeObject* value)
|
|
{
|
|
___values_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__keycomparer_9() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____keycomparer_9)); }
|
|
inline RuntimeObject* get__keycomparer_9() const { return ____keycomparer_9; }
|
|
inline RuntimeObject** get_address_of__keycomparer_9() { return &____keycomparer_9; }
|
|
inline void set__keycomparer_9(RuntimeObject* value)
|
|
{
|
|
____keycomparer_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____keycomparer_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_10() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____syncRoot_10)); }
|
|
inline RuntimeObject * get__syncRoot_10() const { return ____syncRoot_10; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_10() { return &____syncRoot_10; }
|
|
inline void set__syncRoot_10(RuntimeObject * value)
|
|
{
|
|
____syncRoot_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_10), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Configuration.Assemblies.AssemblyHashAlgorithm
|
|
struct AssemblyHashAlgorithm_t31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9
|
|
{
|
|
public:
|
|
// System.Int32 System.Configuration.Assemblies.AssemblyHashAlgorithm::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyHashAlgorithm_t31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Configuration.Assemblies.AssemblyVersionCompatibility
|
|
struct AssemblyVersionCompatibility_tEA062AB37A9A750B33F6CA2898EEF03A4EEA496C
|
|
{
|
|
public:
|
|
// System.Int32 System.Configuration.Assemblies.AssemblyVersionCompatibility::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyVersionCompatibility_tEA062AB37A9A750B33F6CA2898EEF03A4EEA496C, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Delegate
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.IntPtr System.Delegate::method_ptr
|
|
Il2CppMethodPointer ___method_ptr_0;
|
|
// System.IntPtr System.Delegate::invoke_impl
|
|
intptr_t ___invoke_impl_1;
|
|
// System.Object System.Delegate::m_target
|
|
RuntimeObject * ___m_target_2;
|
|
// System.IntPtr System.Delegate::method
|
|
intptr_t ___method_3;
|
|
// System.IntPtr System.Delegate::delegate_trampoline
|
|
intptr_t ___delegate_trampoline_4;
|
|
// System.IntPtr System.Delegate::extra_arg
|
|
intptr_t ___extra_arg_5;
|
|
// System.IntPtr System.Delegate::method_code
|
|
intptr_t ___method_code_6;
|
|
// System.Reflection.MethodInfo System.Delegate::method_info
|
|
MethodInfo_t * ___method_info_7;
|
|
// System.Reflection.MethodInfo System.Delegate::original_method_info
|
|
MethodInfo_t * ___original_method_info_8;
|
|
// System.DelegateData System.Delegate::data
|
|
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
|
|
// System.Boolean System.Delegate::method_is_virtual
|
|
bool ___method_is_virtual_10;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
|
|
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
|
|
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
|
|
inline void set_method_ptr_0(Il2CppMethodPointer value)
|
|
{
|
|
___method_ptr_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
|
|
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
|
|
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
|
|
inline void set_invoke_impl_1(intptr_t value)
|
|
{
|
|
___invoke_impl_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
|
|
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
|
|
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
|
|
inline void set_m_target_2(RuntimeObject * value)
|
|
{
|
|
___m_target_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
|
|
inline intptr_t get_method_3() const { return ___method_3; }
|
|
inline intptr_t* get_address_of_method_3() { return &___method_3; }
|
|
inline void set_method_3(intptr_t value)
|
|
{
|
|
___method_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
|
|
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
|
|
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
|
|
inline void set_delegate_trampoline_4(intptr_t value)
|
|
{
|
|
___delegate_trampoline_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
|
|
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
|
|
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
|
|
inline void set_extra_arg_5(intptr_t value)
|
|
{
|
|
___extra_arg_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
|
|
inline intptr_t get_method_code_6() const { return ___method_code_6; }
|
|
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
|
|
inline void set_method_code_6(intptr_t value)
|
|
{
|
|
___method_code_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
|
|
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
|
|
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
|
|
inline void set_method_info_7(MethodInfo_t * value)
|
|
{
|
|
___method_info_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
|
|
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
|
|
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
|
|
inline void set_original_method_info_8(MethodInfo_t * value)
|
|
{
|
|
___original_method_info_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
|
|
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
|
|
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
|
|
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
|
|
{
|
|
___data_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
|
|
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
|
|
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
|
|
inline void set_method_is_virtual_10(bool value)
|
|
{
|
|
___method_is_virtual_10 = value;
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
MethodInfo_t * ___method_info_7;
|
|
MethodInfo_t * ___original_method_info_8;
|
|
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
|
|
int32_t ___method_is_virtual_10;
|
|
};
|
|
// Native definition for COM marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
MethodInfo_t * ___method_info_7;
|
|
MethodInfo_t * ___original_method_info_8;
|
|
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
|
|
int32_t ___method_is_virtual_10;
|
|
};
|
|
|
|
// System.Exception
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.Exception::_className
|
|
String_t* ____className_1;
|
|
// System.String System.Exception::_message
|
|
String_t* ____message_2;
|
|
// System.Collections.IDictionary System.Exception::_data
|
|
RuntimeObject* ____data_3;
|
|
// System.Exception System.Exception::_innerException
|
|
Exception_t * ____innerException_4;
|
|
// System.String System.Exception::_helpURL
|
|
String_t* ____helpURL_5;
|
|
// System.Object System.Exception::_stackTrace
|
|
RuntimeObject * ____stackTrace_6;
|
|
// System.String System.Exception::_stackTraceString
|
|
String_t* ____stackTraceString_7;
|
|
// System.String System.Exception::_remoteStackTraceString
|
|
String_t* ____remoteStackTraceString_8;
|
|
// System.Int32 System.Exception::_remoteStackIndex
|
|
int32_t ____remoteStackIndex_9;
|
|
// System.Object System.Exception::_dynamicMethods
|
|
RuntimeObject * ____dynamicMethods_10;
|
|
// System.Int32 System.Exception::_HResult
|
|
int32_t ____HResult_11;
|
|
// System.String System.Exception::_source
|
|
String_t* ____source_12;
|
|
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
|
|
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
|
|
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
|
|
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
|
|
// System.IntPtr[] System.Exception::native_trace_ips
|
|
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
|
|
inline String_t* get__className_1() const { return ____className_1; }
|
|
inline String_t** get_address_of__className_1() { return &____className_1; }
|
|
inline void set__className_1(String_t* value)
|
|
{
|
|
____className_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
|
|
inline String_t* get__message_2() const { return ____message_2; }
|
|
inline String_t** get_address_of__message_2() { return &____message_2; }
|
|
inline void set__message_2(String_t* value)
|
|
{
|
|
____message_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
|
|
inline RuntimeObject* get__data_3() const { return ____data_3; }
|
|
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
|
|
inline void set__data_3(RuntimeObject* value)
|
|
{
|
|
____data_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
|
|
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
|
|
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
|
|
inline void set__innerException_4(Exception_t * value)
|
|
{
|
|
____innerException_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
|
|
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
|
|
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
|
|
inline void set__helpURL_5(String_t* value)
|
|
{
|
|
____helpURL_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
|
|
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
|
|
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
|
|
inline void set__stackTrace_6(RuntimeObject * value)
|
|
{
|
|
____stackTrace_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
|
|
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
|
|
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
|
|
inline void set__stackTraceString_7(String_t* value)
|
|
{
|
|
____stackTraceString_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
|
|
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
|
|
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
|
|
inline void set__remoteStackTraceString_8(String_t* value)
|
|
{
|
|
____remoteStackTraceString_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
|
|
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
|
|
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
|
|
inline void set__remoteStackIndex_9(int32_t value)
|
|
{
|
|
____remoteStackIndex_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
|
|
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
|
|
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
|
|
inline void set__dynamicMethods_10(RuntimeObject * value)
|
|
{
|
|
____dynamicMethods_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
|
|
inline int32_t get__HResult_11() const { return ____HResult_11; }
|
|
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
|
|
inline void set__HResult_11(int32_t value)
|
|
{
|
|
____HResult_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
|
|
inline String_t* get__source_12() const { return ____source_12; }
|
|
inline String_t** get_address_of__source_12() { return &____source_12; }
|
|
inline void set__source_12(String_t* value)
|
|
{
|
|
____source_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
|
|
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
|
|
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
|
|
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
|
|
{
|
|
____safeSerializationManager_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
|
|
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
|
|
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
|
|
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
|
|
{
|
|
___captured_traces_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
|
|
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
|
|
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
|
|
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
|
|
{
|
|
___native_trace_ips_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct Exception_t_StaticFields
|
|
{
|
|
public:
|
|
// System.Object System.Exception::s_EDILock
|
|
RuntimeObject * ___s_EDILock_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
|
|
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
|
|
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
|
|
inline void set_s_EDILock_0(RuntimeObject * value)
|
|
{
|
|
___s_EDILock_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Exception
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className_1;
|
|
char* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_pinvoke* ____innerException_4;
|
|
char* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
char* ____stackTraceString_7;
|
|
char* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
char* ____source_12;
|
|
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
};
|
|
// Native definition for COM marshalling of System.Exception
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className_1;
|
|
Il2CppChar* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_com* ____innerException_4;
|
|
Il2CppChar* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
Il2CppChar* ____stackTraceString_7;
|
|
Il2CppChar* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
Il2CppChar* ____source_12;
|
|
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
};
|
|
|
|
// System.ExceptionArgument
|
|
struct ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14
|
|
{
|
|
public:
|
|
// System.Int32 System.ExceptionArgument::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ExceptionResource
|
|
struct ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A
|
|
{
|
|
public:
|
|
// System.Int32 System.ExceptionResource::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.NumberStyles
|
|
struct NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592
|
|
{
|
|
public:
|
|
// System.Int32 System.Globalization.NumberStyles::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.TextInfo
|
|
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Boolean System.Globalization.TextInfo::m_isReadOnly
|
|
bool ___m_isReadOnly_0;
|
|
// System.String System.Globalization.TextInfo::m_cultureName
|
|
String_t* ___m_cultureName_1;
|
|
// System.Globalization.CultureData System.Globalization.TextInfo::m_cultureData
|
|
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_2;
|
|
// System.String System.Globalization.TextInfo::m_textInfoName
|
|
String_t* ___m_textInfoName_3;
|
|
// System.Nullable`1<System.Boolean> System.Globalization.TextInfo::m_IsAsciiCasingSameAsInvariant
|
|
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___m_IsAsciiCasingSameAsInvariant_4;
|
|
// System.String System.Globalization.TextInfo::customCultureName
|
|
String_t* ___customCultureName_6;
|
|
// System.Boolean System.Globalization.TextInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_7;
|
|
// System.Int32 System.Globalization.TextInfo::m_win32LangID
|
|
int32_t ___m_win32LangID_8;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_isReadOnly_0() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_isReadOnly_0)); }
|
|
inline bool get_m_isReadOnly_0() const { return ___m_isReadOnly_0; }
|
|
inline bool* get_address_of_m_isReadOnly_0() { return &___m_isReadOnly_0; }
|
|
inline void set_m_isReadOnly_0(bool value)
|
|
{
|
|
___m_isReadOnly_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_cultureName_1() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_cultureName_1)); }
|
|
inline String_t* get_m_cultureName_1() const { return ___m_cultureName_1; }
|
|
inline String_t** get_address_of_m_cultureName_1() { return &___m_cultureName_1; }
|
|
inline void set_m_cultureName_1(String_t* value)
|
|
{
|
|
___m_cultureName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_cultureData_2() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_cultureData_2)); }
|
|
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_2() const { return ___m_cultureData_2; }
|
|
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_2() { return &___m_cultureData_2; }
|
|
inline void set_m_cultureData_2(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value)
|
|
{
|
|
___m_cultureData_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_textInfoName_3() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_textInfoName_3)); }
|
|
inline String_t* get_m_textInfoName_3() const { return ___m_textInfoName_3; }
|
|
inline String_t** get_address_of_m_textInfoName_3() { return &___m_textInfoName_3; }
|
|
inline void set_m_textInfoName_3(String_t* value)
|
|
{
|
|
___m_textInfoName_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_textInfoName_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_IsAsciiCasingSameAsInvariant_4() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_IsAsciiCasingSameAsInvariant_4)); }
|
|
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get_m_IsAsciiCasingSameAsInvariant_4() const { return ___m_IsAsciiCasingSameAsInvariant_4; }
|
|
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of_m_IsAsciiCasingSameAsInvariant_4() { return &___m_IsAsciiCasingSameAsInvariant_4; }
|
|
inline void set_m_IsAsciiCasingSameAsInvariant_4(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
|
|
{
|
|
___m_IsAsciiCasingSameAsInvariant_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_customCultureName_6() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___customCultureName_6)); }
|
|
inline String_t* get_customCultureName_6() const { return ___customCultureName_6; }
|
|
inline String_t** get_address_of_customCultureName_6() { return &___customCultureName_6; }
|
|
inline void set_customCultureName_6(String_t* value)
|
|
{
|
|
___customCultureName_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___customCultureName_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_useUserOverride_7() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_useUserOverride_7)); }
|
|
inline bool get_m_useUserOverride_7() const { return ___m_useUserOverride_7; }
|
|
inline bool* get_address_of_m_useUserOverride_7() { return &___m_useUserOverride_7; }
|
|
inline void set_m_useUserOverride_7(bool value)
|
|
{
|
|
___m_useUserOverride_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_win32LangID_8() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_win32LangID_8)); }
|
|
inline int32_t get_m_win32LangID_8() const { return ___m_win32LangID_8; }
|
|
inline int32_t* get_address_of_m_win32LangID_8() { return &___m_win32LangID_8; }
|
|
inline void set_m_win32LangID_8(int32_t value)
|
|
{
|
|
___m_win32LangID_8 = value;
|
|
}
|
|
};
|
|
|
|
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8_StaticFields
|
|
{
|
|
public:
|
|
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.TextInfo::s_Invariant
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___s_Invariant_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_s_Invariant_5() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8_StaticFields, ___s_Invariant_5)); }
|
|
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_s_Invariant_5() const { return ___s_Invariant_5; }
|
|
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_s_Invariant_5() { return &___s_Invariant_5; }
|
|
inline void set_s_Invariant_5(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value)
|
|
{
|
|
___s_Invariant_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_Invariant_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.UnicodeCategory
|
|
struct UnicodeCategory_tC192ED2DE3FB1214FA458FEEF2380911F1C32788
|
|
{
|
|
public:
|
|
// System.Int32 System.Globalization.UnicodeCategory::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnicodeCategory_tC192ED2DE3FB1214FA458FEEF2380911F1C32788, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.MemoryStream
|
|
struct MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7
|
|
{
|
|
public:
|
|
// System.Byte[] System.IO.MemoryStream::_buffer
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____buffer_4;
|
|
// System.Int32 System.IO.MemoryStream::_origin
|
|
int32_t ____origin_5;
|
|
// System.Int32 System.IO.MemoryStream::_position
|
|
int32_t ____position_6;
|
|
// System.Int32 System.IO.MemoryStream::_length
|
|
int32_t ____length_7;
|
|
// System.Int32 System.IO.MemoryStream::_capacity
|
|
int32_t ____capacity_8;
|
|
// System.Boolean System.IO.MemoryStream::_expandable
|
|
bool ____expandable_9;
|
|
// System.Boolean System.IO.MemoryStream::_writable
|
|
bool ____writable_10;
|
|
// System.Boolean System.IO.MemoryStream::_exposable
|
|
bool ____exposable_11;
|
|
// System.Boolean System.IO.MemoryStream::_isOpen
|
|
bool ____isOpen_12;
|
|
// System.Threading.Tasks.Task`1<System.Int32> System.IO.MemoryStream::_lastReadTask
|
|
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ____lastReadTask_13;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__buffer_4() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____buffer_4)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__buffer_4() const { return ____buffer_4; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__buffer_4() { return &____buffer_4; }
|
|
inline void set__buffer_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
____buffer_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____buffer_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__origin_5() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____origin_5)); }
|
|
inline int32_t get__origin_5() const { return ____origin_5; }
|
|
inline int32_t* get_address_of__origin_5() { return &____origin_5; }
|
|
inline void set__origin_5(int32_t value)
|
|
{
|
|
____origin_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__position_6() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____position_6)); }
|
|
inline int32_t get__position_6() const { return ____position_6; }
|
|
inline int32_t* get_address_of__position_6() { return &____position_6; }
|
|
inline void set__position_6(int32_t value)
|
|
{
|
|
____position_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__length_7() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____length_7)); }
|
|
inline int32_t get__length_7() const { return ____length_7; }
|
|
inline int32_t* get_address_of__length_7() { return &____length_7; }
|
|
inline void set__length_7(int32_t value)
|
|
{
|
|
____length_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__capacity_8() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____capacity_8)); }
|
|
inline int32_t get__capacity_8() const { return ____capacity_8; }
|
|
inline int32_t* get_address_of__capacity_8() { return &____capacity_8; }
|
|
inline void set__capacity_8(int32_t value)
|
|
{
|
|
____capacity_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__expandable_9() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____expandable_9)); }
|
|
inline bool get__expandable_9() const { return ____expandable_9; }
|
|
inline bool* get_address_of__expandable_9() { return &____expandable_9; }
|
|
inline void set__expandable_9(bool value)
|
|
{
|
|
____expandable_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__writable_10() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____writable_10)); }
|
|
inline bool get__writable_10() const { return ____writable_10; }
|
|
inline bool* get_address_of__writable_10() { return &____writable_10; }
|
|
inline void set__writable_10(bool value)
|
|
{
|
|
____writable_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__exposable_11() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____exposable_11)); }
|
|
inline bool get__exposable_11() const { return ____exposable_11; }
|
|
inline bool* get_address_of__exposable_11() { return &____exposable_11; }
|
|
inline void set__exposable_11(bool value)
|
|
{
|
|
____exposable_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__isOpen_12() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____isOpen_12)); }
|
|
inline bool get__isOpen_12() const { return ____isOpen_12; }
|
|
inline bool* get_address_of__isOpen_12() { return &____isOpen_12; }
|
|
inline void set__isOpen_12(bool value)
|
|
{
|
|
____isOpen_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__lastReadTask_13() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____lastReadTask_13)); }
|
|
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get__lastReadTask_13() const { return ____lastReadTask_13; }
|
|
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of__lastReadTask_13() { return &____lastReadTask_13; }
|
|
inline void set__lastReadTask_13(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value)
|
|
{
|
|
____lastReadTask_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____lastReadTask_13), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.StringReader
|
|
struct StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A
|
|
{
|
|
public:
|
|
// System.String System.IO.StringReader::_s
|
|
String_t* ____s_4;
|
|
// System.Int32 System.IO.StringReader::_pos
|
|
int32_t ____pos_5;
|
|
// System.Int32 System.IO.StringReader::_length
|
|
int32_t ____length_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__s_4() { return static_cast<int32_t>(offsetof(StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12, ____s_4)); }
|
|
inline String_t* get__s_4() const { return ____s_4; }
|
|
inline String_t** get_address_of__s_4() { return &____s_4; }
|
|
inline void set__s_4(String_t* value)
|
|
{
|
|
____s_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____s_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__pos_5() { return static_cast<int32_t>(offsetof(StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12, ____pos_5)); }
|
|
inline int32_t get__pos_5() const { return ____pos_5; }
|
|
inline int32_t* get_address_of__pos_5() { return &____pos_5; }
|
|
inline void set__pos_5(int32_t value)
|
|
{
|
|
____pos_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__length_6() { return static_cast<int32_t>(offsetof(StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12, ____length_6)); }
|
|
inline int32_t get__length_6() const { return ____length_6; }
|
|
inline int32_t* get_address_of__length_6() { return &____length_6; }
|
|
inline void set__length_6(int32_t value)
|
|
{
|
|
____length_6 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.Assembly
|
|
struct Assembly_t : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.IntPtr System.Reflection.Assembly::_mono_assembly
|
|
intptr_t ____mono_assembly_0;
|
|
// System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder
|
|
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
|
|
// System.Object System.Reflection.Assembly::_evidence
|
|
RuntimeObject * ____evidence_2;
|
|
// System.Object System.Reflection.Assembly::_minimum
|
|
RuntimeObject * ____minimum_3;
|
|
// System.Object System.Reflection.Assembly::_optional
|
|
RuntimeObject * ____optional_4;
|
|
// System.Object System.Reflection.Assembly::_refuse
|
|
RuntimeObject * ____refuse_5;
|
|
// System.Object System.Reflection.Assembly::_granted
|
|
RuntimeObject * ____granted_6;
|
|
// System.Object System.Reflection.Assembly::_denied
|
|
RuntimeObject * ____denied_7;
|
|
// System.Boolean System.Reflection.Assembly::fromByteArray
|
|
bool ___fromByteArray_8;
|
|
// System.String System.Reflection.Assembly::assemblyName
|
|
String_t* ___assemblyName_9;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); }
|
|
inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; }
|
|
inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; }
|
|
inline void set__mono_assembly_0(intptr_t value)
|
|
{
|
|
____mono_assembly_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); }
|
|
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
|
|
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
|
|
inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value)
|
|
{
|
|
___resolve_event_holder_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
|
|
inline RuntimeObject * get__evidence_2() const { return ____evidence_2; }
|
|
inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; }
|
|
inline void set__evidence_2(RuntimeObject * value)
|
|
{
|
|
____evidence_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); }
|
|
inline RuntimeObject * get__minimum_3() const { return ____minimum_3; }
|
|
inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; }
|
|
inline void set__minimum_3(RuntimeObject * value)
|
|
{
|
|
____minimum_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); }
|
|
inline RuntimeObject * get__optional_4() const { return ____optional_4; }
|
|
inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; }
|
|
inline void set__optional_4(RuntimeObject * value)
|
|
{
|
|
____optional_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); }
|
|
inline RuntimeObject * get__refuse_5() const { return ____refuse_5; }
|
|
inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; }
|
|
inline void set__refuse_5(RuntimeObject * value)
|
|
{
|
|
____refuse_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); }
|
|
inline RuntimeObject * get__granted_6() const { return ____granted_6; }
|
|
inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; }
|
|
inline void set__granted_6(RuntimeObject * value)
|
|
{
|
|
____granted_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); }
|
|
inline RuntimeObject * get__denied_7() const { return ____denied_7; }
|
|
inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; }
|
|
inline void set__denied_7(RuntimeObject * value)
|
|
{
|
|
____denied_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
|
|
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
|
|
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
|
|
inline void set_fromByteArray_8(bool value)
|
|
{
|
|
___fromByteArray_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
|
|
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
|
|
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
|
|
inline void set_assemblyName_9(String_t* value)
|
|
{
|
|
___assemblyName_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
|
|
struct Assembly_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ____mono_assembly_0;
|
|
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
|
|
Il2CppIUnknown* ____evidence_2;
|
|
Il2CppIUnknown* ____minimum_3;
|
|
Il2CppIUnknown* ____optional_4;
|
|
Il2CppIUnknown* ____refuse_5;
|
|
Il2CppIUnknown* ____granted_6;
|
|
Il2CppIUnknown* ____denied_7;
|
|
int32_t ___fromByteArray_8;
|
|
char* ___assemblyName_9;
|
|
};
|
|
// Native definition for COM marshalling of System.Reflection.Assembly
|
|
struct Assembly_t_marshaled_com
|
|
{
|
|
intptr_t ____mono_assembly_0;
|
|
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
|
|
Il2CppIUnknown* ____evidence_2;
|
|
Il2CppIUnknown* ____minimum_3;
|
|
Il2CppIUnknown* ____optional_4;
|
|
Il2CppIUnknown* ____refuse_5;
|
|
Il2CppIUnknown* ____granted_6;
|
|
Il2CppIUnknown* ____denied_7;
|
|
int32_t ___fromByteArray_8;
|
|
Il2CppChar* ___assemblyName_9;
|
|
};
|
|
|
|
// System.Reflection.AssemblyContentType
|
|
struct AssemblyContentType_t9869DE40B7B1976B389F3B6A5A5D18B09E623401
|
|
{
|
|
public:
|
|
// System.Int32 System.Reflection.AssemblyContentType::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyContentType_t9869DE40B7B1976B389F3B6A5A5D18B09E623401, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.AssemblyNameFlags
|
|
struct AssemblyNameFlags_t7834EDF078E7ECA985AA434A1EA0D95C2A44F256
|
|
{
|
|
public:
|
|
// System.Int32 System.Reflection.AssemblyNameFlags::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyNameFlags_t7834EDF078E7ECA985AA434A1EA0D95C2A44F256, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.BindingFlags
|
|
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
|
|
{
|
|
public:
|
|
// System.Int32 System.Reflection.BindingFlags::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.MemberTypes
|
|
struct MemberTypes_t3FEDC67D8B994D09AF155FFB2CFD26023F245041
|
|
{
|
|
public:
|
|
// System.Int32 System.Reflection.MemberTypes::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MemberTypes_t3FEDC67D8B994D09AF155FFB2CFD26023F245041, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.MethodInfo
|
|
struct MethodInfo_t : public MethodBase_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.ProcessorArchitecture
|
|
struct ProcessorArchitecture_t0CFB73A83469D6AC222B9FE46E81EAC73C2627C7
|
|
{
|
|
public:
|
|
// System.Int32 System.Reflection.ProcessorArchitecture::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ProcessorArchitecture_t0CFB73A83469D6AC222B9FE46E81EAC73C2627C7, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.RuntimeFieldInfo
|
|
struct RuntimeFieldInfo_t9C8BA644F857EBE60EC6587AE1C1148E420E66F7 : public FieldInfo_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Runtime.Remoting.Contexts.Context
|
|
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32 System.Runtime.Remoting.Contexts.Context::domain_id
|
|
int32_t ___domain_id_0;
|
|
// System.Int32 System.Runtime.Remoting.Contexts.Context::context_id
|
|
int32_t ___context_id_1;
|
|
// System.UIntPtr System.Runtime.Remoting.Contexts.Context::static_data
|
|
uintptr_t ___static_data_2;
|
|
// System.UIntPtr System.Runtime.Remoting.Contexts.Context::data
|
|
uintptr_t ___data_3;
|
|
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::server_context_sink_chain
|
|
RuntimeObject* ___server_context_sink_chain_6;
|
|
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::client_context_sink_chain
|
|
RuntimeObject* ___client_context_sink_chain_7;
|
|
// System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty> System.Runtime.Remoting.Contexts.Context::context_properties
|
|
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * ___context_properties_8;
|
|
// System.LocalDataStoreHolder modreq(System.Runtime.CompilerServices.IsVolatile) System.Runtime.Remoting.Contexts.Context::_localDataStore
|
|
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ____localDataStore_10;
|
|
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::context_dynamic_properties
|
|
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___context_dynamic_properties_13;
|
|
// System.Runtime.Remoting.Contexts.ContextCallbackObject System.Runtime.Remoting.Contexts.Context::callback_object
|
|
ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * ___callback_object_14;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_domain_id_0() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___domain_id_0)); }
|
|
inline int32_t get_domain_id_0() const { return ___domain_id_0; }
|
|
inline int32_t* get_address_of_domain_id_0() { return &___domain_id_0; }
|
|
inline void set_domain_id_0(int32_t value)
|
|
{
|
|
___domain_id_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_context_id_1() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___context_id_1)); }
|
|
inline int32_t get_context_id_1() const { return ___context_id_1; }
|
|
inline int32_t* get_address_of_context_id_1() { return &___context_id_1; }
|
|
inline void set_context_id_1(int32_t value)
|
|
{
|
|
___context_id_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_static_data_2() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___static_data_2)); }
|
|
inline uintptr_t get_static_data_2() const { return ___static_data_2; }
|
|
inline uintptr_t* get_address_of_static_data_2() { return &___static_data_2; }
|
|
inline void set_static_data_2(uintptr_t value)
|
|
{
|
|
___static_data_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_data_3() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___data_3)); }
|
|
inline uintptr_t get_data_3() const { return ___data_3; }
|
|
inline uintptr_t* get_address_of_data_3() { return &___data_3; }
|
|
inline void set_data_3(uintptr_t value)
|
|
{
|
|
___data_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_server_context_sink_chain_6() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___server_context_sink_chain_6)); }
|
|
inline RuntimeObject* get_server_context_sink_chain_6() const { return ___server_context_sink_chain_6; }
|
|
inline RuntimeObject** get_address_of_server_context_sink_chain_6() { return &___server_context_sink_chain_6; }
|
|
inline void set_server_context_sink_chain_6(RuntimeObject* value)
|
|
{
|
|
___server_context_sink_chain_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___server_context_sink_chain_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_client_context_sink_chain_7() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___client_context_sink_chain_7)); }
|
|
inline RuntimeObject* get_client_context_sink_chain_7() const { return ___client_context_sink_chain_7; }
|
|
inline RuntimeObject** get_address_of_client_context_sink_chain_7() { return &___client_context_sink_chain_7; }
|
|
inline void set_client_context_sink_chain_7(RuntimeObject* value)
|
|
{
|
|
___client_context_sink_chain_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___client_context_sink_chain_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_context_properties_8() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___context_properties_8)); }
|
|
inline List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * get_context_properties_8() const { return ___context_properties_8; }
|
|
inline List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D ** get_address_of_context_properties_8() { return &___context_properties_8; }
|
|
inline void set_context_properties_8(List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * value)
|
|
{
|
|
___context_properties_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___context_properties_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__localDataStore_10() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ____localDataStore_10)); }
|
|
inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * get__localDataStore_10() const { return ____localDataStore_10; }
|
|
inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 ** get_address_of__localDataStore_10() { return &____localDataStore_10; }
|
|
inline void set__localDataStore_10(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * value)
|
|
{
|
|
____localDataStore_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____localDataStore_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_context_dynamic_properties_13() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___context_dynamic_properties_13)); }
|
|
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get_context_dynamic_properties_13() const { return ___context_dynamic_properties_13; }
|
|
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of_context_dynamic_properties_13() { return &___context_dynamic_properties_13; }
|
|
inline void set_context_dynamic_properties_13(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value)
|
|
{
|
|
___context_dynamic_properties_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___context_dynamic_properties_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_callback_object_14() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___callback_object_14)); }
|
|
inline ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * get_callback_object_14() const { return ___callback_object_14; }
|
|
inline ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 ** get_address_of_callback_object_14() { return &___callback_object_14; }
|
|
inline void set_callback_object_14(ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * value)
|
|
{
|
|
___callback_object_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___callback_object_14), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields
|
|
{
|
|
public:
|
|
// System.Object[] System.Runtime.Remoting.Contexts.Context::local_slots
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___local_slots_4;
|
|
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::default_server_context_sink
|
|
RuntimeObject* ___default_server_context_sink_5;
|
|
// System.Int32 System.Runtime.Remoting.Contexts.Context::global_count
|
|
int32_t ___global_count_9;
|
|
// System.LocalDataStoreMgr System.Runtime.Remoting.Contexts.Context::_localDataStoreMgr
|
|
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ____localDataStoreMgr_11;
|
|
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::global_dynamic_properties
|
|
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___global_dynamic_properties_12;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_local_slots_4() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___local_slots_4)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_local_slots_4() const { return ___local_slots_4; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_local_slots_4() { return &___local_slots_4; }
|
|
inline void set_local_slots_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
___local_slots_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___local_slots_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_default_server_context_sink_5() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___default_server_context_sink_5)); }
|
|
inline RuntimeObject* get_default_server_context_sink_5() const { return ___default_server_context_sink_5; }
|
|
inline RuntimeObject** get_address_of_default_server_context_sink_5() { return &___default_server_context_sink_5; }
|
|
inline void set_default_server_context_sink_5(RuntimeObject* value)
|
|
{
|
|
___default_server_context_sink_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___default_server_context_sink_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_global_count_9() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___global_count_9)); }
|
|
inline int32_t get_global_count_9() const { return ___global_count_9; }
|
|
inline int32_t* get_address_of_global_count_9() { return &___global_count_9; }
|
|
inline void set_global_count_9(int32_t value)
|
|
{
|
|
___global_count_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__localDataStoreMgr_11() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ____localDataStoreMgr_11)); }
|
|
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get__localDataStoreMgr_11() const { return ____localDataStoreMgr_11; }
|
|
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of__localDataStoreMgr_11() { return &____localDataStoreMgr_11; }
|
|
inline void set__localDataStoreMgr_11(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value)
|
|
{
|
|
____localDataStoreMgr_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____localDataStoreMgr_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_global_dynamic_properties_12() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___global_dynamic_properties_12)); }
|
|
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get_global_dynamic_properties_12() const { return ___global_dynamic_properties_12; }
|
|
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of_global_dynamic_properties_12() { return &___global_dynamic_properties_12; }
|
|
inline void set_global_dynamic_properties_12(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value)
|
|
{
|
|
___global_dynamic_properties_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___global_dynamic_properties_12), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Runtime.Remoting.Contexts.Context
|
|
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke
|
|
{
|
|
int32_t ___domain_id_0;
|
|
int32_t ___context_id_1;
|
|
uintptr_t ___static_data_2;
|
|
uintptr_t ___data_3;
|
|
RuntimeObject* ___server_context_sink_chain_6;
|
|
RuntimeObject* ___client_context_sink_chain_7;
|
|
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * ___context_properties_8;
|
|
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ____localDataStore_10;
|
|
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___context_dynamic_properties_13;
|
|
ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * ___callback_object_14;
|
|
};
|
|
// Native definition for COM marshalling of System.Runtime.Remoting.Contexts.Context
|
|
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com
|
|
{
|
|
int32_t ___domain_id_0;
|
|
int32_t ___context_id_1;
|
|
uintptr_t ___static_data_2;
|
|
uintptr_t ___data_3;
|
|
RuntimeObject* ___server_context_sink_chain_6;
|
|
RuntimeObject* ___client_context_sink_chain_7;
|
|
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * ___context_properties_8;
|
|
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ____localDataStore_10;
|
|
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___context_dynamic_properties_13;
|
|
ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * ___callback_object_14;
|
|
};
|
|
|
|
// System.Runtime.Serialization.StreamingContextStates
|
|
struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F
|
|
{
|
|
public:
|
|
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.RuntimeFieldHandle
|
|
struct RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF
|
|
{
|
|
public:
|
|
// System.IntPtr System.RuntimeFieldHandle::value
|
|
intptr_t ___value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___value_0)); }
|
|
inline intptr_t get_value_0() const { return ___value_0; }
|
|
inline intptr_t* get_address_of_value_0() { return &___value_0; }
|
|
inline void set_value_0(intptr_t value)
|
|
{
|
|
___value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.RuntimeTypeHandle
|
|
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
|
|
{
|
|
public:
|
|
// System.IntPtr System.RuntimeTypeHandle::value
|
|
intptr_t ___value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
|
|
inline intptr_t get_value_0() const { return ___value_0; }
|
|
inline intptr_t* get_address_of_value_0() { return &___value_0; }
|
|
inline void set_value_0(intptr_t value)
|
|
{
|
|
___value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Security.Cryptography.CspProviderFlags
|
|
struct CspProviderFlags_t58BDA302C5856D2AA7A41E97CAB5BDD0516571F4
|
|
{
|
|
public:
|
|
// System.Int32 System.Security.Cryptography.CspProviderFlags::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CspProviderFlags_t58BDA302C5856D2AA7A41E97CAB5BDD0516571F4, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Security.Cryptography.DSACryptoServiceProvider
|
|
struct DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8 : public DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF
|
|
{
|
|
public:
|
|
// Mono.Security.Cryptography.KeyPairPersistence System.Security.Cryptography.DSACryptoServiceProvider::store
|
|
KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 * ___store_3;
|
|
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::persistKey
|
|
bool ___persistKey_4;
|
|
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::persisted
|
|
bool ___persisted_5;
|
|
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::privateKeyExportable
|
|
bool ___privateKeyExportable_6;
|
|
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::m_disposed
|
|
bool ___m_disposed_7;
|
|
// Mono.Security.Cryptography.DSAManaged System.Security.Cryptography.DSACryptoServiceProvider::dsa
|
|
DSAManaged_tB329E8EFCE56CF874A8EEAC16BEAC13146F47FEA * ___dsa_8;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_store_3() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8, ___store_3)); }
|
|
inline KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 * get_store_3() const { return ___store_3; }
|
|
inline KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 ** get_address_of_store_3() { return &___store_3; }
|
|
inline void set_store_3(KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 * value)
|
|
{
|
|
___store_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___store_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_persistKey_4() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8, ___persistKey_4)); }
|
|
inline bool get_persistKey_4() const { return ___persistKey_4; }
|
|
inline bool* get_address_of_persistKey_4() { return &___persistKey_4; }
|
|
inline void set_persistKey_4(bool value)
|
|
{
|
|
___persistKey_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_persisted_5() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8, ___persisted_5)); }
|
|
inline bool get_persisted_5() const { return ___persisted_5; }
|
|
inline bool* get_address_of_persisted_5() { return &___persisted_5; }
|
|
inline void set_persisted_5(bool value)
|
|
{
|
|
___persisted_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_privateKeyExportable_6() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8, ___privateKeyExportable_6)); }
|
|
inline bool get_privateKeyExportable_6() const { return ___privateKeyExportable_6; }
|
|
inline bool* get_address_of_privateKeyExportable_6() { return &___privateKeyExportable_6; }
|
|
inline void set_privateKeyExportable_6(bool value)
|
|
{
|
|
___privateKeyExportable_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_disposed_7() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8, ___m_disposed_7)); }
|
|
inline bool get_m_disposed_7() const { return ___m_disposed_7; }
|
|
inline bool* get_address_of_m_disposed_7() { return &___m_disposed_7; }
|
|
inline void set_m_disposed_7(bool value)
|
|
{
|
|
___m_disposed_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dsa_8() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8, ___dsa_8)); }
|
|
inline DSAManaged_tB329E8EFCE56CF874A8EEAC16BEAC13146F47FEA * get_dsa_8() const { return ___dsa_8; }
|
|
inline DSAManaged_tB329E8EFCE56CF874A8EEAC16BEAC13146F47FEA ** get_address_of_dsa_8() { return &___dsa_8; }
|
|
inline void set_dsa_8(DSAManaged_tB329E8EFCE56CF874A8EEAC16BEAC13146F47FEA * value)
|
|
{
|
|
___dsa_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dsa_8), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8_StaticFields
|
|
{
|
|
public:
|
|
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::useMachineKeyStore
|
|
bool ___useMachineKeyStore_9;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_useMachineKeyStore_9() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8_StaticFields, ___useMachineKeyStore_9)); }
|
|
inline bool get_useMachineKeyStore_9() const { return ___useMachineKeyStore_9; }
|
|
inline bool* get_address_of_useMachineKeyStore_9() { return &___useMachineKeyStore_9; }
|
|
inline void set_useMachineKeyStore_9(bool value)
|
|
{
|
|
___useMachineKeyStore_9 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.StringComparison
|
|
struct StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0
|
|
{
|
|
public:
|
|
// System.Int32 System.StringComparison::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.TermInfoStrings
|
|
struct TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F
|
|
{
|
|
public:
|
|
// System.Int32 System.TermInfoStrings::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Threading.StackCrawlMark
|
|
struct StackCrawlMark_t857D8DE506F124E737FD26BB7ADAAAAD13E4F943
|
|
{
|
|
public:
|
|
// System.Int32 System.Threading.StackCrawlMark::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StackCrawlMark_t857D8DE506F124E737FD26BB7ADAAAAD13E4F943, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.TypeCode
|
|
struct TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6
|
|
{
|
|
public:
|
|
// System.Int32 System.TypeCode::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.AggregateException
|
|
struct AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E : public Exception_t
|
|
{
|
|
public:
|
|
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> System.AggregateException::m_innerExceptions
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * ___m_innerExceptions_17;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_innerExceptions_17() { return static_cast<int32_t>(offsetof(AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E, ___m_innerExceptions_17)); }
|
|
inline ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * get_m_innerExceptions_17() const { return ___m_innerExceptions_17; }
|
|
inline ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 ** get_address_of_m_innerExceptions_17() { return &___m_innerExceptions_17; }
|
|
inline void set_m_innerExceptions_17(ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * value)
|
|
{
|
|
___m_innerExceptions_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_innerExceptions_17), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ApplicationException
|
|
struct ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 : public Exception_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.AttributeUsageAttribute
|
|
struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.AttributeTargets System.AttributeUsageAttribute::m_attributeTarget
|
|
int32_t ___m_attributeTarget_0;
|
|
// System.Boolean System.AttributeUsageAttribute::m_allowMultiple
|
|
bool ___m_allowMultiple_1;
|
|
// System.Boolean System.AttributeUsageAttribute::m_inherited
|
|
bool ___m_inherited_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_attributeTarget_0() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_attributeTarget_0)); }
|
|
inline int32_t get_m_attributeTarget_0() const { return ___m_attributeTarget_0; }
|
|
inline int32_t* get_address_of_m_attributeTarget_0() { return &___m_attributeTarget_0; }
|
|
inline void set_m_attributeTarget_0(int32_t value)
|
|
{
|
|
___m_attributeTarget_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_allowMultiple_1() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_allowMultiple_1)); }
|
|
inline bool get_m_allowMultiple_1() const { return ___m_allowMultiple_1; }
|
|
inline bool* get_address_of_m_allowMultiple_1() { return &___m_allowMultiple_1; }
|
|
inline void set_m_allowMultiple_1(bool value)
|
|
{
|
|
___m_allowMultiple_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_inherited_2() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_inherited_2)); }
|
|
inline bool get_m_inherited_2() const { return ___m_inherited_2; }
|
|
inline bool* get_address_of_m_inherited_2() { return &___m_inherited_2; }
|
|
inline void set_m_inherited_2(bool value)
|
|
{
|
|
___m_inherited_2 = value;
|
|
}
|
|
};
|
|
|
|
struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_StaticFields
|
|
{
|
|
public:
|
|
// System.AttributeUsageAttribute System.AttributeUsageAttribute::Default
|
|
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ___Default_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_StaticFields, ___Default_3)); }
|
|
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * get_Default_3() const { return ___Default_3; }
|
|
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 ** get_address_of_Default_3() { return &___Default_3; }
|
|
inline void set_Default_3(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * value)
|
|
{
|
|
___Default_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.NumberFormatInfo
|
|
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___numberGroupSizes_1;
|
|
// System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___currencyGroupSizes_2;
|
|
// System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___percentGroupSizes_3;
|
|
// System.String System.Globalization.NumberFormatInfo::positiveSign
|
|
String_t* ___positiveSign_4;
|
|
// System.String System.Globalization.NumberFormatInfo::negativeSign
|
|
String_t* ___negativeSign_5;
|
|
// System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator
|
|
String_t* ___numberDecimalSeparator_6;
|
|
// System.String System.Globalization.NumberFormatInfo::numberGroupSeparator
|
|
String_t* ___numberGroupSeparator_7;
|
|
// System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator
|
|
String_t* ___currencyGroupSeparator_8;
|
|
// System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator
|
|
String_t* ___currencyDecimalSeparator_9;
|
|
// System.String System.Globalization.NumberFormatInfo::currencySymbol
|
|
String_t* ___currencySymbol_10;
|
|
// System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol
|
|
String_t* ___ansiCurrencySymbol_11;
|
|
// System.String System.Globalization.NumberFormatInfo::nanSymbol
|
|
String_t* ___nanSymbol_12;
|
|
// System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol
|
|
String_t* ___positiveInfinitySymbol_13;
|
|
// System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol
|
|
String_t* ___negativeInfinitySymbol_14;
|
|
// System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator
|
|
String_t* ___percentDecimalSeparator_15;
|
|
// System.String System.Globalization.NumberFormatInfo::percentGroupSeparator
|
|
String_t* ___percentGroupSeparator_16;
|
|
// System.String System.Globalization.NumberFormatInfo::percentSymbol
|
|
String_t* ___percentSymbol_17;
|
|
// System.String System.Globalization.NumberFormatInfo::perMilleSymbol
|
|
String_t* ___perMilleSymbol_18;
|
|
// System.String[] System.Globalization.NumberFormatInfo::nativeDigits
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___nativeDigits_19;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::m_dataItem
|
|
int32_t ___m_dataItem_20;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits
|
|
int32_t ___numberDecimalDigits_21;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits
|
|
int32_t ___currencyDecimalDigits_22;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern
|
|
int32_t ___currencyPositivePattern_23;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern
|
|
int32_t ___currencyNegativePattern_24;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern
|
|
int32_t ___numberNegativePattern_25;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern
|
|
int32_t ___percentPositivePattern_26;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern
|
|
int32_t ___percentNegativePattern_27;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits
|
|
int32_t ___percentDecimalDigits_28;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution
|
|
int32_t ___digitSubstitution_29;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::isReadOnly
|
|
bool ___isReadOnly_30;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_31;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant
|
|
bool ___m_isInvariant_32;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber
|
|
bool ___validForParseAsNumber_33;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency
|
|
bool ___validForParseAsCurrency_34;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_numberGroupSizes_1() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSizes_1)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_numberGroupSizes_1() const { return ___numberGroupSizes_1; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_numberGroupSizes_1() { return &___numberGroupSizes_1; }
|
|
inline void set_numberGroupSizes_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
___numberGroupSizes_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSizes_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyGroupSizes_2() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSizes_2)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_currencyGroupSizes_2() const { return ___currencyGroupSizes_2; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_currencyGroupSizes_2() { return &___currencyGroupSizes_2; }
|
|
inline void set_currencyGroupSizes_2(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
___currencyGroupSizes_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSizes_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentGroupSizes_3() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSizes_3)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_percentGroupSizes_3() const { return ___percentGroupSizes_3; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_percentGroupSizes_3() { return &___percentGroupSizes_3; }
|
|
inline void set_percentGroupSizes_3(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
___percentGroupSizes_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSizes_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_positiveSign_4() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveSign_4)); }
|
|
inline String_t* get_positiveSign_4() const { return ___positiveSign_4; }
|
|
inline String_t** get_address_of_positiveSign_4() { return &___positiveSign_4; }
|
|
inline void set_positiveSign_4(String_t* value)
|
|
{
|
|
___positiveSign_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___positiveSign_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_negativeSign_5() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeSign_5)); }
|
|
inline String_t* get_negativeSign_5() const { return ___negativeSign_5; }
|
|
inline String_t** get_address_of_negativeSign_5() { return &___negativeSign_5; }
|
|
inline void set_negativeSign_5(String_t* value)
|
|
{
|
|
___negativeSign_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___negativeSign_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_numberDecimalSeparator_6() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalSeparator_6)); }
|
|
inline String_t* get_numberDecimalSeparator_6() const { return ___numberDecimalSeparator_6; }
|
|
inline String_t** get_address_of_numberDecimalSeparator_6() { return &___numberDecimalSeparator_6; }
|
|
inline void set_numberDecimalSeparator_6(String_t* value)
|
|
{
|
|
___numberDecimalSeparator_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___numberDecimalSeparator_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_numberGroupSeparator_7() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSeparator_7)); }
|
|
inline String_t* get_numberGroupSeparator_7() const { return ___numberGroupSeparator_7; }
|
|
inline String_t** get_address_of_numberGroupSeparator_7() { return &___numberGroupSeparator_7; }
|
|
inline void set_numberGroupSeparator_7(String_t* value)
|
|
{
|
|
___numberGroupSeparator_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSeparator_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSeparator_8)); }
|
|
inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; }
|
|
inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; }
|
|
inline void set_currencyGroupSeparator_8(String_t* value)
|
|
{
|
|
___currencyGroupSeparator_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSeparator_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyDecimalSeparator_9() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalSeparator_9)); }
|
|
inline String_t* get_currencyDecimalSeparator_9() const { return ___currencyDecimalSeparator_9; }
|
|
inline String_t** get_address_of_currencyDecimalSeparator_9() { return &___currencyDecimalSeparator_9; }
|
|
inline void set_currencyDecimalSeparator_9(String_t* value)
|
|
{
|
|
___currencyDecimalSeparator_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___currencyDecimalSeparator_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencySymbol_10() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencySymbol_10)); }
|
|
inline String_t* get_currencySymbol_10() const { return ___currencySymbol_10; }
|
|
inline String_t** get_address_of_currencySymbol_10() { return &___currencySymbol_10; }
|
|
inline void set_currencySymbol_10(String_t* value)
|
|
{
|
|
___currencySymbol_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___currencySymbol_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ansiCurrencySymbol_11() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___ansiCurrencySymbol_11)); }
|
|
inline String_t* get_ansiCurrencySymbol_11() const { return ___ansiCurrencySymbol_11; }
|
|
inline String_t** get_address_of_ansiCurrencySymbol_11() { return &___ansiCurrencySymbol_11; }
|
|
inline void set_ansiCurrencySymbol_11(String_t* value)
|
|
{
|
|
___ansiCurrencySymbol_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ansiCurrencySymbol_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_nanSymbol_12() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nanSymbol_12)); }
|
|
inline String_t* get_nanSymbol_12() const { return ___nanSymbol_12; }
|
|
inline String_t** get_address_of_nanSymbol_12() { return &___nanSymbol_12; }
|
|
inline void set_nanSymbol_12(String_t* value)
|
|
{
|
|
___nanSymbol_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___nanSymbol_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_positiveInfinitySymbol_13() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveInfinitySymbol_13)); }
|
|
inline String_t* get_positiveInfinitySymbol_13() const { return ___positiveInfinitySymbol_13; }
|
|
inline String_t** get_address_of_positiveInfinitySymbol_13() { return &___positiveInfinitySymbol_13; }
|
|
inline void set_positiveInfinitySymbol_13(String_t* value)
|
|
{
|
|
___positiveInfinitySymbol_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___positiveInfinitySymbol_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeInfinitySymbol_14)); }
|
|
inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; }
|
|
inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; }
|
|
inline void set_negativeInfinitySymbol_14(String_t* value)
|
|
{
|
|
___negativeInfinitySymbol_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___negativeInfinitySymbol_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentDecimalSeparator_15() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalSeparator_15)); }
|
|
inline String_t* get_percentDecimalSeparator_15() const { return ___percentDecimalSeparator_15; }
|
|
inline String_t** get_address_of_percentDecimalSeparator_15() { return &___percentDecimalSeparator_15; }
|
|
inline void set_percentDecimalSeparator_15(String_t* value)
|
|
{
|
|
___percentDecimalSeparator_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___percentDecimalSeparator_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentGroupSeparator_16() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSeparator_16)); }
|
|
inline String_t* get_percentGroupSeparator_16() const { return ___percentGroupSeparator_16; }
|
|
inline String_t** get_address_of_percentGroupSeparator_16() { return &___percentGroupSeparator_16; }
|
|
inline void set_percentGroupSeparator_16(String_t* value)
|
|
{
|
|
___percentGroupSeparator_16 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSeparator_16), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentSymbol_17() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentSymbol_17)); }
|
|
inline String_t* get_percentSymbol_17() const { return ___percentSymbol_17; }
|
|
inline String_t** get_address_of_percentSymbol_17() { return &___percentSymbol_17; }
|
|
inline void set_percentSymbol_17(String_t* value)
|
|
{
|
|
___percentSymbol_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___percentSymbol_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_perMilleSymbol_18() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___perMilleSymbol_18)); }
|
|
inline String_t* get_perMilleSymbol_18() const { return ___perMilleSymbol_18; }
|
|
inline String_t** get_address_of_perMilleSymbol_18() { return &___perMilleSymbol_18; }
|
|
inline void set_perMilleSymbol_18(String_t* value)
|
|
{
|
|
___perMilleSymbol_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___perMilleSymbol_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_nativeDigits_19() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nativeDigits_19)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_nativeDigits_19() const { return ___nativeDigits_19; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_nativeDigits_19() { return &___nativeDigits_19; }
|
|
inline void set_nativeDigits_19(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___nativeDigits_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___nativeDigits_19), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_dataItem_20() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_dataItem_20)); }
|
|
inline int32_t get_m_dataItem_20() const { return ___m_dataItem_20; }
|
|
inline int32_t* get_address_of_m_dataItem_20() { return &___m_dataItem_20; }
|
|
inline void set_m_dataItem_20(int32_t value)
|
|
{
|
|
___m_dataItem_20 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_numberDecimalDigits_21() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalDigits_21)); }
|
|
inline int32_t get_numberDecimalDigits_21() const { return ___numberDecimalDigits_21; }
|
|
inline int32_t* get_address_of_numberDecimalDigits_21() { return &___numberDecimalDigits_21; }
|
|
inline void set_numberDecimalDigits_21(int32_t value)
|
|
{
|
|
___numberDecimalDigits_21 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyDecimalDigits_22() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalDigits_22)); }
|
|
inline int32_t get_currencyDecimalDigits_22() const { return ___currencyDecimalDigits_22; }
|
|
inline int32_t* get_address_of_currencyDecimalDigits_22() { return &___currencyDecimalDigits_22; }
|
|
inline void set_currencyDecimalDigits_22(int32_t value)
|
|
{
|
|
___currencyDecimalDigits_22 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyPositivePattern_23() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyPositivePattern_23)); }
|
|
inline int32_t get_currencyPositivePattern_23() const { return ___currencyPositivePattern_23; }
|
|
inline int32_t* get_address_of_currencyPositivePattern_23() { return &___currencyPositivePattern_23; }
|
|
inline void set_currencyPositivePattern_23(int32_t value)
|
|
{
|
|
___currencyPositivePattern_23 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyNegativePattern_24() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyNegativePattern_24)); }
|
|
inline int32_t get_currencyNegativePattern_24() const { return ___currencyNegativePattern_24; }
|
|
inline int32_t* get_address_of_currencyNegativePattern_24() { return &___currencyNegativePattern_24; }
|
|
inline void set_currencyNegativePattern_24(int32_t value)
|
|
{
|
|
___currencyNegativePattern_24 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_numberNegativePattern_25() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberNegativePattern_25)); }
|
|
inline int32_t get_numberNegativePattern_25() const { return ___numberNegativePattern_25; }
|
|
inline int32_t* get_address_of_numberNegativePattern_25() { return &___numberNegativePattern_25; }
|
|
inline void set_numberNegativePattern_25(int32_t value)
|
|
{
|
|
___numberNegativePattern_25 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentPositivePattern_26)); }
|
|
inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; }
|
|
inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; }
|
|
inline void set_percentPositivePattern_26(int32_t value)
|
|
{
|
|
___percentPositivePattern_26 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentNegativePattern_27() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentNegativePattern_27)); }
|
|
inline int32_t get_percentNegativePattern_27() const { return ___percentNegativePattern_27; }
|
|
inline int32_t* get_address_of_percentNegativePattern_27() { return &___percentNegativePattern_27; }
|
|
inline void set_percentNegativePattern_27(int32_t value)
|
|
{
|
|
___percentNegativePattern_27 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentDecimalDigits_28() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalDigits_28)); }
|
|
inline int32_t get_percentDecimalDigits_28() const { return ___percentDecimalDigits_28; }
|
|
inline int32_t* get_address_of_percentDecimalDigits_28() { return &___percentDecimalDigits_28; }
|
|
inline void set_percentDecimalDigits_28(int32_t value)
|
|
{
|
|
___percentDecimalDigits_28 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_digitSubstitution_29() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___digitSubstitution_29)); }
|
|
inline int32_t get_digitSubstitution_29() const { return ___digitSubstitution_29; }
|
|
inline int32_t* get_address_of_digitSubstitution_29() { return &___digitSubstitution_29; }
|
|
inline void set_digitSubstitution_29(int32_t value)
|
|
{
|
|
___digitSubstitution_29 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isReadOnly_30() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___isReadOnly_30)); }
|
|
inline bool get_isReadOnly_30() const { return ___isReadOnly_30; }
|
|
inline bool* get_address_of_isReadOnly_30() { return &___isReadOnly_30; }
|
|
inline void set_isReadOnly_30(bool value)
|
|
{
|
|
___isReadOnly_30 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_useUserOverride_31() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_useUserOverride_31)); }
|
|
inline bool get_m_useUserOverride_31() const { return ___m_useUserOverride_31; }
|
|
inline bool* get_address_of_m_useUserOverride_31() { return &___m_useUserOverride_31; }
|
|
inline void set_m_useUserOverride_31(bool value)
|
|
{
|
|
___m_useUserOverride_31 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_isInvariant_32() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_isInvariant_32)); }
|
|
inline bool get_m_isInvariant_32() const { return ___m_isInvariant_32; }
|
|
inline bool* get_address_of_m_isInvariant_32() { return &___m_isInvariant_32; }
|
|
inline void set_m_isInvariant_32(bool value)
|
|
{
|
|
___m_isInvariant_32 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_validForParseAsNumber_33() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsNumber_33)); }
|
|
inline bool get_validForParseAsNumber_33() const { return ___validForParseAsNumber_33; }
|
|
inline bool* get_address_of_validForParseAsNumber_33() { return &___validForParseAsNumber_33; }
|
|
inline void set_validForParseAsNumber_33(bool value)
|
|
{
|
|
___validForParseAsNumber_33 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_validForParseAsCurrency_34() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsCurrency_34)); }
|
|
inline bool get_validForParseAsCurrency_34() const { return ___validForParseAsCurrency_34; }
|
|
inline bool* get_address_of_validForParseAsCurrency_34() { return &___validForParseAsCurrency_34; }
|
|
inline void set_validForParseAsCurrency_34(bool value)
|
|
{
|
|
___validForParseAsCurrency_34 = value;
|
|
}
|
|
};
|
|
|
|
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields
|
|
{
|
|
public:
|
|
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___invariantInfo_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_invariantInfo_0() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields, ___invariantInfo_0)); }
|
|
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_invariantInfo_0() const { return ___invariantInfo_0; }
|
|
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; }
|
|
inline void set_invariantInfo_0(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
|
|
{
|
|
___invariantInfo_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.MulticastDelegate
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
public:
|
|
// System.Delegate[] System.MulticastDelegate::delegates
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
|
|
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
|
|
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
|
|
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
|
|
{
|
|
___delegates_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates_11;
|
|
};
|
|
// Native definition for COM marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates_11;
|
|
};
|
|
|
|
// System.Reflection.AssemblyName
|
|
struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.Reflection.AssemblyName::name
|
|
String_t* ___name_0;
|
|
// System.String System.Reflection.AssemblyName::codebase
|
|
String_t* ___codebase_1;
|
|
// System.Int32 System.Reflection.AssemblyName::major
|
|
int32_t ___major_2;
|
|
// System.Int32 System.Reflection.AssemblyName::minor
|
|
int32_t ___minor_3;
|
|
// System.Int32 System.Reflection.AssemblyName::build
|
|
int32_t ___build_4;
|
|
// System.Int32 System.Reflection.AssemblyName::revision
|
|
int32_t ___revision_5;
|
|
// System.Globalization.CultureInfo System.Reflection.AssemblyName::cultureinfo
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___cultureinfo_6;
|
|
// System.Reflection.AssemblyNameFlags System.Reflection.AssemblyName::flags
|
|
int32_t ___flags_7;
|
|
// System.Configuration.Assemblies.AssemblyHashAlgorithm System.Reflection.AssemblyName::hashalg
|
|
int32_t ___hashalg_8;
|
|
// System.Reflection.StrongNameKeyPair System.Reflection.AssemblyName::keypair
|
|
StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9;
|
|
// System.Byte[] System.Reflection.AssemblyName::publicKey
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___publicKey_10;
|
|
// System.Byte[] System.Reflection.AssemblyName::keyToken
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___keyToken_11;
|
|
// System.Configuration.Assemblies.AssemblyVersionCompatibility System.Reflection.AssemblyName::versioncompat
|
|
int32_t ___versioncompat_12;
|
|
// System.Version System.Reflection.AssemblyName::version
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13;
|
|
// System.Reflection.ProcessorArchitecture System.Reflection.AssemblyName::processor_architecture
|
|
int32_t ___processor_architecture_14;
|
|
// System.Reflection.AssemblyContentType System.Reflection.AssemblyName::contentType
|
|
int32_t ___contentType_15;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___name_0)); }
|
|
inline String_t* get_name_0() const { return ___name_0; }
|
|
inline String_t** get_address_of_name_0() { return &___name_0; }
|
|
inline void set_name_0(String_t* value)
|
|
{
|
|
___name_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_codebase_1() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___codebase_1)); }
|
|
inline String_t* get_codebase_1() const { return ___codebase_1; }
|
|
inline String_t** get_address_of_codebase_1() { return &___codebase_1; }
|
|
inline void set_codebase_1(String_t* value)
|
|
{
|
|
___codebase_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___codebase_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_major_2() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___major_2)); }
|
|
inline int32_t get_major_2() const { return ___major_2; }
|
|
inline int32_t* get_address_of_major_2() { return &___major_2; }
|
|
inline void set_major_2(int32_t value)
|
|
{
|
|
___major_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_minor_3() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___minor_3)); }
|
|
inline int32_t get_minor_3() const { return ___minor_3; }
|
|
inline int32_t* get_address_of_minor_3() { return &___minor_3; }
|
|
inline void set_minor_3(int32_t value)
|
|
{
|
|
___minor_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_build_4() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___build_4)); }
|
|
inline int32_t get_build_4() const { return ___build_4; }
|
|
inline int32_t* get_address_of_build_4() { return &___build_4; }
|
|
inline void set_build_4(int32_t value)
|
|
{
|
|
___build_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_revision_5() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___revision_5)); }
|
|
inline int32_t get_revision_5() const { return ___revision_5; }
|
|
inline int32_t* get_address_of_revision_5() { return &___revision_5; }
|
|
inline void set_revision_5(int32_t value)
|
|
{
|
|
___revision_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cultureinfo_6() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___cultureinfo_6)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_cultureinfo_6() const { return ___cultureinfo_6; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_cultureinfo_6() { return &___cultureinfo_6; }
|
|
inline void set_cultureinfo_6(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___cultureinfo_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___cultureinfo_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_flags_7() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___flags_7)); }
|
|
inline int32_t get_flags_7() const { return ___flags_7; }
|
|
inline int32_t* get_address_of_flags_7() { return &___flags_7; }
|
|
inline void set_flags_7(int32_t value)
|
|
{
|
|
___flags_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_hashalg_8() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___hashalg_8)); }
|
|
inline int32_t get_hashalg_8() const { return ___hashalg_8; }
|
|
inline int32_t* get_address_of_hashalg_8() { return &___hashalg_8; }
|
|
inline void set_hashalg_8(int32_t value)
|
|
{
|
|
___hashalg_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_keypair_9() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___keypair_9)); }
|
|
inline StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * get_keypair_9() const { return ___keypair_9; }
|
|
inline StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD ** get_address_of_keypair_9() { return &___keypair_9; }
|
|
inline void set_keypair_9(StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * value)
|
|
{
|
|
___keypair_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___keypair_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_publicKey_10() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___publicKey_10)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_publicKey_10() const { return ___publicKey_10; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_publicKey_10() { return &___publicKey_10; }
|
|
inline void set_publicKey_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___publicKey_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___publicKey_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_keyToken_11() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___keyToken_11)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_keyToken_11() const { return ___keyToken_11; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_keyToken_11() { return &___keyToken_11; }
|
|
inline void set_keyToken_11(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___keyToken_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___keyToken_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_versioncompat_12() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___versioncompat_12)); }
|
|
inline int32_t get_versioncompat_12() const { return ___versioncompat_12; }
|
|
inline int32_t* get_address_of_versioncompat_12() { return &___versioncompat_12; }
|
|
inline void set_versioncompat_12(int32_t value)
|
|
{
|
|
___versioncompat_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_version_13() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___version_13)); }
|
|
inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * get_version_13() const { return ___version_13; }
|
|
inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD ** get_address_of_version_13() { return &___version_13; }
|
|
inline void set_version_13(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * value)
|
|
{
|
|
___version_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___version_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_processor_architecture_14() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___processor_architecture_14)); }
|
|
inline int32_t get_processor_architecture_14() const { return ___processor_architecture_14; }
|
|
inline int32_t* get_address_of_processor_architecture_14() { return &___processor_architecture_14; }
|
|
inline void set_processor_architecture_14(int32_t value)
|
|
{
|
|
___processor_architecture_14 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_contentType_15() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___contentType_15)); }
|
|
inline int32_t get_contentType_15() const { return ___contentType_15; }
|
|
inline int32_t* get_address_of_contentType_15() { return &___contentType_15; }
|
|
inline void set_contentType_15(int32_t value)
|
|
{
|
|
___contentType_15 = value;
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Reflection.AssemblyName
|
|
struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82_marshaled_pinvoke
|
|
{
|
|
char* ___name_0;
|
|
char* ___codebase_1;
|
|
int32_t ___major_2;
|
|
int32_t ___minor_3;
|
|
int32_t ___build_4;
|
|
int32_t ___revision_5;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___cultureinfo_6;
|
|
int32_t ___flags_7;
|
|
int32_t ___hashalg_8;
|
|
StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9;
|
|
Il2CppSafeArray/*NONE*/* ___publicKey_10;
|
|
Il2CppSafeArray/*NONE*/* ___keyToken_11;
|
|
int32_t ___versioncompat_12;
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13;
|
|
int32_t ___processor_architecture_14;
|
|
int32_t ___contentType_15;
|
|
};
|
|
// Native definition for COM marshalling of System.Reflection.AssemblyName
|
|
struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82_marshaled_com
|
|
{
|
|
Il2CppChar* ___name_0;
|
|
Il2CppChar* ___codebase_1;
|
|
int32_t ___major_2;
|
|
int32_t ___minor_3;
|
|
int32_t ___build_4;
|
|
int32_t ___revision_5;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___cultureinfo_6;
|
|
int32_t ___flags_7;
|
|
int32_t ___hashalg_8;
|
|
StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9;
|
|
Il2CppSafeArray/*NONE*/* ___publicKey_10;
|
|
Il2CppSafeArray/*NONE*/* ___keyToken_11;
|
|
int32_t ___versioncompat_12;
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13;
|
|
int32_t ___processor_architecture_14;
|
|
int32_t ___contentType_15;
|
|
};
|
|
|
|
// System.Reflection.RtFieldInfo
|
|
struct RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 : public RuntimeFieldInfo_t9C8BA644F857EBE60EC6587AE1C1148E420E66F7
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.RuntimeMethodInfo
|
|
struct RuntimeMethodInfo_tAA605450647FBADB423FB22832C3432CEEB36E3E : public MethodInfo_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034
|
|
{
|
|
public:
|
|
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
|
|
RuntimeObject * ___m_additionalContext_0;
|
|
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
|
|
int32_t ___m_state_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); }
|
|
inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; }
|
|
inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; }
|
|
inline void set_m_additionalContext_0(RuntimeObject * value)
|
|
{
|
|
___m_additionalContext_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); }
|
|
inline int32_t get_m_state_1() const { return ___m_state_1; }
|
|
inline int32_t* get_address_of_m_state_1() { return &___m_state_1; }
|
|
inline void set_m_state_1(int32_t value)
|
|
{
|
|
___m_state_1 = value;
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ___m_additionalContext_0;
|
|
int32_t ___m_state_1;
|
|
};
|
|
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ___m_additionalContext_0;
|
|
int32_t ___m_state_1;
|
|
};
|
|
|
|
// System.Security.Cryptography.RSACryptoServiceProvider
|
|
struct RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4 : public RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145
|
|
{
|
|
public:
|
|
// Mono.Security.Cryptography.KeyPairPersistence System.Security.Cryptography.RSACryptoServiceProvider::store
|
|
KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 * ___store_6;
|
|
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::persistKey
|
|
bool ___persistKey_7;
|
|
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::persisted
|
|
bool ___persisted_8;
|
|
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::privateKeyExportable
|
|
bool ___privateKeyExportable_9;
|
|
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::m_disposed
|
|
bool ___m_disposed_10;
|
|
// Mono.Security.Cryptography.RSAManaged System.Security.Cryptography.RSACryptoServiceProvider::rsa
|
|
RSAManaged_t7FC74A986C888D9301EC82EBE4A37C293CDA963A * ___rsa_11;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_store_6() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___store_6)); }
|
|
inline KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 * get_store_6() const { return ___store_6; }
|
|
inline KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 ** get_address_of_store_6() { return &___store_6; }
|
|
inline void set_store_6(KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 * value)
|
|
{
|
|
___store_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___store_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_persistKey_7() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___persistKey_7)); }
|
|
inline bool get_persistKey_7() const { return ___persistKey_7; }
|
|
inline bool* get_address_of_persistKey_7() { return &___persistKey_7; }
|
|
inline void set_persistKey_7(bool value)
|
|
{
|
|
___persistKey_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_persisted_8() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___persisted_8)); }
|
|
inline bool get_persisted_8() const { return ___persisted_8; }
|
|
inline bool* get_address_of_persisted_8() { return &___persisted_8; }
|
|
inline void set_persisted_8(bool value)
|
|
{
|
|
___persisted_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_privateKeyExportable_9() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___privateKeyExportable_9)); }
|
|
inline bool get_privateKeyExportable_9() const { return ___privateKeyExportable_9; }
|
|
inline bool* get_address_of_privateKeyExportable_9() { return &___privateKeyExportable_9; }
|
|
inline void set_privateKeyExportable_9(bool value)
|
|
{
|
|
___privateKeyExportable_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_disposed_10() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___m_disposed_10)); }
|
|
inline bool get_m_disposed_10() const { return ___m_disposed_10; }
|
|
inline bool* get_address_of_m_disposed_10() { return &___m_disposed_10; }
|
|
inline void set_m_disposed_10(bool value)
|
|
{
|
|
___m_disposed_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_rsa_11() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___rsa_11)); }
|
|
inline RSAManaged_t7FC74A986C888D9301EC82EBE4A37C293CDA963A * get_rsa_11() const { return ___rsa_11; }
|
|
inline RSAManaged_t7FC74A986C888D9301EC82EBE4A37C293CDA963A ** get_address_of_rsa_11() { return &___rsa_11; }
|
|
inline void set_rsa_11(RSAManaged_t7FC74A986C888D9301EC82EBE4A37C293CDA963A * value)
|
|
{
|
|
___rsa_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___rsa_11), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4_StaticFields
|
|
{
|
|
public:
|
|
// System.Security.Cryptography.CspProviderFlags modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.RSACryptoServiceProvider::s_UseMachineKeyStore
|
|
int32_t ___s_UseMachineKeyStore_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_s_UseMachineKeyStore_2() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4_StaticFields, ___s_UseMachineKeyStore_2)); }
|
|
inline int32_t get_s_UseMachineKeyStore_2() const { return ___s_UseMachineKeyStore_2; }
|
|
inline int32_t* get_address_of_s_UseMachineKeyStore_2() { return &___s_UseMachineKeyStore_2; }
|
|
inline void set_s_UseMachineKeyStore_2(int32_t value)
|
|
{
|
|
___s_UseMachineKeyStore_2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.SystemException
|
|
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Type
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
public:
|
|
// System.RuntimeTypeHandle System.Type::_impl
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
|
|
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
|
|
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
|
|
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
|
|
{
|
|
____impl_9 = value;
|
|
}
|
|
};
|
|
|
|
struct Type_t_StaticFields
|
|
{
|
|
public:
|
|
// System.Reflection.MemberFilter System.Type::FilterAttribute
|
|
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
|
|
// System.Reflection.MemberFilter System.Type::FilterName
|
|
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
|
|
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
|
|
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
|
|
// System.Object System.Type::Missing
|
|
RuntimeObject * ___Missing_3;
|
|
// System.Char System.Type::Delimiter
|
|
Il2CppChar ___Delimiter_4;
|
|
// System.Type[] System.Type::EmptyTypes
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
|
|
// System.Reflection.Binder System.Type::defaultBinder
|
|
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
|
|
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
|
|
{
|
|
___FilterAttribute_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
|
|
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
|
|
{
|
|
___FilterName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
|
|
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
|
|
{
|
|
___FilterNameIgnoreCase_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
|
|
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
|
|
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
|
|
inline void set_Missing_3(RuntimeObject * value)
|
|
{
|
|
___Missing_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
|
|
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
|
|
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
|
|
inline void set_Delimiter_4(Il2CppChar value)
|
|
{
|
|
___Delimiter_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
|
|
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
|
|
{
|
|
___EmptyTypes_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
|
|
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
|
|
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
|
|
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
|
|
{
|
|
___defaultBinder_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// Mono.Xml.SmallXmlParserException
|
|
struct SmallXmlParserException_t96963A305B0E2C72C5EDC72952F1D079DE102140 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
// System.Int32 Mono.Xml.SmallXmlParserException::line
|
|
int32_t ___line_17;
|
|
// System.Int32 Mono.Xml.SmallXmlParserException::column
|
|
int32_t ___column_18;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_line_17() { return static_cast<int32_t>(offsetof(SmallXmlParserException_t96963A305B0E2C72C5EDC72952F1D079DE102140, ___line_17)); }
|
|
inline int32_t get_line_17() const { return ___line_17; }
|
|
inline int32_t* get_address_of_line_17() { return &___line_17; }
|
|
inline void set_line_17(int32_t value)
|
|
{
|
|
___line_17 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_column_18() { return static_cast<int32_t>(offsetof(SmallXmlParserException_t96963A305B0E2C72C5EDC72952F1D079DE102140, ___column_18)); }
|
|
inline int32_t get_column_18() const { return ___column_18; }
|
|
inline int32_t* get_address_of_column_18() { return &___column_18; }
|
|
inline void set_column_18(int32_t value)
|
|
{
|
|
___column_18 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Action
|
|
struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579 : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.AppDomainUnloadedException
|
|
struct AppDomainUnloadedException_t8DFC322660E43B2A11853B62BF43078F42496A35 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ArgumentException
|
|
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
// System.String System.ArgumentException::m_paramName
|
|
String_t* ___m_paramName_17;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
|
|
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
|
|
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
|
|
inline void set_m_paramName_17(String_t* value)
|
|
{
|
|
___m_paramName_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ArithmeticException
|
|
struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ArrayTypeMismatchException
|
|
struct ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.AssemblyLoadEventHandler
|
|
struct AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.AsyncCallback
|
|
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.BadImageFormatException
|
|
struct BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
// System.String System.BadImageFormatException::_fileName
|
|
String_t* ____fileName_17;
|
|
// System.String System.BadImageFormatException::_fusionLog
|
|
String_t* ____fusionLog_18;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__fileName_17() { return static_cast<int32_t>(offsetof(BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9, ____fileName_17)); }
|
|
inline String_t* get__fileName_17() const { return ____fileName_17; }
|
|
inline String_t** get_address_of__fileName_17() { return &____fileName_17; }
|
|
inline void set__fileName_17(String_t* value)
|
|
{
|
|
____fileName_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____fileName_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__fusionLog_18() { return static_cast<int32_t>(offsetof(BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9, ____fusionLog_18)); }
|
|
inline String_t* get__fusionLog_18() const { return ____fusionLog_18; }
|
|
inline String_t** get_address_of__fusionLog_18() { return &____fusionLog_18; }
|
|
inline void set__fusionLog_18(String_t* value)
|
|
{
|
|
____fusionLog_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____fusionLog_18), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.CannotUnloadAppDomainException
|
|
struct CannotUnloadAppDomainException_t77C958E8438F7A43A17AC069D151A50E9F781A89 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.EventHandler
|
|
struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs>
|
|
struct EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.FormatException
|
|
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.IO.IOException
|
|
struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
// System.String System.IO.IOException::_maybeFullPath
|
|
String_t* ____maybeFullPath_17;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast<int32_t>(offsetof(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA, ____maybeFullPath_17)); }
|
|
inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; }
|
|
inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; }
|
|
inline void set__maybeFullPath_17(String_t* value)
|
|
{
|
|
____maybeFullPath_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____maybeFullPath_17), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.IndexOutOfRangeException
|
|
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.InvalidCastException
|
|
struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.InvalidOperationException
|
|
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.RankException
|
|
struct RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.AmbiguousMatchException
|
|
struct AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.MonoMethod
|
|
struct MonoMethod_t : public RuntimeMethodInfo_tAA605450647FBADB423FB22832C3432CEEB36E3E
|
|
{
|
|
public:
|
|
// System.IntPtr System.Reflection.MonoMethod::mhandle
|
|
intptr_t ___mhandle_0;
|
|
// System.String System.Reflection.MonoMethod::name
|
|
String_t* ___name_1;
|
|
// System.Type System.Reflection.MonoMethod::reftype
|
|
Type_t * ___reftype_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_mhandle_0() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___mhandle_0)); }
|
|
inline intptr_t get_mhandle_0() const { return ___mhandle_0; }
|
|
inline intptr_t* get_address_of_mhandle_0() { return &___mhandle_0; }
|
|
inline void set_mhandle_0(intptr_t value)
|
|
{
|
|
___mhandle_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___name_1)); }
|
|
inline String_t* get_name_1() const { return ___name_1; }
|
|
inline String_t** get_address_of_name_1() { return &___name_1; }
|
|
inline void set_name_1(String_t* value)
|
|
{
|
|
___name_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_reftype_2() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___reftype_2)); }
|
|
inline Type_t * get_reftype_2() const { return ___reftype_2; }
|
|
inline Type_t ** get_address_of_reftype_2() { return &___reftype_2; }
|
|
inline void set_reftype_2(Type_t * value)
|
|
{
|
|
___reftype_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___reftype_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.TypeInfo
|
|
struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ResolveEventHandler
|
|
struct ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Runtime.Serialization.SerializationException
|
|
struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields
|
|
{
|
|
public:
|
|
// System.String System.Runtime.Serialization.SerializationException::_nullMessage
|
|
String_t* ____nullMessage_17;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__nullMessage_17() { return static_cast<int32_t>(offsetof(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields, ____nullMessage_17)); }
|
|
inline String_t* get__nullMessage_17() const { return ____nullMessage_17; }
|
|
inline String_t** get_address_of__nullMessage_17() { return &____nullMessage_17; }
|
|
inline void set__nullMessage_17(String_t* value)
|
|
{
|
|
____nullMessage_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____nullMessage_17), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Security.Cryptography.CryptographicException
|
|
struct CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Security.SecurityException
|
|
struct SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
// System.String System.Security.SecurityException::permissionState
|
|
String_t* ___permissionState_17;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_permissionState_17() { return static_cast<int32_t>(offsetof(SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5, ___permissionState_17)); }
|
|
inline String_t* get_permissionState_17() const { return ___permissionState_17; }
|
|
inline String_t** get_address_of_permissionState_17() { return &___permissionState_17; }
|
|
inline void set_permissionState_17(String_t* value)
|
|
{
|
|
___permissionState_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___permissionState_17), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.TypeLoadException
|
|
struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
// System.String System.TypeLoadException::ClassName
|
|
String_t* ___ClassName_17;
|
|
// System.String System.TypeLoadException::AssemblyName
|
|
String_t* ___AssemblyName_18;
|
|
// System.String System.TypeLoadException::MessageArg
|
|
String_t* ___MessageArg_19;
|
|
// System.Int32 System.TypeLoadException::ResourceId
|
|
int32_t ___ResourceId_20;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ClassName_17)); }
|
|
inline String_t* get_ClassName_17() const { return ___ClassName_17; }
|
|
inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; }
|
|
inline void set_ClassName_17(String_t* value)
|
|
{
|
|
___ClassName_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ClassName_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_AssemblyName_18() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___AssemblyName_18)); }
|
|
inline String_t* get_AssemblyName_18() const { return ___AssemblyName_18; }
|
|
inline String_t** get_address_of_AssemblyName_18() { return &___AssemblyName_18; }
|
|
inline void set_AssemblyName_18(String_t* value)
|
|
{
|
|
___AssemblyName_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyName_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_MessageArg_19() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___MessageArg_19)); }
|
|
inline String_t* get_MessageArg_19() const { return ___MessageArg_19; }
|
|
inline String_t** get_address_of_MessageArg_19() { return &___MessageArg_19; }
|
|
inline void set_MessageArg_19(String_t* value)
|
|
{
|
|
___MessageArg_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___MessageArg_19), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ResourceId_20() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ResourceId_20)); }
|
|
inline int32_t get_ResourceId_20() const { return ___ResourceId_20; }
|
|
inline int32_t* get_address_of_ResourceId_20() { return &___ResourceId_20; }
|
|
inline void set_ResourceId_20(int32_t value)
|
|
{
|
|
___ResourceId_20 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.UnhandledExceptionEventHandler
|
|
struct UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ArgumentNullException
|
|
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
|
|
{
|
|
public:
|
|
// System.Object System.ArgumentOutOfRangeException::m_actualValue
|
|
RuntimeObject * ___m_actualValue_19;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); }
|
|
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
|
|
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
|
|
inline void set_m_actualValue_19(RuntimeObject * value)
|
|
{
|
|
___m_actualValue_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields
|
|
{
|
|
public:
|
|
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
|
|
String_t* ____rangeMessage_18;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); }
|
|
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
|
|
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
|
|
inline void set__rangeMessage_18(String_t* value)
|
|
{
|
|
____rangeMessage_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.FileNotFoundException
|
|
struct FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA
|
|
{
|
|
public:
|
|
// System.String System.IO.FileNotFoundException::_fileName
|
|
String_t* ____fileName_18;
|
|
// System.String System.IO.FileNotFoundException::_fusionLog
|
|
String_t* ____fusionLog_19;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__fileName_18() { return static_cast<int32_t>(offsetof(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431, ____fileName_18)); }
|
|
inline String_t* get__fileName_18() const { return ____fileName_18; }
|
|
inline String_t** get_address_of__fileName_18() { return &____fileName_18; }
|
|
inline void set__fileName_18(String_t* value)
|
|
{
|
|
____fileName_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____fileName_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__fusionLog_19() { return static_cast<int32_t>(offsetof(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431, ____fusionLog_19)); }
|
|
inline String_t* get__fusionLog_19() const { return ____fusionLog_19; }
|
|
inline String_t** get_address_of__fusionLog_19() { return &____fusionLog_19; }
|
|
inline void set__fusionLog_19(String_t* value)
|
|
{
|
|
____fusionLog_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____fusionLog_19), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.OverflowException
|
|
struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D : public ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.RuntimeType
|
|
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F : public TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC
|
|
{
|
|
public:
|
|
// System.MonoTypeInfo System.RuntimeType::type_info
|
|
MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * ___type_info_26;
|
|
// System.Object System.RuntimeType::GenericCache
|
|
RuntimeObject * ___GenericCache_27;
|
|
// System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor
|
|
RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * ___m_serializationCtor_28;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___type_info_26)); }
|
|
inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * get_type_info_26() const { return ___type_info_26; }
|
|
inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D ** get_address_of_type_info_26() { return &___type_info_26; }
|
|
inline void set_type_info_26(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * value)
|
|
{
|
|
___type_info_26 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___type_info_26), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___GenericCache_27)); }
|
|
inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; }
|
|
inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; }
|
|
inline void set_GenericCache_27(RuntimeObject * value)
|
|
{
|
|
___GenericCache_27 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___GenericCache_27), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___m_serializationCtor_28)); }
|
|
inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; }
|
|
inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; }
|
|
inline void set_m_serializationCtor_28(RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * value)
|
|
{
|
|
___m_serializationCtor_28 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_serializationCtor_28), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields
|
|
{
|
|
public:
|
|
// System.RuntimeType System.RuntimeType::ValueType
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ValueType_10;
|
|
// System.RuntimeType System.RuntimeType::EnumType
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_11;
|
|
// System.RuntimeType System.RuntimeType::ObjectType
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ObjectType_12;
|
|
// System.RuntimeType System.RuntimeType::StringType
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___StringType_13;
|
|
// System.RuntimeType System.RuntimeType::DelegateType
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___DelegateType_14;
|
|
// System.Type[] System.RuntimeType::s_SICtorParamTypes
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___s_SICtorParamTypes_15;
|
|
// System.RuntimeType System.RuntimeType::s_typedRef
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___s_typedRef_25;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ValueType_10)); }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ValueType_10() const { return ___ValueType_10; }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ValueType_10() { return &___ValueType_10; }
|
|
inline void set_ValueType_10(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
|
|
{
|
|
___ValueType_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ValueType_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___EnumType_11)); }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_11() const { return ___EnumType_11; }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_11() { return &___EnumType_11; }
|
|
inline void set_EnumType_11(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
|
|
{
|
|
___EnumType_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___EnumType_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ObjectType_12)); }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ObjectType_12() const { return ___ObjectType_12; }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ObjectType_12() { return &___ObjectType_12; }
|
|
inline void set_ObjectType_12(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
|
|
{
|
|
___ObjectType_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ObjectType_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___StringType_13)); }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_StringType_13() const { return ___StringType_13; }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_StringType_13() { return &___StringType_13; }
|
|
inline void set_StringType_13(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
|
|
{
|
|
___StringType_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___StringType_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___DelegateType_14)); }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_DelegateType_14() const { return ___DelegateType_14; }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_DelegateType_14() { return &___DelegateType_14; }
|
|
inline void set_DelegateType_14(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
|
|
{
|
|
___DelegateType_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___DelegateType_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_SICtorParamTypes_15)); }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; }
|
|
inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
|
|
{
|
|
___s_SICtorParamTypes_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_SICtorParamTypes_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_typedRef_25)); }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_s_typedRef_25() const { return ___s_typedRef_25; }
|
|
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; }
|
|
inline void set_s_typedRef_25(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
|
|
{
|
|
___s_typedRef_25 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_typedRef_25), (void*)value);
|
|
}
|
|
};
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
// System.Byte[]
|
|
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
public:
|
|
inline uint8_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.Char[]
|
|
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) Il2CppChar m_Items[1];
|
|
|
|
public:
|
|
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.String[]
|
|
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) String_t* m_Items[1];
|
|
|
|
public:
|
|
inline String_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Delegate[]
|
|
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) Delegate_t * m_Items[1];
|
|
|
|
public:
|
|
inline Delegate_t * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Delegate_t * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Object[]
|
|
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
|
|
|
|
public:
|
|
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Exception[]
|
|
struct ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) Exception_t * m_Items[1];
|
|
|
|
public:
|
|
inline Exception_t * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Exception_t ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Exception_t * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Exception_t * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Exception_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Exception_t * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Reflection.Assembly[]
|
|
struct AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) Assembly_t * m_Items[1];
|
|
|
|
public:
|
|
inline Assembly_t * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Assembly_t ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Assembly_t * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Assembly_t * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Assembly_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Assembly_t * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Int64[]
|
|
struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) int64_t m_Items[1];
|
|
|
|
public:
|
|
inline int64_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int64_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int64_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.Int32[]
|
|
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
public:
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.Attribute[]
|
|
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * m_Items[1];
|
|
|
|
public:
|
|
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Reflection.FieldInfo[]
|
|
struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) FieldInfo_t * m_Items[1];
|
|
|
|
public:
|
|
inline FieldInfo_t * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline FieldInfo_t ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, FieldInfo_t * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline FieldInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline FieldInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Void System.Array::Reverse<System.Byte>(T[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method);
|
|
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
|
|
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// T[] System.Collections.Generic.List`1<System.Object>::ToArray()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* List_1_ToArray_m801D4DEF3587F60F463F04EEABE5CBE711FE5612_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_mC5CFC6C9F3007FC24FE020198265D4B5B0659FFC_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
|
|
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::.ctor(System.Collections.Generic.IList`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m8F7880F43C4E281DBF7CA5A9431D5E6DD3797B7E_gshared (ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * __this, RuntimeObject* ___list0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m6E336459937EBBC514F001464CC3771240EEBB87_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject* ___collection0, const RuntimeMethod* method);
|
|
// System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_get_Count_mB938771D2527F09D99453FD856F1E33EBC83F9F2_gshared (ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * __this, const RuntimeMethod* method);
|
|
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::CopyTo(T[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_CopyTo_m5114C43A87A48733B2C6966F7409589FB55766FB_gshared (ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method);
|
|
// T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollection_1_get_Item_m7B8ED99E3E3F40E7A20C3C613E313EC9415C1340_gshared (ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(TKey)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(TKey)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
|
|
|
|
// System.Void System.Object::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
|
|
// System.Object System.Array::Clone()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176 (RuntimeArray * __this, const RuntimeMethod* method);
|
|
// System.Security.Cryptography.HashAlgorithm Mono.Security.Cryptography.PKCS1::CreateFromName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * PKCS1_CreateFromName_m04A1F397EE0DF24D3887A0F59EBDA38F0437F420 (String_t* ___name0, const RuntimeMethod* method);
|
|
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353 (RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method);
|
|
// System.Int32 System.Security.Cryptography.HashAlgorithm::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashAlgorithm_TransformBlock_m500873E221BF1E4278C23D3DD113FA36711CBE22 (HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___inputBuffer0, int32_t ___inputOffset1, int32_t ___inputCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___outputBuffer3, int32_t ___outputOffset4, const RuntimeMethod* method);
|
|
// System.Byte[] System.Security.Cryptography.HashAlgorithm::TransformFinalBlock(System.Byte[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* HashAlgorithm_TransformFinalBlock_mC9CB1BD6A8E410BE986650C1478A93378F138177 (HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___inputBuffer0, int32_t ___inputOffset1, int32_t ___inputCount2, const RuntimeMethod* method);
|
|
// System.Byte[] System.Security.Cryptography.HashAlgorithm::ComputeHash(System.Byte[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* HashAlgorithm_ComputeHash_m944CD5B5BF66F170C9ACD2674E258E62ED297819 (HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method);
|
|
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::Adjust(System.Byte[],System.Int32,System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_Adjust_mB007AD5E976063DCCC68BCE0DAF99DBAD3223997 (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___a0, int32_t ___aOff1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___b2, const RuntimeMethod* method);
|
|
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::Derive(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_Derive_m4417319B4B7F85D597E9F82E69BB459A4464E7D6 (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___diversifier0, int32_t ___n1, const RuntimeMethod* method);
|
|
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A (RuntimeArray * ___array0, RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ___fldHandle1, const RuntimeMethod* method);
|
|
// System.Void System.Text.StringBuilder::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method);
|
|
// Mono.Security.ASN1 Mono.Security.ASN1::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4 (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// System.Void Mono.Security.X509.X501::AppendEntry(System.Text.StringBuilder,Mono.Security.ASN1,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X501_AppendEntry_m6B792902676CBE52DA6D3602B64C215ACF3881FE (StringBuilder_t * ___sb0, ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___entry1, bool ___quotes2, const RuntimeMethod* method);
|
|
// System.Int32 Mono.Security.ASN1::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117 (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * __this, const RuntimeMethod* method);
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
|
|
// System.Boolean Mono.Security.ASN1::CompareValue(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method);
|
|
// System.String Mono.Security.ASN1Convert::ToOid(Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ASN1Convert_ToOid_m7C568C6223BAB8821F8EB9C26FB47F4121214914 (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___asn10, const RuntimeMethod* method);
|
|
// System.Byte Mono.Security.ASN1::get_Tag()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * __this, const RuntimeMethod* method);
|
|
// System.Byte[] Mono.Security.ASN1::get_Value()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2 (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * __this, const RuntimeMethod* method);
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.Text.Encoding System.Text.Encoding::get_UTF7()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF7_mE709E3E74B727CFCC6675F07BC0AF19C7B4D0F1C (const RuntimeMethod* method);
|
|
// System.Text.Encoding System.Text.Encoding::get_UTF8()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9 (const RuntimeMethod* method);
|
|
// System.Int32 System.String::get_Length()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method);
|
|
// System.Int32 System.String::IndexOfAny(System.Char[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_mB7D79AEF460C7C8B3B0CCC573191FA0E339DD495 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___anyOf0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method);
|
|
// System.Boolean System.String::StartsWith(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
|
|
// System.Boolean System.String::EndsWith(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_mE4F039DCC2A9FCB8C1ED2D04B00A35E3CE16DE99 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
|
|
// System.String System.String::Concat(System.String,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
|
|
// System.Void Mono.Security.ASN1::.ctor(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1__ctor_m1D03549576234C96B7AE3D6CD9B43D92DB07414E (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
|
|
// System.Void System.Security.Cryptography.CryptographicException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98 (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Void System.Array::Reverse<System.Byte>(T[],System.Int32,System.Int32)
|
|
inline void Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_gshared)(___array0, ___index1, ___length2, method);
|
|
}
|
|
// Mono.Security.ASN1 Mono.Security.ASN1::Element(System.Int32,System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * __this, int32_t ___index0, uint8_t ___anTag1, const RuntimeMethod* method);
|
|
// System.String Mono.Security.X509.X501::ToString(Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X501_ToString_mE2221E32FE2C82ABC545B94794A400F4979AE4B3 (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___seq0, const RuntimeMethod* method);
|
|
// System.DateTime Mono.Security.ASN1Convert::ToDateTime(Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ASN1Convert_ToDateTime_m178C1F068A5191C7366C5D5863107103C15009AC (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___time0, const RuntimeMethod* method);
|
|
// System.Int32 Mono.Security.ASN1::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASN1_get_Length_m26CEA287586CB72CF05106666242A4799B5D6564 (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * __this, const RuntimeMethod* method);
|
|
// System.Void Mono.Security.X509.X509ExtensionCollection::.ctor(Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ExtensionCollection__ctor_m0441BFBD0D73B5878D71B56DB9A2B67D73E39A09 (X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 * __this, ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___asn10, const RuntimeMethod* method);
|
|
// System.Void System.Security.Cryptography.CryptographicException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CryptographicException__ctor_m65F4E67FD9D0449B5BFFC04E359BF3EC098075DA (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * __this, String_t* ___message0, Exception_t * ___inner1, const RuntimeMethod* method);
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::PEM(System.String,System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* X509Certificate_PEM_m7222F318BC4E9A4D263E49EC236D7F3626366B55 (String_t* ___type0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data1, const RuntimeMethod* method);
|
|
// System.Void Mono.Security.X509.X509Certificate::Parse(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate_Parse_mDBD169C54D9E5522079A271FAD5DA80567519C7F (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
|
|
// System.Boolean System.String::op_Equality(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::GetUnsignedBigInteger(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* X509Certificate_GetUnsignedBigInteger_m50790BFFFE21F0ED229BADB82A9881673FB61EE6 (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___integer0, const RuntimeMethod* method);
|
|
// System.Void System.Security.Cryptography.DSACryptoServiceProvider::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DSACryptoServiceProvider__ctor_m7543CB44E8F80ADC129572DD56E4C11F4C18B790 (DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8 * __this, int32_t ___dwKeySize0, const RuntimeMethod* method);
|
|
// System.Void System.Security.Cryptography.RSACryptoServiceProvider::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RSACryptoServiceProvider__ctor_mBE2DCC392E07EBD1E400EF9EF6C25E678236ACC2 (RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4 * __this, int32_t ___dwKeySize0, const RuntimeMethod* method);
|
|
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, const RuntimeMethod* method);
|
|
// System.Text.Encoding System.Text.Encoding::get_ASCII()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E (const RuntimeMethod* method);
|
|
// System.String System.String::Format(System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method);
|
|
// System.Int32 System.String::IndexOf(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mA9A0117D68338238E51E5928CDA8EB3DC9DA497B (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
|
|
// System.Int32 System.String::IndexOf(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m9285F4AFCAD971E6AFB6F0212B415989CB3DACA5 (String_t* __this, String_t* ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
|
|
// System.String System.String::Substring(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
|
|
// System.Byte[] System.Convert::FromBase64String(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Convert_FromBase64String_m079F788D000703E8018DA39BE9C05F1CBF60B156 (String_t* ___s0, const RuntimeMethod* method);
|
|
// System.String Locale::GetText(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324 (String_t* ___msg0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.CollectionBase::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionBase__ctor_mE3F20EEAA96F8613088EDD69A17E49C22E97ADF9 (CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01 * __this, const RuntimeMethod* method);
|
|
// System.Collections.ArrayList System.Collections.CollectionBase::get_InnerList()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * CollectionBase_get_InnerList_m56EDE16DE8F8FA2AA6346730CC725E0B3BF0750A (CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentNullException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
|
|
// System.Void Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::.ctor(Mono.Security.X509.X509CertificateCollection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CertificateEnumerator__ctor_m907435AC45CD48DA1C82DB9C34480DC0BEAEF38F (X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F * __this, X509CertificateCollection_t5BA116B445B1DB65CBCEAECF7EF3CFC1368E3ECA * ___mappings0, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Void Mono.Security.ASN1::set_Value(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1_set_Value_mC75118412779C8694A5F0553062B44BD268FF095 (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method);
|
|
// Mono.Security.ASN1 Mono.Security.ASN1::Add(Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ASN1_Add_m04C69FA22E1EA93FD28A7B8C6D4CD6F33FE7CDD7 (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * __this, ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___asn10, const RuntimeMethod* method);
|
|
// System.Boolean System.String::op_Inequality(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method);
|
|
// System.String System.Byte::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.Char System.Convert::ToChar(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m2FF337FDDCAD52939473E0D7ED3FBFD49A4C2E18 (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.String System.Environment::get_NewLine()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318 (const RuntimeMethod* method);
|
|
// System.Void Mono.Security.X509.X509Extension::WriteLine(System.Text.StringBuilder,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Extension_WriteLine_mC6277CA21812934D276BD2167CF5305E725BA18C (X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * __this, StringBuilder_t * ___sb0, int32_t ___n1, int32_t ___pos2, const RuntimeMethod* method);
|
|
// System.Void Mono.Security.X509.X509ExtensionCollection::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ExtensionCollection__ctor_mB49E48E58401BD43ABCA052244630AE2E1C981BB (X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 * __this, const RuntimeMethod* method);
|
|
// System.Void System.Exception::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Void Mono.Security.X509.X509Extension::.ctor(Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Extension__ctor_m16A891E45F0B21502442C2BCCE4C791CB0EC9C9B (X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * __this, ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___asn10, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser__ctor_m9FD7D5896F766B4F9ED74478616F09462523ABF2 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Stack::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack__ctor_m98F99FFBF373762F139506711349267D5354FE08 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method);
|
|
// System.Void System.IO.StringReader::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17 (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, String_t* ___s0, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::Parse(System.IO.TextReader,Mono.Xml.SmallXmlParser/IContentHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Parse_mBFFAA2DDD223DEE2A8E22E33C9CF986F06B84D5F (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___input0, RuntimeObject* ___handler1, const RuntimeMethod* method);
|
|
// System.Void System.Security.SecurityElement::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityElement__ctor_m888B01153F0CC19DA06717EBB2E55240669304C6 (SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * __this, String_t* ___tag0, const RuntimeMethod* method);
|
|
// System.Void System.Security.SecurityElement::AddChild(System.Security.SecurityElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityElement_AddChild_m02EE2E9A11B4CD23CBE38A5A7F8D54783EF89AFB (SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * __this, SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * ___child0, const RuntimeMethod* method);
|
|
// System.String System.Security.SecurityElement::Escape(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SecurityElement_Escape_m0EB8C4C11D70CAC5588F8DB79811B1BD1092B6F7 (String_t* ___str0, const RuntimeMethod* method);
|
|
// System.Void System.Security.SecurityElement::AddAttribute(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityElement_AddAttribute_m169BDD8B4746C6074924239147E90537CF4C441B (SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method);
|
|
// System.Void System.Security.SecurityElement::set_Text(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityElement_set_Text_mD45FBD1B76BB6D3FF38CD493E43C3B4558A7A86E (SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * __this, String_t* ___value0, const RuntimeMethod* method);
|
|
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956 (StringBuilder_t * __this, int32_t ___capacity0, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl__ctor_m5B7885CD6830138F25DC2D46F14B1A18DD1564BA (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParserException::.ctor(System.String,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParserException__ctor_m6AB9D00DB18C0DD5D3A9B19B50BE555685206A22 (SmallXmlParserException_t96963A305B0E2C72C5EDC72952F1D079DE102140 * __this, String_t* ___msg0, int32_t ___line1, int32_t ___column2, const RuntimeMethod* method);
|
|
// System.String System.String::Join(System.String,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_m49371BED70248F0FCE970CB4F2E39E9A688AAFA4 (String_t* ___separator0, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___value1, const RuntimeMethod* method);
|
|
// System.Exception Mono.Xml.SmallXmlParser::Error(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, String_t* ___msg0, const RuntimeMethod* method);
|
|
// System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetUnicodeCategory_m07C2D4BEA7C630EF8D87B2244689C5C315EC4914 (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_SkipWhitespaces_mA351F024FC4B043329B3B6581791093015958725 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, bool ___expected0, const RuntimeMethod* method);
|
|
// System.Int32 Mono.Xml.SmallXmlParser::Read()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Int32 Mono.Xml.SmallXmlParser::Peek()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Boolean Mono.Xml.SmallXmlParser::IsWhitespace(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SmallXmlParser_IsWhitespace_m0CA6B1172C3960658B54E9B12445B027C9B9DEDA (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, int32_t ___c0, const RuntimeMethod* method);
|
|
// System.Exception Mono.Xml.SmallXmlParser::UnexpectedEndError()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * SmallXmlParser_UnexpectedEndError_mEA2509A8E147FC380F9726D2A98E1B0A44553329 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.String System.String::Format(System.String,System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadReference()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadReference_m630C8CDBEE46892DB8A490D7101E587AC788C3DB (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Void System.Text.StringBuilder::set_Length(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B (StringBuilder_t * __this, int32_t ___value0, const RuntimeMethod* method);
|
|
// System.Boolean Mono.Xml.SmallXmlParser::IsNameChar(System.Char,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SmallXmlParser_IsNameChar_m778080869517BCC9BA829CA2A3D56690825FBD7A (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, Il2CppChar ___c0, bool ___start1, const RuntimeMethod* method);
|
|
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method);
|
|
// System.String System.String::CreateString(System.Char[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadContent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadContent_m9B531EF2F84F1292710BF1B5EC798EFE2982905D (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::HandleBufferedContent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_HandleBufferedContent_m92389C6DA5658F8C205E7FC508D0E49055312BCE (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::Cleanup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Cleanup_mAFE98527E4C2AC8C3F9BB75C74FEF2207EE5ADAC (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl_Clear_m9C1CF67FAC2C726DC0CF7E4663751C7D89D922A0 (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.Text.StringBuilder::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07 (StringBuilder_t * __this, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::HandleWhitespaces()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_HandleWhitespaces_m926190958F967748FC0D7FF027DC59B498FA0717 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.String Mono.Xml.SmallXmlParser::ReadName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::Expect(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, int32_t ___c0, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadCDATASection()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadCDATASection_mC256BDCC2986CE516F699828792B9E67B3282B61 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadComment()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadComment_m9C33081E484F35D15575E4813430356332A1DCC5 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_SkipWhitespaces_mA51F0B32758624356F610B726242A1FAB1D417BF (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.String Mono.Xml.SmallXmlParser::ReadUntil(System.Char,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SmallXmlParser_ReadUntil_m279D06CB9963FEEF22356F085F2745A70DD78F23 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, Il2CppChar ___until0, bool ___handleReferences1, const RuntimeMethod* method);
|
|
// System.String System.String::Concat(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadAttribute(Mono.Xml.SmallXmlParser/AttrListImpl)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadAttribute_mFE6E3CA7C9EE7432F9D31358EB164463E0EAAD99 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * ___a0, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadCharacters()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadCharacters_m83D7A2FE91C9ACCDF136000D746D34942CBC60E4 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Int32 Mono.Xml.SmallXmlParser::ReadCharacterReference()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_ReadCharacterReference_mB7083689048E75E9205DEC8454434EDAD57CAE5E (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
|
|
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::Add(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl_Add_mC2841C466B5711319B528BB1082B77CB842B4E2D (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method);
|
|
// System.Int32 System.Collections.Generic.List`1<System.String>::get_Count()
|
|
inline int32_t List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<System.String>::get_Item(System.Int32)
|
|
inline String_t* List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_inline (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
|
|
}
|
|
// T[] System.Collections.Generic.List`1<System.String>::ToArray()
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* List_1_ToArray_m9DD19D800AE6D84ED0729D5D97CAF84DF317DD38 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, const RuntimeMethod* method)
|
|
{
|
|
return (( StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, const RuntimeMethod*))List_1_ToArray_m801D4DEF3587F60F463F04EEABE5CBE711FE5612_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.String>::Clear()
|
|
inline void List_1_Clear_mB886C990CD1F0558809236CF1D28C977A3558306 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, const RuntimeMethod*))List_1_Clear_mC5CFC6C9F3007FC24FE020198265D4B5B0659FFC_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.String>::Add(T)
|
|
inline void List_1_Add_mA348FA1140766465189459D25B01EB179001DE83 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, String_t* ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, String_t*, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.String>::.ctor()
|
|
inline void List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
|
|
}
|
|
// System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m26BBF75F9609FAD0B39C2242FEBAAD7D68F14D99 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method);
|
|
// System.Void System.SystemException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, const RuntimeMethod* method);
|
|
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m453C2840536781B718FF4D0F5C7EEC8E5481C435 (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, const RuntimeMethod* method);
|
|
// System.Object System.Activator::CreateInstance(System.Type,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_m328643EF5AC04AA6C24BFADFCAB54E99DE5CA00F (Type_t * ___type0, int32_t ___bindingAttr1, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args3, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture4, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___activationAttributes5, const RuntimeMethod* method);
|
|
// System.String System.Environment::GetResourceString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method);
|
|
// System.Void System.NotSupportedException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Boolean System.RuntimeType::op_Equality(System.RuntimeType,System.RuntimeType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___left0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___right1, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
|
|
// System.Object System.RuntimeType::CreateInstanceImpl(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Threading.StackCrawlMark&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RuntimeType_CreateInstanceImpl_mF3FFEA4CD8A8405D9524F8BFB34F3CE830A53AD0 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * __this, int32_t ___bindingAttr0, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture3, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___activationAttributes4, int32_t* ___stackMark5, const RuntimeMethod* method);
|
|
// System.Object System.Activator::CreateInstance(System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_m7776DE4D344614DDBCECD20C93421CC7183C88D3 (Type_t * ___type0, bool ___nonPublic1, const RuntimeMethod* method);
|
|
// System.Object System.RuntimeType::CreateInstanceDefaultCtor(System.Boolean,System.Boolean,System.Boolean,System.Threading.StackCrawlMark&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RuntimeType_CreateInstanceDefaultCtor_m7553969A13B4A66B8A0D95C3B598CE3B92325064 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * __this, bool ___publicOnly0, bool ___skipCheckThis1, bool ___fillCache2, int32_t* ___stackMark3, const RuntimeMethod* method);
|
|
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::.ctor(System.Collections.Generic.IList`1<T>)
|
|
inline void ReadOnlyCollection_1__ctor_mB9A088773123898D26251D041368C0E6FB692670 (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * __this, RuntimeObject* ___list0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 *, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m8F7880F43C4E281DBF7CA5A9431D5E6DD3797B7E_gshared)(__this, ___list0, method);
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1<System.Exception>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mEB0710D0C50475FCE00B187AA5FA8098DC656E44 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, String_t* ___message0, RuntimeObject* ___innerExceptions1, const RuntimeMethod* method);
|
|
// System.Void System.AggregateException::.ctor(System.String,System.Exception[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mA35C4ECD50CDFC6464D30D6D0F0AE77E6A9D83A0 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, String_t* ___message0, ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* ___innerExceptions1, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Exception>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1__ctor_m1DFEC304B805408BFF9021E6E069A75071C41577 (List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A * __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A *, RuntimeObject*, const RuntimeMethod*))List_1__ctor_m6E336459937EBBC514F001464CC3771240EEBB87_gshared)(__this, ___collection0, method);
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1<System.Exception>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m3CBEB65087C05AB23CEE39CF67D35CFE1D657CB4 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, String_t* ___message0, RuntimeObject* ___innerExceptions1, const RuntimeMethod* method);
|
|
// System.Void System.Exception::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
|
|
// System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m49EF2FE10BC147085D49932EDE07AD581C461818 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, String_t* ___message0, RuntimeObject* ___innerExceptionInfos1, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1__ctor_m599E284E3C4D0D6BC71FCC04EEF110C663406224 (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 *, RuntimeObject*, const RuntimeMethod*))List_1__ctor_m6E336459937EBBC514F001464CC3771240EEBB87_gshared)(__this, ___collection0, method);
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mA78372B38621E83F133785934CCA1A9BB45A9040 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, String_t* ___message0, RuntimeObject* ___innerExceptionInfos1, const RuntimeMethod* method);
|
|
// System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::get_SourceException()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * ExceptionDispatchInfo_get_SourceException_m212F50A437B8B18AFECE39F2A9F7231787F45F28_inline (ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * __this, const RuntimeMethod* method);
|
|
// System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
|
|
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
|
|
// System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method);
|
|
// System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1 (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
|
|
// System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::get_Count()
|
|
inline int32_t ReadOnlyCollection_1_get_Count_mB2DF762E7070C9FA49BA2CEB86F0AE5A93261B41 (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 *, const RuntimeMethod*))ReadOnlyCollection_1_get_Count_mB938771D2527F09D99453FD856F1E33EBC83F9F2_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::CopyTo(T[],System.Int32)
|
|
inline void ReadOnlyCollection_1_CopyTo_m91DC1D7BF73E649EE2CFB6BA1BC936284D918C01 (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * __this, ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* ___array0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 *, ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*, int32_t, const RuntimeMethod*))ReadOnlyCollection_1_CopyTo_m5114C43A87A48733B2C6966F7409589FB55766FB_gshared)(__this, ___array0, ___index1, method);
|
|
}
|
|
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, Type_t * ___type2, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Exception>::.ctor()
|
|
inline void List_1__ctor_m3CA9F30DC986E649F8E82AD69F5085D355D91AC1 (List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A * __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.AggregateException>::.ctor()
|
|
inline void List_1__ctor_m50C4D0E0ACA8B2A3097BAFB0C73EAC7FB0D8DFD3 (List_1_t20A8118F137937C08C81821D3462043030E1A597 * __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t20A8118F137937C08C81821D3462043030E1A597 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.AggregateException>::Add(T)
|
|
inline void List_1_Add_mD80C2D50024919C5BD8CAB33C0C226532B707449 (List_1_t20A8118F137937C08C81821D3462043030E1A597 * __this, AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t20A8118F137937C08C81821D3462043030E1A597 *, AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<System.AggregateException>::get_Item(System.Int32)
|
|
inline AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * List_1_get_Item_m472ACECB3C087B001D859E7FEA999C3E37F3CDD5_inline (List_1_t20A8118F137937C08C81821D3462043030E1A597 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * (*) (List_1_t20A8118F137937C08C81821D3462043030E1A597 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
|
|
}
|
|
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> System.AggregateException::get_InnerExceptions()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * AggregateException_get_InnerExceptions_mB81D2B3BD56A3E938B83B0AF766474ED66057040_inline (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Exception>::Add(T)
|
|
inline void List_1_Add_mC1DAEB8B35E60391E3F8D536FA6B91F9B331DABC (List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A * __this, Exception_t * ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A *, Exception_t *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<System.AggregateException>::get_Count()
|
|
inline int32_t List_1_get_Count_m0BE132E4507E26AD7ACA5D0589C71A6F8F4D924E_inline (List_1_t20A8118F137937C08C81821D3462043030E1A597 * __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t20A8118F137937C08C81821D3462043030E1A597 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
|
|
}
|
|
// System.String System.Exception::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_ToString_m403BC2DBD48C830789D6270B4E917AB2D5E88183 (Exception_t * __this, const RuntimeMethod* method);
|
|
// T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::get_Item(System.Int32)
|
|
inline Exception_t * ReadOnlyCollection_1_get_Item_mFD009BA0F3153526E49D9E99C0C9CF88D9F9EA2C (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( Exception_t * (*) (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 *, int32_t, const RuntimeMethod*))ReadOnlyCollection_1_get_Item_m7B8ED99E3E3F40E7A20C3C613E313EC9415C1340_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method);
|
|
// System.Void System.MarshalByRefObject::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method);
|
|
// System.AppDomainSetup System.AppDomain::getSetup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * AppDomain_getSetup_mAC7D1DDD81CBCA9E1F234A64BE6718EC673509FA (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method);
|
|
// System.Void System.AppDomainSetup::.ctor(System.AppDomainSetup)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomainSetup__ctor_m5DC21E2AA507414DB813606F4519DE8F16019941 (AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * __this, AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * ___setup0, const RuntimeMethod* method);
|
|
// System.AppDomain System.AppDomain::getCurDomain()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * AppDomain_getCurDomain_mD7B43429B7B7D7AE59D29F5394B870C170EF53CC (const RuntimeMethod* method);
|
|
// System.Reflection.Assembly[] System.AppDomain::GetAssemblies(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* AppDomain_GetAssemblies_m67CCC578A7586632778C0AF4B70C0C3576C4A2C1 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, bool ___refOnly0, const RuntimeMethod* method);
|
|
// System.Reflection.Assembly System.AppDomain::Load(System.Reflection.AssemblyName,System.Security.Policy.Evidence)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * ___assemblyRef0, Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 * ___assemblySecurity1, const RuntimeMethod* method);
|
|
// System.String System.Reflection.AssemblyName::get_FullName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AssemblyName_get_FullName_m2E26108B8002BA0579FB223426E085BC9014A212 (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method);
|
|
// System.Reflection.Assembly System.AppDomain::LoadAssembly(System.String,System.Security.Policy.Evidence,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_LoadAssembly_m8A7909CB55592A407D523DDDDB3677C191F1D8B9 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, String_t* ___assemblyRef0, Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 * ___securityEvidence1, bool ___refOnly2, const RuntimeMethod* method);
|
|
// System.Boolean System.Reflection.Assembly::op_Equality(System.Reflection.Assembly,System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316 (Assembly_t * ___left0, Assembly_t * ___right1, const RuntimeMethod* method);
|
|
// System.String System.Reflection.AssemblyName::get_Name()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method);
|
|
// System.Void System.IO.FileNotFoundException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98 (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * __this, String_t* ___message0, String_t* ___fileName1, const RuntimeMethod* method);
|
|
// System.String System.Reflection.AssemblyName::get_CodeBase()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_CodeBase_m65BC5F88190889886BC43A513CAC59A69FFAAD5F_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method);
|
|
// System.Reflection.Assembly System.Reflection.Assembly::LoadFrom(System.String,System.Security.Policy.Evidence)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * Assembly_LoadFrom_mD87CF84452C10969503E0ADC5E2A7F68F0B53E41 (String_t* ___assemblyFile0, Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 * ___securityEvidence1, const RuntimeMethod* method);
|
|
// System.Boolean System.Reflection.Assembly::op_Inequality(System.Reflection.Assembly,System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Assembly_op_Inequality_m6949ED5777CC2840BF1EBD907C35A20E25F22F7B (Assembly_t * ___left0, Assembly_t * ___right1, const RuntimeMethod* method);
|
|
// System.String System.String::ToLower(System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_m91732DBE4AE31B77EA3BB2C185E66513919968A5 (String_t* __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method);
|
|
// System.Void Mono.Security.Uri::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m5BAA5AABA499ACB5D2B3F1CDB09486E463400D25 (Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D * __this, String_t* ___uriString0, const RuntimeMethod* method);
|
|
// System.String Mono.Security.Uri::get_LocalPath()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_LocalPath_m1BC64ADB93E8AF361D6F3876881C41272ABEB170 (Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D * __this, const RuntimeMethod* method);
|
|
// System.Version System.Reflection.AssemblyName::get_Version()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * AssemblyName_get_Version_m82317447EFD059F46EA783D92CD7AE653AA81D47_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Version::op_Inequality(System.Version,System.Version)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Version_op_Inequality_mBF83F266057D2C028BA2F423372DA7E738B25CD0 (Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___v10, Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___v21, const RuntimeMethod* method);
|
|
// System.Void System.Version::.ctor(System.Int32,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Version__ctor_mFA5AABF2294D59FA7B3F32BB48CB238BCACBDF80 (Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * __this, int32_t ___major0, int32_t ___minor1, int32_t ___build2, int32_t ___revision3, const RuntimeMethod* method);
|
|
// System.Globalization.CultureInfo System.Reflection.AssemblyName::get_CultureInfo()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * AssemblyName_get_CultureInfo_m611D937A0D0CAEFCAA2F4BCCE7BA936A61A4F6D1_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method);
|
|
// System.Byte[] System.Reflection.AssemblyName::GetPublicKeyToken()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* AssemblyName_GetPublicKeyToken_mE19B825DA45B1A3310CC59C06F50976EF4C6B1B0 (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method);
|
|
// System.Reflection.Assembly System.AppDomain::Load(System.String,System.Security.Policy.Evidence,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_Load_mA402057C7C1056F7186F6EDD5CAF6905F156E979 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, String_t* ___assemblyString0, Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 * ___assemblySecurity1, bool ___refonly2, const RuntimeMethod* method);
|
|
// System.AppDomain System.AppDomain::get_CurrentDomain()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0 (const RuntimeMethod* method);
|
|
// System.Void System.AppDomain::InternalPushDomainRefByID(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_InternalPushDomainRefByID_m53B4A0D48C96D0045A69FFF2B510937B46F62D75 (int32_t ___domain_id0, const RuntimeMethod* method);
|
|
// System.AppDomain System.AppDomain::InternalSetDomainByID(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * AppDomain_InternalSetDomainByID_m3832F4BB8C1CE9195F40E84DF7AD3303B8F33418 (int32_t ___domain_id0, const RuntimeMethod* method);
|
|
// System.Object System.Reflection.MonoMethod::InternalInvoke(System.Object,System.Object[],System.Exception&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MonoMethod_InternalInvoke_mB9735487F3062332EFB3EC603138E72E6C8A7789 (MonoMethod_t * __this, RuntimeObject * ___obj0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters1, Exception_t ** ___exc2, const RuntimeMethod* method);
|
|
// System.AppDomain System.AppDomain::InternalSetDomain(System.AppDomain)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * AppDomain_InternalSetDomain_m27029EDC56728C03386AC87097BAD176280AD60C (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * ___context0, const RuntimeMethod* method);
|
|
// System.Void System.AppDomain::InternalPopDomainRef()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_InternalPopDomainRef_m2098DB1F4FAA4B1FFE5F1AF3BEB8E01CA9B70B34 (const RuntimeMethod* method);
|
|
// System.Guid System.Guid::NewGuid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29 (const RuntimeMethod* method);
|
|
// System.String System.Guid::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_m3024AB4FA6189BC28BE77BBD6A9F55841FE190A5 (Guid_t * __this, const RuntimeMethod* method);
|
|
// System.String System.AppDomain::InternalGetProcessGuid(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomain_InternalGetProcessGuid_m0EC2D9329E2A03D68A86B3D8129599891C3035B1 (String_t* ___newguid0, const RuntimeMethod* method);
|
|
// System.Int32 System.AppDomain::getDomainID()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AppDomain_getDomainID_mFAB09294DFF3C2431057D033147582BA3B16A676 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.AppDomain::InternalIsFinalizingForUnload(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AppDomain_InternalIsFinalizingForUnload_m24DF3F50873A8B84DB0148D61669A567B257D0E3 (int32_t ___domain_id0, const RuntimeMethod* method);
|
|
// System.Int32 System.Threading.Thread::GetDomainID()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_GetDomainID_m7C6DEB9A3289C82B0B17F7234DCA9D2677731547 (const RuntimeMethod* method);
|
|
// System.String System.AppDomain::getFriendlyName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomain_getFriendlyName_mDCD770AC4B3A0E65C913D412D4EEE4CF38D1D656 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method);
|
|
// System.Void System.AssemblyLoadEventArgs::.ctor(System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventArgs__ctor_m1F35C892F2C6D04A5792F741C905D13E163D60E8 (AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * __this, Assembly_t * ___loadedAssembly0, const RuntimeMethod* method);
|
|
// System.Void System.AssemblyLoadEventHandler::Invoke(System.Object,System.AssemblyLoadEventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventHandler_Invoke_m8F8FC0944BD880531B58755B35ACD61D7E980142 (AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * __this, RuntimeObject * ___sender0, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * ___args1, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Object>::.ctor()
|
|
inline void Dictionary_2__ctor_mCA7075EA6548A18B929368520217975094841997 (Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Object>::ContainsKey(TKey)
|
|
inline bool Dictionary_2_ContainsKey_mAD4B2095526B4742201B24C5ADF1717AFB15EF89 (Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * __this, String_t* ___key0, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA *, String_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared)(__this, ___key0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Object>::set_Item(TKey,TValue)
|
|
inline void Dictionary_2_set_Item_mEA41AEAE79570A9410777F6B90969532564025DD (Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * __this, String_t* ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA *, String_t*, RuntimeObject *, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// System.Void System.ResolveEventArgs::.ctor(System.String,System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResolveEventArgs__ctor_m5516FB7BD379CD93309F0271B2E017D2E433204C (ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D * __this, String_t* ___name0, Assembly_t * ___requestingAssembly1, const RuntimeMethod* method);
|
|
// System.Reflection.Assembly System.ResolveEventHandler::Invoke(System.Object,System.ResolveEventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * ResolveEventHandler_Invoke_mC377CFEFE104C5307C90C390F755A926B95D21E0 (ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * __this, RuntimeObject * ___sender0, ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D * ___args1, const RuntimeMethod* method);
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Object>::Remove(TKey)
|
|
inline bool Dictionary_2_Remove_m52E8BCBCCDE8B8BEB6FF90ECC41E80C09A46B4C3 (Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * __this, String_t* ___key0, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA *, String_t*, const RuntimeMethod*))Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared)(__this, ___key0, method);
|
|
}
|
|
// System.Void System.ResolveEventArgs::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResolveEventArgs__ctor_mBD72144268EC764435C32F17D12B7F49903A4C6C (ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D * __this, String_t* ___name0, const RuntimeMethod* method);
|
|
// System.Void System.EventHandler::Invoke(System.Object,System.EventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_Invoke_mD23D5EFEA562A05C5EACDD3E91EEDD2BF6C22800 (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method);
|
|
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.RemotingServices::Marshal(System.MarshalByRefObject,System.String,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * RemotingServices_Marshal_m4011FB4633F63D96F126786B57DC8921B2D7035B (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___Obj0, String_t* ___ObjURI1, Type_t * ___RequestedType2, const RuntimeMethod* method);
|
|
// System.IO.MemoryStream System.Runtime.Remoting.Channels.CADSerializer::SerializeObject(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * CADSerializer_SerializeObject_m6B7C23B79F0AFE830641EA7F810201C149F06047 (RuntimeObject * ___obj0, const RuntimeMethod* method);
|
|
// System.Void System.IO.MemoryStream::.ctor(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m731754F1435D29F87C407D84ED47AF35FFF9B0EF (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, const RuntimeMethod* method);
|
|
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Channels.CADSerializer::DeserializeMessage(System.IO.MemoryStream,System.Runtime.Remoting.Messaging.IMethodCallMessage)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CADSerializer_DeserializeMessage_m9EA9A8A2521F4DE96FFFE8217E3F9509EF752276 (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * ___mem0, RuntimeObject* ___msg1, const RuntimeMethod* method);
|
|
// System.Void System.Runtime.Remoting.Messaging.MethodCall::.ctor(System.Runtime.Remoting.Messaging.CADMethodCallMessage)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall__ctor_mC7F8A5B354B3C24FEFAD09709F9BB36859E8F848 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * ___msg0, const RuntimeMethod* method);
|
|
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Channels.ChannelServices::SyncDispatchMessage(System.Runtime.Remoting.Messaging.IMessage)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ChannelServices_SyncDispatchMessage_mD552FEB600341B5F9C92F7C4844C3CF9A0742716 (RuntimeObject* ___msg0, const RuntimeMethod* method);
|
|
// System.Runtime.Remoting.Messaging.CADMethodReturnMessage System.Runtime.Remoting.Messaging.CADMethodReturnMessage::Create(System.Runtime.Remoting.Messaging.IMessage)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * CADMethodReturnMessage_Create_m4C63A24FC645651E4137AE00A6E7037F480E4062 (RuntimeObject* ___callMsg0, const RuntimeMethod* method);
|
|
// System.IO.MemoryStream System.Runtime.Remoting.Channels.CADSerializer::SerializeMessage(System.Runtime.Remoting.Messaging.IMessage)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * CADSerializer_SerializeMessage_mE4C4D59A3F37D639CBAF37D01AB0654B0FCC3C28 (RuntimeObject* ___msg0, const RuntimeMethod* method);
|
|
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method);
|
|
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method);
|
|
// System.String System.String::ToLower()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_m5287204D93C9DDC4DF84581ADD756D0FDE2BA5A8 (String_t* __this, const RuntimeMethod* method);
|
|
// System.String System.String::Substring(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method);
|
|
// System.String System.String::Replace(System.Char,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m276641366A463205C185A9B3DC0E24ECB95122C9 (String_t* __this, Il2CppChar ___oldChar0, Il2CppChar ___newChar1, const RuntimeMethod* method);
|
|
// System.String System.IO.Path::GetFullPath(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetFullPath_m58677E6FFAFB7BB4A23011CE50F76487226EDE20 (String_t* ___path0, const RuntimeMethod* method);
|
|
// System.Boolean System.String::StartsWith(System.String,System.StringComparison)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method);
|
|
// System.Int32 System.String::IndexOf(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D (String_t* __this, Il2CppChar ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
|
|
// System.String System.IO.Path::GetDirectoryName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetDirectoryName_m61922AA6D7B48EACBA36FF41A1B28F506CFB8A97 (String_t* ___path0, const RuntimeMethod* method);
|
|
// System.Char[] System.IO.Path::GetInvalidPathChars()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Path_GetInvalidPathChars_m0C84DE22306A8BB60AC6FF5486B9270DA99C6B76 (const RuntimeMethod* method);
|
|
// System.Int32 System.String::LastIndexOfAny(System.Char[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOfAny_mF16934C2FD438FE77DEF59BF748E438675844892 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___anyOf0, const RuntimeMethod* method);
|
|
// System.String System.IO.Path::GetFileName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E (String_t* ___path0, const RuntimeMethod* method);
|
|
// System.Char[] System.IO.Path::GetInvalidFileNameChars()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Path_GetInvalidFileNameChars_m40A585AC38CB7E1FD9274EB8F9C3F8DACBCFB7E5 (const RuntimeMethod* method);
|
|
// System.String System.AppDomainSetup::GetAppBase(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomainSetup_GetAppBase_m2FC944AE3C9D781BFE9BDE817433A6E100D7D9F4 (String_t* ___appBase0, const RuntimeMethod* method);
|
|
// System.Void System.Exception::SetErrorCode(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7 (Exception_t * __this, int32_t ___hr0, const RuntimeMethod* method);
|
|
// System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949 (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
|
|
// System.Boolean System.ArgIterator::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArgIterator_Equals_mA4D50273AEA724B8E431B2B8780EBB6D4D82C17E (ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855 * __this, RuntimeObject * ___o0, const RuntimeMethod* method);
|
|
// System.Int32 System.IntPtr::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_GetHashCode_m0A6AE0C85A4AEEA127235FB5A32056F630E3749A (intptr_t* __this, const RuntimeMethod* method);
|
|
// System.Int32 System.ArgIterator::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArgIterator_GetHashCode_m8C8F2147A6C155B50AA4D7E70F58A6804017D57D (ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855 * __this, const RuntimeMethod* method);
|
|
// System.Void System.SystemException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
|
|
// System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method);
|
|
// System.String System.Exception::get_Message()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD (Exception_t * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.String::IsNullOrEmpty(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* ___value0, const RuntimeMethod* method);
|
|
// System.String System.Environment::GetResourceString(System.String,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
|
|
// System.String System.ArgumentOutOfRangeException::get_RangeMessage()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArgumentOutOfRangeException_get_RangeMessage_m6E0D55DD4CCE7312D3BE08D2BE74A79128ED095C (const RuntimeMethod* method);
|
|
// System.String System.ArgumentException::get_Message()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArgumentException_get_Message_m23FEA6788F6D9BF5A73F59428DA74307035FAF61 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException_GetObjectData_m838F8806302102BE3C42D60D5306761FD788F26E (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
|
|
// System.Array System.Array::CreateInstance(System.Type,System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207 (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
|
|
// System.Object System.Array::GetValue(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// System.Void System.Array::SetValue(System.Object,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index1, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::IndexOf(System.Array,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE (RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::GetLowerBound(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method);
|
|
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::get_Rank()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1 (RuntimeArray * __this, const RuntimeMethod* method);
|
|
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method);
|
|
// System.Object System.Object::MemberwiseClone()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28 (RuntimeObject * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::CombineHashCodes(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_CombineHashCodes_m4831474CA5E80807B35DFD4DCBF2574540D90E14 (int32_t ___h10, int32_t ___h21, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::BinarySearch(System.Array,System.Int32,System.Int32,System.Object,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method);
|
|
// System.Void System.Array::CopyTo(System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::GetLength(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method);
|
|
// System.Object System.Array::GetValue(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mEC23FDFB21649A4D9D90D6EA363CCE4E58D676A0 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method);
|
|
// System.Object System.Array::GetValue(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mA5B92FA4128EA88A676AB446C957C6C1D3D3D900 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, int32_t ___index32, const RuntimeMethod* method);
|
|
// System.Object System.Array::GetValue(System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C (RuntimeArray * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___indices0, const RuntimeMethod* method);
|
|
// System.Void System.RankException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::GetMedian(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetMedian_mEB009518A8D446B196DCD5BED2D5BC27F1F3789F (int32_t ___low0, int32_t ___hi1, const RuntimeMethod* method);
|
|
// System.Void System.InvalidOperationException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::IndexOf(System.Array,System.Object,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135 (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::LastIndexOf(System.Array,System.Object,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method);
|
|
// System.Void System.Array::Reverse(System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method);
|
|
// System.Void System.Array::SetValue(System.Object,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mF7A2D69DFE9E9AE0F08A705123C48752D212CF6E (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index11, int32_t ___index22, const RuntimeMethod* method);
|
|
// System.Void System.Array::SetValue(System.Object,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m3AC2F0A285B2E7E1BBCD468B28E89E847CBC8C60 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index11, int32_t ___index22, int32_t ___index33, const RuntimeMethod* method);
|
|
// System.Void System.Array::SetValue(System.Object,System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380 (RuntimeArray * __this, RuntimeObject * ___value0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___indices1, const RuntimeMethod* method);
|
|
// System.Void System.Array::Sort(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80 (RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method);
|
|
// System.Void System.Array::SortImpl(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SortImpl_m69441E6855557430ED59346309E0AAA6BFB2305A (RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method);
|
|
// System.Void System.Array/ArrayEnumerator::.ctor(System.Array)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayEnumerator__ctor_mF6431B42D70C8DACACCEC14D1676A6EACA831062 (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::GetRank()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetRank_m775CE73252FA44EA9265ACF1F6AA463A7CD51F39 (RuntimeArray * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::GetUpperBound(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetUpperBound_m3BFCEE3EAF66EDFC829270B533D2C2C3907715F4 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method);
|
|
// System.Void System.IndexOutOfRangeException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Type System.Object::GetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Type::get_IsPointer()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57 (Type_t * __this, const RuntimeMethod* method);
|
|
// System.Object System.Array::GetValueImpl(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096 (RuntimeArray * __this, int32_t ___pos0, const RuntimeMethod* method);
|
|
// System.Void System.Array::SetValueImpl(System.Object,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___pos1, const RuntimeMethod* method);
|
|
// System.Array System.Array::CreateInstance(System.Type,System.Int32[],System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lowerBounds2, const RuntimeMethod* method);
|
|
// System.Array System.Array::CreateInstance(System.Type,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m5FE74E0701D431412B309031C208BB7F0B62AA05 (Type_t * ___elementType0, int32_t ___length11, int32_t ___length22, const RuntimeMethod* method);
|
|
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
|
|
// System.Void System.TypeLoadException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeLoadException__ctor_mEF05D23A192E0B9BFAAA97A77A0FC1BCBE7B4355 (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * __this, const RuntimeMethod* method);
|
|
// System.Array System.Array::CreateInstanceImpl(System.Type,System.Int32[],System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248 (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___bounds2, const RuntimeMethod* method);
|
|
// System.Void System.Array::ClearInternal(System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_ClearInternal_m2E812D006B5846D20A11EC233AA13279DA565BF1 (RuntimeArray * ___a0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method);
|
|
// System.Boolean System.Array::FastCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_FastCopy_m60EEEAC06AB32A37A7FF6C4EB31B2FB54B170097 (RuntimeArray * ___source0, int32_t ___source_idx1, RuntimeArray * ___dest2, int32_t ___dest_idx3, int32_t ___length4, const RuntimeMethod* method);
|
|
// System.Exception System.Array::CreateArrayTypeMismatchException()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5 (const RuntimeMethod* method);
|
|
// System.Boolean System.Array::CanAssignArrayElement(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_CanAssignArrayElement_m206A3C328B56DF461C1AC452F01CAAEC0377EAC8 (Type_t * ___source0, Type_t * ___target1, const RuntimeMethod* method);
|
|
// System.Void System.ArrayTypeMismatchException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayTypeMismatchException__ctor_m1E7F220C883CE2ED1C4AA08ACA96D4E4B1A635F1 (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Type::get_IsValueType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8 (Type_t * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Type::get_IsInterface()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED (Type_t * __this, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterObjectArray::.ctor(System.Object[],System.Object[],System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterObjectArray::Sort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Sort_mC04711981E0EB27D7C4509DE8CFF70B1B7336188 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterGenericArray::.ctor(System.Array,System.Array,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, RuntimeArray * ___keys0, RuntimeArray * ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterGenericArray::Sort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Sort_m31959C3FD32EE2D5942031D4B4BE5E5186FC331D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method);
|
|
// System.Void System.InvalidOperationException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterGenericArray::SwapIfGreaterWithItems(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterGenericArray::Swap(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterGenericArray::IntrospectiveSort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method);
|
|
// System.Int32 System.Collections.Generic.IntrospectiveSortUtilities::FloorLog2(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA (int32_t ___n0, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterGenericArray::IntroSort(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.IntrospectiveSortUtilities::ThrowOrIgnoreBadComparer(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A (RuntimeObject * ___comparer0, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterGenericArray::InsertionSort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterGenericArray::Heapsort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Heapsort_m348C661B9B20D60F0A7A41ABB266365D1271028C (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method);
|
|
// System.Int32 System.Array/SorterGenericArray::PickPivotAndPartition(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterGenericArray::DownHeap(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterObjectArray::SwapIfGreaterWithItems(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterObjectArray::Swap(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterObjectArray::IntrospectiveSort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterObjectArray::IntroSort(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterObjectArray::InsertionSort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterObjectArray::Heapsort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Heapsort_m9D5FCC664979AB3CCEBBA1293ED87A1AEA8918F8 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method);
|
|
// System.Int32 System.Array/SorterObjectArray::PickPivotAndPartition(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method);
|
|
// System.Void System.Array/SorterObjectArray::DownHeap(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method);
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45 (StringBuilder_t * __this, Il2CppChar ___value0, int32_t ___repeatCount1, const RuntimeMethod* method);
|
|
// System.Text.StringBuilder System.ArraySpec::Append(System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * ArraySpec_Append_mEA5F3D33185A31FDCF7365E21B65937F2FE17639 (ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method);
|
|
// System.Void System.EventArgs::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method);
|
|
// System.Object[] System.MonoCustomAttrs::GetCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method);
|
|
// System.Boolean System.MonoCustomAttrs::IsDefined(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method);
|
|
// System.Boolean System.Reflection.MemberInfo::op_Equality(System.Reflection.MemberInfo,System.Reflection.MemberInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberInfo_op_Equality_m9B77A8811138313780ADCD0A9EE018748B9249D9 (MemberInfo_t * ___left0, MemberInfo_t * ___right1, const RuntimeMethod* method);
|
|
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
|
|
// System.Attribute[] System.Attribute::InternalGetCustomAttributes(System.Reflection.PropertyInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_InternalGetCustomAttributes_m79A1BD09EEADB51067F0EAD54C2FCFED60825FD3 (PropertyInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method);
|
|
// System.Attribute[] System.Attribute::InternalGetCustomAttributes(System.Reflection.EventInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_InternalGetCustomAttributes_m786427FC13FB2D718DF52743D0D56B4F4A4B7C87 (EventInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method);
|
|
// System.Boolean System.Attribute::IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293 (MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method);
|
|
// System.Boolean System.Attribute::InternalIsDefined(System.Reflection.PropertyInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_InternalIsDefined_m5C7E046C44198677CBCA00781979A7B3799460B8 (PropertyInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method);
|
|
// System.Boolean System.Attribute::InternalIsDefined(System.Reflection.EventInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_InternalIsDefined_mE8B292CB9DC5662A6C36528E28A23B38664E6A24 (EventInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method);
|
|
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8 (MemberInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method);
|
|
// System.Void System.Reflection.AmbiguousMatchException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AmbiguousMatchException__ctor_m1828F14B6EA9C5F008237590CB3C4B0A59C03006 (AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE (Assembly_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method);
|
|
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498 (Assembly_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method);
|
|
// System.Boolean System.RuntimeType::op_Inequality(System.RuntimeType,System.RuntimeType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeType_op_Inequality_mA98A719712593FEE5DCCFDB47CCABDB58BEE1B0D (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___left0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___right1, const RuntimeMethod* method);
|
|
// System.Object System.Reflection.RtFieldInfo::UnsafeGetValue(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RtFieldInfo_UnsafeGetValue_m9B9ACFD585730B17FE5E4CE36C3F0BE529D62E3A (RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
|
|
// System.Boolean System.Attribute::AreFieldValuesEqual(System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C (RuntimeObject * ___thisValue0, RuntimeObject * ___thatValue1, const RuntimeMethod* method);
|
|
// System.Boolean System.Type::get_IsArray()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE (Type_t * __this, const RuntimeMethod* method);
|
|
// System.Void System.Attribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method);
|
|
// System.Void System.AttributeUsageAttribute::.ctor(System.AttributeTargets)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, int32_t ___validOn0, const RuntimeMethod* method);
|
|
// System.Void System.BadImageFormatException::SetMessageField()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_SetMessageField_m2C8D670210E769C795AABA7CF753B6A278036A84 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.Exception::get_HResult()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline (Exception_t * __this, const RuntimeMethod* method);
|
|
// System.String System.IO.FileLoadException::FormatFileLoadExceptionMessage(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FileLoadException_FormatFileLoadExceptionMessage_m0DB5F9435778EFAEB7E4A91987B1C1925CCAA6F6 (String_t* ___fileName0, int32_t ___hResult1, const RuntimeMethod* method);
|
|
// System.Type System.Exception::GetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3 (Exception_t * __this, const RuntimeMethod* method);
|
|
// System.Exception System.Exception::get_InnerException()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline (Exception_t * __this, const RuntimeMethod* method);
|
|
// System.String System.BadImageFormatException::get_FusionLog()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78_inline (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method);
|
|
// System.Byte[] System.BitConverter::GetBytes(System.Int16)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverter_GetBytes_mB7DFC7C4705F916C40527A87C9AA6D0EABC23512 (int16_t ___value0, const RuntimeMethod* method);
|
|
// System.Byte[] System.BitConverter::GetBytes(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverter_GetBytes_mB5BCBAAFE3AE14F2AF1731187C7155A236DF38EA (int32_t ___value0, const RuntimeMethod* method);
|
|
// System.Byte[] System.BitConverter::GetBytes(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverter_GetBytes_m2652D1E20FC48C5953639CE61B2F064C2074CF78 (int64_t ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ThrowHelper::ThrowArgumentNullException(System.ExceptionArgument)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E (int32_t ___argument0, const RuntimeMethod* method);
|
|
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument,System.ExceptionResource)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51 (int32_t ___argument0, int32_t ___resource1, const RuntimeMethod* method);
|
|
// System.Void System.ThrowHelper::ThrowArgumentException(System.ExceptionResource)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84 (int32_t ___resource0, const RuntimeMethod* method);
|
|
// System.Int16 System.BitConverter::ToInt16(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
|
|
// System.Int32 System.BitConverter::ToInt32(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
|
|
// System.Int64 System.BitConverter::ToInt64(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_ToInt64_m28987106F93DB8C163FD4E740B4FEA405CC8A7FA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
|
|
// System.Char System.BitConverter::GetHexValue(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar BitConverter_GetHexValue_mDB37DC2A53B2CFD01D8FE51C0CF7B8211E8FBBE3 (int32_t ___i0, const RuntimeMethod* method);
|
|
// System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method);
|
|
// System.Boolean System.BitConverter::AmILittleEndian()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitConverter_AmILittleEndian_m905B5F8C9D11AF2B785413526A5A1C627735ACC8 (const RuntimeMethod* method);
|
|
// System.Int32 System.Boolean::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737 (bool* __this, const RuntimeMethod* method);
|
|
// System.String System.Boolean::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301 (bool* __this, const RuntimeMethod* method);
|
|
// System.String System.Boolean::ToString(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Boolean System.Boolean::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
|
|
// System.Boolean System.Boolean::Equals(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mD6223639457331BC16211ED4772C5927668DC060 (bool* __this, bool ___obj0, const RuntimeMethod* method);
|
|
// System.Int32 System.Boolean::CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
|
|
// System.Int32 System.Boolean::CompareTo(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_m0646A70387C90DAF7C85AF4234879E31E4422911 (bool* __this, bool ___value0, const RuntimeMethod* method);
|
|
// System.Boolean System.Boolean::TryParse(System.String,System.Boolean&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_m5EA8C5E47A3BF0223FD368503B36206256937A61 (String_t* ___value0, bool* ___result1, const RuntimeMethod* method);
|
|
// System.Void System.FormatException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Boolean System.String::Equals(System.String,System.StringComparison)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method);
|
|
// System.String System.Boolean::TrimWhiteSpaceAndNull(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_TrimWhiteSpaceAndNull_mD8E9241675F8550855A9C956B39EDCE5167E381C (String_t* ___value0, const RuntimeMethod* method);
|
|
// System.Char System.String::get_Chars(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsWhiteSpace(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.TypeCode System.Boolean::GetTypeCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetTypeCode_mDA98DB5F00159689F46329C57C3A888F7DB37B88 (bool* __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_System_IConvertible_ToBoolean_m0DD28BDDA1CB08D62A712D03811E18AEA4E2624C (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Void System.InvalidCastException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812 (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.SByte System.Convert::ToSByte(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mE5314E3F9BD2A1FB38C2E8F91065A515DB980349 (bool ___value0, const RuntimeMethod* method);
|
|
// System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Byte System.Convert::ToByte(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m2F75DB84C61D7D1D64393FD5756A9C9DE04FF716 (bool ___value0, const RuntimeMethod* method);
|
|
// System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Int16 System.Convert::ToInt16(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mE5AC67CF54A1DC058F4FF94444E2BED13D4E41A1 (bool ___value0, const RuntimeMethod* method);
|
|
// System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.UInt16 System.Convert::ToUInt16(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mE5DBE88FC67DB81359A27BEC9BC61EE1C4816F7E (bool ___value0, const RuntimeMethod* method);
|
|
// System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Int32 System.Convert::ToInt32(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m39901AE09C5431063E0EDBD286948E875E747B66 (bool ___value0, const RuntimeMethod* method);
|
|
// System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.UInt32 System.Convert::ToUInt32(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m0A1093A798B8004A58C7905A23886132BDC347ED (bool ___value0, const RuntimeMethod* method);
|
|
// System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Int64 System.Convert::ToInt64(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mBF88328347C2C2FC83315E9B950ADD1CF473559E (bool ___value0, const RuntimeMethod* method);
|
|
// System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.UInt64 System.Convert::ToUInt64(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m46350FEF6029990034BDFAB1FBC4F25EAF47B53B (bool ___value0, const RuntimeMethod* method);
|
|
// System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Single System.Convert::ToSingle(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m8C04F9D9C974F7AD8B41E87B5419FFA9EB9C88E7 (bool ___value0, const RuntimeMethod* method);
|
|
// System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Double System.Convert::ToDouble(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mF6258103D74509D52040BECC84FB241B09B6CC62 (bool ___value0, const RuntimeMethod* method);
|
|
// System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Decimal System.Convert::ToDecimal(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mF2C5F32DF4C8DC0938C223031CDDF4AC1E08A0CC (bool ___value0, const RuntimeMethod* method);
|
|
// System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3 (RuntimeObject* ___value0, Type_t * ___targetType1, RuntimeObject* ___provider2, const RuntimeMethod* method);
|
|
// System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220 (bool* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.Void System.Buffer::Memcpy(System.Byte*,System.Byte*,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_m4D475106A101E5ED38EB22776EAAFB6D02F63678 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method);
|
|
// System.Int32 System.Buffer::_ByteLength(System.Array)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer__ByteLength_m35D3BB15D47BB68204C272415AB08FB4B290CA34 (RuntimeArray * ___array0, const RuntimeMethod* method);
|
|
// System.Boolean System.Buffer::InternalBlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2 (RuntimeArray * ___src0, int32_t ___srcOffsetBytes1, RuntimeArray * ___dst2, int32_t ___dstOffsetBytes3, int32_t ___byteCount4, const RuntimeMethod* method);
|
|
// System.Int32 System.Buffer::ByteLength(System.Array)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8 (RuntimeArray * ___array0, const RuntimeMethod* method);
|
|
// System.Void System.Buffer::memcpy1(System.Byte*,System.Byte*,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy1_m05CB8A5961029C3F989884D69BE7163043B9A7DF (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method);
|
|
// System.Void System.Buffer::memcpy2(System.Byte*,System.Byte*,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy2_mAA37EECC87926D9B7F5CBE42C84A7AA6F2E5306E (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method);
|
|
// System.Void System.Buffer::memcpy4(System.Byte*,System.Byte*,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy4_mDA39112959C9161FBC66E893A249B2A7F06EF771 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method);
|
|
// System.Int32 System.Byte::CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861 (uint8_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method);
|
|
// System.Int32 System.Byte::CompareTo(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m928FA81F92D3A4D461F22BB4F82CF9D3B19B8376 (uint8_t* __this, uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.Boolean System.Byte::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
|
|
// System.Boolean System.Byte::Equals(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m87DDF4363A9B222224EFCA173189FFA2574A7E16 (uint8_t* __this, uint8_t ___obj0, const RuntimeMethod* method);
|
|
// System.Int32 System.Byte::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_m57BA90F7D83EA8E9ECCA68505FFEA649D1C748E0 (uint8_t* __this, const RuntimeMethod* method);
|
|
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::GetInstance(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A (RuntimeObject* ___formatProvider0, const RuntimeMethod* method);
|
|
// System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
|
|
// System.Void System.Globalization.NumberFormatInfo::ValidateParseStyleInteger(System.Globalization.NumberStyles)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3 (int32_t ___style0, const RuntimeMethod* method);
|
|
// System.Int32 System.Number::ParseInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
|
|
// System.Void System.OverflowException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_m15CD001EEB2E79D7497E101546B04D9A5520357E (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
|
|
// System.Void System.OverflowException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731 (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_CurrentInfo()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9 (const RuntimeMethod* method);
|
|
// System.String System.Number::FormatInt32(System.Int32,System.String,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984 (int32_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
|
|
// System.String System.Byte::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m461A53F95948CC32D6646704F994C1F38DD8B263 (uint8_t* __this, const RuntimeMethod* method);
|
|
// System.String System.Byte::ToString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m5F54DEEC2138DAC5587E05890F97866DB78E75BA (uint8_t* __this, String_t* ___format0, const RuntimeMethod* method);
|
|
// System.String System.Byte::ToString(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m0E74FC03C86ECFB7B6639F93E224A1975374D8F7 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.TypeCode System.Byte::GetTypeCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetTypeCode_m043F4E13AF78380223AD83B1A86A028020F7A724 (uint8_t* __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Convert::ToBoolean(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mC149366F949BE8368C7C7C7BF3830DE15EA40AA8 (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.SByte System.Convert::ToSByte(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m750B83AD00E06419AEDFE4436323AF85520E3E00 (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_System_IConvertible_ToByte_mB9C96B9313EFCB55DCD45F90D4B2193A050C99F8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Int16 System.Convert::ToInt16(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mEC55F68B89662CDBC0E1D7D596EC04153B377E60 (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.UInt16 System.Convert::ToUInt16(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m7251119DC9E451E9DB0AB5742769643B7F414876 (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Int32 System.Convert::ToInt32(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m322C82C3EB50E7389A4A38C4601FD08705CA56CF (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.UInt32 System.Convert::ToUInt32(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m4D054799D266E79452F38327EF9D954E0D3F64D3 (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Int64 System.Convert::ToInt64(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m503ADEC363722EBF6A65F9C9F5619150BF00DDCC (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.UInt64 System.Convert::ToUInt64(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mAD731FB7078B5949B0592212E8563C59F1CC7172 (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Single System.Convert::ToSingle(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m0DC063AF835020D49B1FB600753AFCDA0205609A (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Double System.Convert::ToDouble(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mFB12B649AA6A4D71FDA6BD62D88FD785E2452FA5 (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Decimal System.Convert::ToDecimal(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_m22A4086CA96BD7E3E1D23660A838AFA0F48946D6 (uint8_t ___value0, const RuntimeMethod* method);
|
|
// System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4 (uint8_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Hashtable::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.Char::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetHashCode_m9FACC936FF239053F0CF62F1C13EB23347CDE5B2 (Il2CppChar* __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::Equals(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mF5F094BED35D6DE2ACEAE25F6FEF524B8BD9CBAC (Il2CppChar* __this, Il2CppChar ___obj0, const RuntimeMethod* method);
|
|
// System.Int32 System.Char::CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087 (Il2CppChar* __this, RuntimeObject * ___value0, const RuntimeMethod* method);
|
|
// System.Int32 System.Char::CompareTo(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m77A7EE789DCA50E2E67BFF5935438AC61E6A4A8C (Il2CppChar* __this, Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.String System.Char::ToString(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m106C901B4CB0DDEF732750349DAB71498C42C53F (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.String System.Char::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8 (Il2CppChar* __this, const RuntimeMethod* method);
|
|
// System.String System.Char::ToString(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.String System.String::CreateString(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m0E7BBCE09E386877E2B63BF7FA36B956BF221C93 (String_t* __this, Il2CppChar ___c0, int32_t ___count1, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsLatin1(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931 (Il2CppChar ___ch0, const RuntimeMethod* method);
|
|
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C (Il2CppChar ___ch0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsAscii(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8 (Il2CppChar ___ch0, const RuntimeMethod* method);
|
|
// System.Globalization.UnicodeCategory System.Char::GetLatin1UnicodeCategory(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3 (Il2CppChar ___ch0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::CheckLetter(System.Globalization.UnicodeCategory)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetter_mD46EA70277A4CDD51568114D46B5C6CB5E5265B6 (int32_t ___uc0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsWhiteSpaceLatin1(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpaceLatin1_m13356CA19562C77A7D5FE447D9D0D5FAC2663CE0 (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_m746D142522BF05468B06174B025F9049EAE2A780 (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::CheckPunctuation(System.Globalization.UnicodeCategory)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckPunctuation_m907FC59526778DAFBD88DCD8B2C262DD73297571 (int32_t ___uc0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::CheckLetterOrDigit(System.Globalization.UnicodeCategory)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetterOrDigit_m6494ECB3F3B19DC41364285D1E12B83BC0132CB9 (int32_t ___uc0, const RuntimeMethod* method);
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831 (const RuntimeMethod* method);
|
|
// System.Char System.Char::ToUpper(System.Char,System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02 (Il2CppChar ___c0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method);
|
|
// System.Char System.Char::ToLower(System.Char,System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160 (Il2CppChar ___c0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method);
|
|
// System.TypeCode System.Char::GetTypeCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetTypeCode_m7A1E2062075E3B10C48060D3CB572D7A753B907D (Il2CppChar* __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_System_IConvertible_ToChar_mFC5D9E072E60CB2493F51AD5230291F847673562 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.SByte System.Convert::ToSByte(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m0D0A382E0BFF2DAE7019CAB2F6309EB48EFFFD94 (Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Byte System.Convert::ToByte(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mF058F63299585352A96AB211EF4DA55B9996ADA5 (Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Int16 System.Convert::ToInt16(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mBAB0E578750A2DE0990F9B301C7CBE2397A61A35 (Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.UInt16 System.Convert::ToUInt16(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m2F8D708D059B3A7FC317AD8A56D492253E359E24 (Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Int32 System.Convert::ToInt32(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m8BE65713C8D5E0AD45D53B82A5A7BD187BEBA917 (Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.UInt32 System.Convert::ToUInt32(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m123C758E6CB699FCFD9E8ABCF1042C1CD70DE944 (Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Int64 System.Convert::ToInt64(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mAF15CED595F02814C73326AF76050B600CAED358 (Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.UInt64 System.Convert::ToUInt64(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mFCB74BC6F5D944A1894E875C4B8D3D53DE7EFA75 (Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB (Il2CppChar* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method);
|
|
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_m0A7D6F95B25E74A83D25C440EB089151076DF224 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::CheckNumber(System.Globalization.UnicodeCategory)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckNumber_m8993FC5CD9BEC2CD77509400615ABAB93118489E (int32_t ___uc0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsSurrogate(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_m464F9F75070ACD88165EE4734D617622A6667CB1 (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::CheckSymbol(System.Globalization.UnicodeCategory)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckSymbol_m6AD059AD59B3BA00D33FEA502BD9FD73F566AD37 (int32_t ___uc0, const RuntimeMethod* method);
|
|
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9 (int32_t ___ch0, const RuntimeMethod* method);
|
|
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68 (String_t* ___value0, int32_t ___index1, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsHighSurrogate(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.String System.String::CreateString(System.Char[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m394C06654854ADD4C51FF957BE0CC72EF52BAA96 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___val0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsLowSurrogate(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550 (const RuntimeMethod* method);
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes__ctor_mE250E0E58AA52584D077855051D7ED31141DF47A (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::set_HashName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_set_HashName_m9C9646F633FE96551CCEAE6FF7AFF2459767E10F (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, String_t* ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
__this->set__hashName_3(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::set_IterationCount(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_set_IterationCount_m8AF5551BDB39961E7E72F820595D89B5F7046098 (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, int32_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___value0;
|
|
__this->set__iterations_4(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::set_Password(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_set_Password_m16AA9059AAA60ADFC5B7F09A9D7283F6B8E1BC6F (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DeriveBytes_set_Password_m16AA9059AAA60ADFC5B7F09A9D7283F6B8E1BC6F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
__this->set__password_5(L_1);
|
|
return;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0;
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_2);
|
|
RuntimeObject * L_3 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_2, /*hidden argument*/NULL);
|
|
__this->set__password_5(((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_3, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::set_Salt(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_set_Salt_mA854998FFAD24BD9E6826587CBEEB7152BC32B30 (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DeriveBytes_set_Salt_mA854998FFAD24BD9E6826587CBEEB7152BC32B30_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___value0;
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
|
|
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
|
|
__this->set__salt_6(((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)));
|
|
return;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
__this->set__salt_6((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::Adjust(System.Byte[],System.Int32,System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_Adjust_mB007AD5E976063DCCC68BCE0DAF99DBAD3223997 (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___a0, int32_t ___aOff1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___b2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___b2;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___b2;
|
|
NullCheck(L_1);
|
|
NullCheck(L_0);
|
|
int32_t L_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))), (int32_t)1));
|
|
uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___a0;
|
|
int32_t L_5 = ___aOff1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___b2;
|
|
NullCheck(L_6);
|
|
NullCheck(L_4);
|
|
int32_t L_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))), (int32_t)1));
|
|
uint8_t L_8 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)255))), (int32_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)255))))), (int32_t)1));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___a0;
|
|
int32_t L_10 = ___aOff1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___b2;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = V_0;
|
|
NullCheck(L_9);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))), (int32_t)1))), (uint8_t)(((int32_t)((uint8_t)L_12))));
|
|
int32_t L_13 = V_0;
|
|
V_0 = ((int32_t)((int32_t)L_13>>(int32_t)8));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ___b2;
|
|
NullCheck(L_14);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))), (int32_t)2));
|
|
goto IL_005e;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
int32_t L_15 = V_0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = ___b2;
|
|
int32_t L_17 = V_1;
|
|
NullCheck(L_16);
|
|
int32_t L_18 = L_17;
|
|
uint8_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = ___a0;
|
|
int32_t L_21 = ___aOff1;
|
|
int32_t L_22 = V_1;
|
|
NullCheck(L_20);
|
|
int32_t L_23 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)L_22));
|
|
uint8_t L_24 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_19&(int32_t)((int32_t)255))), (int32_t)((int32_t)((int32_t)L_24&(int32_t)((int32_t)255)))))));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = ___a0;
|
|
int32_t L_26 = ___aOff1;
|
|
int32_t L_27 = V_1;
|
|
int32_t L_28 = V_0;
|
|
NullCheck(L_25);
|
|
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27))), (uint8_t)(((int32_t)((uint8_t)L_28))));
|
|
int32_t L_29 = V_0;
|
|
V_0 = ((int32_t)((int32_t)L_29>>(int32_t)8));
|
|
int32_t L_30 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)1));
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
int32_t L_31 = V_1;
|
|
if ((((int32_t)L_31) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::Derive(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_Derive_m4417319B4B7F85D597E9F82E69BB459A4464E7D6 (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___diversifier0, int32_t ___n1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DeriveBytes_Derive_m4417319B4B7F85D597E9F82E69BB459A4464E7D6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_5 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_6 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_12 = NULL;
|
|
int32_t V_13 = 0;
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
{
|
|
String_t* L_0 = __this->get__hashName_3();
|
|
IL2CPP_RUNTIME_CLASS_INIT(PKCS1_tD10817843EC300450DF0869873961943DE7E0E49_il2cpp_TypeInfo_var);
|
|
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_1 = PKCS1_CreateFromName_m04A1F397EE0DF24D3887A0F59EBDA38F0437F420(L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_2 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(11 /* System.Int32 System.Security.Cryptography.HashAlgorithm::get_HashSize() */, L_2);
|
|
V_1 = ((int32_t)((int32_t)L_3>>(int32_t)3));
|
|
V_2 = ((int32_t)64);
|
|
int32_t L_4 = ___n1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_4);
|
|
V_3 = L_5;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = __this->get__salt_6();
|
|
if (!L_6)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = __this->get__salt_6();
|
|
NullCheck(L_7);
|
|
if (!(((RuntimeArray*)L_7)->max_length))
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_2;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = __this->get__salt_6();
|
|
NullCheck(L_9);
|
|
int32_t L_10 = V_2;
|
|
int32_t L_11 = V_2;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_8, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10)), (int32_t)1))/(int32_t)L_11)))));
|
|
V_4 = L_12;
|
|
V_9 = 0;
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = V_4;
|
|
int32_t L_14 = V_9;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = __this->get__salt_6();
|
|
int32_t L_16 = V_9;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = __this->get__salt_6();
|
|
NullCheck(L_17);
|
|
NullCheck(L_15);
|
|
int32_t L_18 = ((int32_t)((int32_t)L_16%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))));
|
|
uint8_t L_19 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
|
|
NullCheck(L_13);
|
|
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (uint8_t)L_19);
|
|
int32_t L_20 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
int32_t L_21 = V_9;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = V_4;
|
|
NullCheck(L_22);
|
|
if ((!(((uint32_t)L_21) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))))))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
V_4 = L_23;
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = __this->get__password_5();
|
|
if (!L_24)
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = __this->get__password_5();
|
|
NullCheck(L_25);
|
|
if (!(((RuntimeArray*)L_25)->max_length))
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_26 = V_2;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = __this->get__password_5();
|
|
NullCheck(L_27);
|
|
int32_t L_28 = V_2;
|
|
int32_t L_29 = V_2;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_26, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))), (int32_t)L_28)), (int32_t)1))/(int32_t)L_29)))));
|
|
V_5 = L_30;
|
|
V_10 = 0;
|
|
goto IL_00c5;
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = V_5;
|
|
int32_t L_32 = V_10;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = __this->get__password_5();
|
|
int32_t L_34 = V_10;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = __this->get__password_5();
|
|
NullCheck(L_35);
|
|
NullCheck(L_33);
|
|
int32_t L_36 = ((int32_t)((int32_t)L_34%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length))))));
|
|
uint8_t L_37 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (uint8_t)L_37);
|
|
int32_t L_38 = V_10;
|
|
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
int32_t L_39 = V_10;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = V_5;
|
|
NullCheck(L_40);
|
|
if ((!(((uint32_t)L_39) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length))))))))
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00d7;
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
V_5 = L_41;
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = V_4;
|
|
NullCheck(L_42);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = V_5;
|
|
NullCheck(L_43);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_44 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_42)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))));
|
|
V_6 = L_44;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_45 = V_4;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_46 = V_6;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_47 = V_4;
|
|
NullCheck(L_47);
|
|
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_45, 0, (RuntimeArray *)(RuntimeArray *)L_46, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length)))), /*hidden argument*/NULL);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_48 = V_5;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_49 = V_6;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = V_4;
|
|
NullCheck(L_50);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_51 = V_5;
|
|
NullCheck(L_51);
|
|
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_48, 0, (RuntimeArray *)(RuntimeArray *)L_49, (((int32_t)((int32_t)(((RuntimeArray*)L_50)->max_length)))), (((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length)))), /*hidden argument*/NULL);
|
|
int32_t L_52 = V_2;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_53 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_52);
|
|
V_7 = L_53;
|
|
int32_t L_54 = ___n1;
|
|
int32_t L_55 = V_1;
|
|
int32_t L_56 = V_1;
|
|
V_8 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)L_55)), (int32_t)1))/(int32_t)L_56));
|
|
V_11 = 1;
|
|
goto IL_01ee;
|
|
}
|
|
|
|
IL_0121:
|
|
{
|
|
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_57 = V_0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_58 = ___diversifier0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_59 = ___diversifier0;
|
|
NullCheck(L_59);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_60 = ___diversifier0;
|
|
NullCheck(L_57);
|
|
HashAlgorithm_TransformBlock_m500873E221BF1E4278C23D3DD113FA36711CBE22(L_57, L_58, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_59)->max_length)))), L_60, 0, /*hidden argument*/NULL);
|
|
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_61 = V_0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_62 = V_6;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_63 = V_6;
|
|
NullCheck(L_63);
|
|
NullCheck(L_61);
|
|
HashAlgorithm_TransformFinalBlock_mC9CB1BD6A8E410BE986650C1478A93378F138177(L_61, L_62, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_63)->max_length)))), /*hidden argument*/NULL);
|
|
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_64 = V_0;
|
|
NullCheck(L_64);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_65 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Byte[] System.Security.Cryptography.HashAlgorithm::get_Hash() */, L_64);
|
|
V_12 = L_65;
|
|
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_66 = V_0;
|
|
NullCheck(L_66);
|
|
VirtActionInvoker0::Invoke(18 /* System.Void System.Security.Cryptography.HashAlgorithm::Initialize() */, L_66);
|
|
V_13 = 1;
|
|
goto IL_0165;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_67 = V_0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_68 = V_12;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_69 = V_12;
|
|
NullCheck(L_69);
|
|
NullCheck(L_67);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_70 = HashAlgorithm_ComputeHash_m944CD5B5BF66F170C9ACD2674E258E62ED297819(L_67, L_68, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_69)->max_length)))), /*hidden argument*/NULL);
|
|
V_12 = L_70;
|
|
int32_t L_71 = V_13;
|
|
V_13 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1));
|
|
}
|
|
|
|
IL_0165:
|
|
{
|
|
int32_t L_72 = V_13;
|
|
int32_t L_73 = __this->get__iterations_4();
|
|
if ((!(((uint32_t)L_72) == ((uint32_t)L_73))))
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}
|
|
{
|
|
V_14 = 0;
|
|
goto IL_0189;
|
|
}
|
|
|
|
IL_0174:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_74 = V_7;
|
|
int32_t L_75 = V_14;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_76 = V_12;
|
|
int32_t L_77 = V_14;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_78 = V_12;
|
|
NullCheck(L_78);
|
|
NullCheck(L_76);
|
|
int32_t L_79 = ((int32_t)((int32_t)L_77%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_78)->max_length))))));
|
|
uint8_t L_80 = (L_76)->GetAt(static_cast<il2cpp_array_size_t>(L_79));
|
|
NullCheck(L_74);
|
|
(L_74)->SetAt(static_cast<il2cpp_array_size_t>(L_75), (uint8_t)L_80);
|
|
int32_t L_81 = V_14;
|
|
V_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_81, (int32_t)1));
|
|
}
|
|
|
|
IL_0189:
|
|
{
|
|
int32_t L_82 = V_14;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_83 = V_7;
|
|
NullCheck(L_83);
|
|
if ((!(((uint32_t)L_82) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_83)->max_length))))))))
|
|
{
|
|
goto IL_0174;
|
|
}
|
|
}
|
|
{
|
|
V_15 = 0;
|
|
goto IL_01aa;
|
|
}
|
|
|
|
IL_0196:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_84 = V_6;
|
|
int32_t L_85 = V_15;
|
|
int32_t L_86 = V_2;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_87 = V_7;
|
|
DeriveBytes_Adjust_mB007AD5E976063DCCC68BCE0DAF99DBAD3223997(__this, L_84, ((int32_t)il2cpp_codegen_multiply((int32_t)L_85, (int32_t)L_86)), L_87, /*hidden argument*/NULL);
|
|
int32_t L_88 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_88, (int32_t)1));
|
|
}
|
|
|
|
IL_01aa:
|
|
{
|
|
int32_t L_89 = V_15;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_90 = V_6;
|
|
NullCheck(L_90);
|
|
int32_t L_91 = V_2;
|
|
if ((!(((uint32_t)L_89) == ((uint32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_90)->max_length))))/(int32_t)L_91))))))
|
|
{
|
|
goto IL_0196;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_92 = V_11;
|
|
int32_t L_93 = V_8;
|
|
if ((!(((uint32_t)L_92) == ((uint32_t)L_93))))
|
|
{
|
|
goto IL_01d5;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_94 = V_12;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_95 = V_3;
|
|
int32_t L_96 = V_11;
|
|
int32_t L_97 = V_1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_98 = V_3;
|
|
NullCheck(L_98);
|
|
int32_t L_99 = V_11;
|
|
int32_t L_100 = V_1;
|
|
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_94, 0, (RuntimeArray *)(RuntimeArray *)L_95, ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_96, (int32_t)1)), (int32_t)L_97)), ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_98)->max_length)))), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_99, (int32_t)1)), (int32_t)L_100)))), /*hidden argument*/NULL);
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_01d5:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_101 = V_12;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_102 = V_3;
|
|
int32_t L_103 = V_11;
|
|
int32_t L_104 = V_1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_105 = V_12;
|
|
NullCheck(L_105);
|
|
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_101, 0, (RuntimeArray *)(RuntimeArray *)L_102, ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_103, (int32_t)1)), (int32_t)L_104)), (((int32_t)((int32_t)(((RuntimeArray*)L_105)->max_length)))), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_01e8:
|
|
{
|
|
int32_t L_106 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_106, (int32_t)1));
|
|
}
|
|
|
|
IL_01ee:
|
|
{
|
|
int32_t L_107 = V_11;
|
|
int32_t L_108 = V_8;
|
|
if ((((int32_t)L_107) <= ((int32_t)L_108)))
|
|
{
|
|
goto IL_0121;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_109 = V_3;
|
|
return L_109;
|
|
}
|
|
}
|
|
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::DeriveKey(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_DeriveKey_mB869A64D12F1F4FB65F24E0724A067590DB9423F (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, int32_t ___size0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DeriveBytes_DeriveKey_mB869A64D12F1F4FB65F24E0724A067590DB9423F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_il2cpp_TypeInfo_var))->get_keyDiversifier_0();
|
|
int32_t L_1 = ___size0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = DeriveBytes_Derive_m4417319B4B7F85D597E9F82E69BB459A4464E7D6(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::DeriveIV(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_DeriveIV_m85A1C453ABAD1547195132CC0E958E856501F6CF (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, int32_t ___size0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DeriveBytes_DeriveIV_m85A1C453ABAD1547195132CC0E958E856501F6CF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_il2cpp_TypeInfo_var))->get_ivDiversifier_1();
|
|
int32_t L_1 = ___size0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = DeriveBytes_Derive_m4417319B4B7F85D597E9F82E69BB459A4464E7D6(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::DeriveMAC(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_DeriveMAC_mDF4165FCFFCB3A3789C48CBBC3FAE166A404A819 (DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889 * __this, int32_t ___size0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DeriveBytes_DeriveMAC_mDF4165FCFFCB3A3789C48CBBC3FAE166A404A819_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_il2cpp_TypeInfo_var))->get_macDiversifier_2();
|
|
int32_t L_1 = ___size0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = DeriveBytes_Derive_m4417319B4B7F85D597E9F82E69BB459A4464E7D6(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes__cctor_mC4051C84B0BB193938F7BA71B853E05DC4427319 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DeriveBytes__cctor_mC4051C84B0BB193938F7BA71B853E05DC4427319_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____320B018758ECE3752FFEDBAEB1A6DB67C80B9359_21_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
|
|
((DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_il2cpp_TypeInfo_var))->set_keyDiversifier_0(L_1);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____CF0B42666EF5E37EDEA0AB8E173E42C196D03814_117_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL);
|
|
((DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_il2cpp_TypeInfo_var))->set_ivDiversifier_1(L_4);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = L_6;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_8 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_88_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_7, L_8, /*hidden argument*/NULL);
|
|
((DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_tFCF9AE1DEEE8A9709DADE9BA48878BFB6B4E6889_il2cpp_TypeInfo_var))->set_macDiversifier_2(L_7);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void Mono.Security.X509.SafeBag::.ctor(System.String,Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeBag__ctor_m1D3F8D556CEDD12987BE0BFE9671364DB45B23F2 (SafeBag_t174C33B33B435C2F8F7B3D3B3217CE626A905945 * __this, String_t* ___bagOID0, ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___asn11, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___bagOID0;
|
|
__this->set__bagOID_0(L_0);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_1 = ___asn11;
|
|
__this->set__asn1_1(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.String Mono.Security.X509.SafeBag::get_BagOID()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SafeBag_get_BagOID_m10CE98D5F05A606099256AE7B3787676B72DEDD3 (SafeBag_t174C33B33B435C2F8F7B3D3B3217CE626A905945 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get__bagOID_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// Mono.Security.ASN1 Mono.Security.X509.SafeBag::get_ASN1()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * SafeBag_get_ASN1_m9633E084D179C0E12EAC84250EA2AB00789108DE (SafeBag_t174C33B33B435C2F8F7B3D3B3217CE626A905945 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_0 = __this->get__asn1_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.String Mono.Security.X509.X501::ToString(Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X501_ToString_mE2221E32FE2C82ABC545B94794A400F4979AE4B3 (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___seq0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X501_ToString_mE2221E32FE2C82ABC545B94794A400F4979AE4B3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_2 = NULL;
|
|
{
|
|
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
V_1 = 0;
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_1 = ___seq0;
|
|
int32_t L_2 = V_1;
|
|
NullCheck(L_1);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_3 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_1, L_2, /*hidden argument*/NULL);
|
|
V_2 = L_3;
|
|
StringBuilder_t * L_4 = V_0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_5 = V_2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
X501_AppendEntry_m6B792902676CBE52DA6D3602B64C215ACF3881FE(L_4, L_5, (bool)1, /*hidden argument*/NULL);
|
|
int32_t L_6 = V_1;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_7 = ___seq0;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_7, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_6) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_9 = V_0;
|
|
NullCheck(L_9);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_9, _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_12 = ___seq0;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_12, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_11) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_14 = V_0;
|
|
NullCheck(L_14);
|
|
String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_14);
|
|
return L_15;
|
|
}
|
|
}
|
|
// System.String Mono.Security.X509.X501::ToString(Mono.Security.ASN1,System.Boolean,System.String,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X501_ToString_m7DAF3907D55EB3E1443A8F77BBD112157D5B46D1 (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___seq0, bool ___reversed1, String_t* ___separator2, bool ___quotes3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X501_ToString_m7DAF3907D55EB3E1443A8F77BBD112157D5B46D1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_4 = NULL;
|
|
{
|
|
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = ___reversed1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_2 = ___seq0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_2, /*hidden argument*/NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1));
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_4 = ___seq0;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_6 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_4, L_5, /*hidden argument*/NULL);
|
|
V_2 = L_6;
|
|
StringBuilder_t * L_7 = V_0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_8 = V_2;
|
|
bool L_9 = ___quotes3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
X501_AppendEntry_m6B792902676CBE52DA6D3602B64C215ACF3881FE(L_7, L_8, L_9, /*hidden argument*/NULL);
|
|
int32_t L_10 = V_1;
|
|
if ((((int32_t)L_10) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_11 = V_0;
|
|
String_t* L_12 = ___separator2;
|
|
NullCheck(L_11);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_11, L_12, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t L_13 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_14 = V_1;
|
|
if ((((int32_t)L_14) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
V_3 = 0;
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_15 = ___seq0;
|
|
int32_t L_16 = V_3;
|
|
NullCheck(L_15);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_17 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_15, L_16, /*hidden argument*/NULL);
|
|
V_4 = L_17;
|
|
StringBuilder_t * L_18 = V_0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_19 = V_4;
|
|
bool L_20 = ___quotes3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
X501_AppendEntry_m6B792902676CBE52DA6D3602B64C215ACF3881FE(L_18, L_19, L_20, /*hidden argument*/NULL);
|
|
int32_t L_21 = V_3;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_22 = ___seq0;
|
|
NullCheck(L_22);
|
|
int32_t L_23 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_22, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_21) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1)))))
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_24 = V_0;
|
|
String_t* L_25 = ___separator2;
|
|
NullCheck(L_24);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_24, L_25, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_26 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
int32_t L_27 = V_3;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_28 = ___seq0;
|
|
NullCheck(L_28);
|
|
int32_t L_29 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_28, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_27) < ((int32_t)L_29)))
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
StringBuilder_t * L_30 = V_0;
|
|
NullCheck(L_30);
|
|
String_t* L_31 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_30);
|
|
return L_31;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.X501::AppendEntry(System.Text.StringBuilder,Mono.Security.ASN1,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X501_AppendEntry_m6B792902676CBE52DA6D3602B64C215ACF3881FE (StringBuilder_t * ___sb0, ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___entry1, bool ___quotes2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X501_AppendEntry_m6B792902676CBE52DA6D3602B64C215ACF3881FE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_1 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_2 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_3 = NULL;
|
|
String_t* V_4 = NULL;
|
|
StringBuilder_t * V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_7 = NULL;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_02fd;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_0 = ___entry1;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_2 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_0, L_1, /*hidden argument*/NULL);
|
|
V_1 = L_2;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_3 = V_1;
|
|
NullCheck(L_3);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_4 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_3, 1, /*hidden argument*/NULL);
|
|
V_2 = L_4;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_02f9;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_6 = V_1;
|
|
NullCheck(L_6);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_7 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_6, 0, /*hidden argument*/NULL);
|
|
V_3 = L_7;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_8 = V_3;
|
|
if (!L_8)
|
|
{
|
|
goto IL_02f9;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_9 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_countryName_0();
|
|
NullCheck(L_9);
|
|
bool L_11 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_9, L_10, /*hidden argument*/NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_12 = ___sb0;
|
|
NullCheck(L_12);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_12, _stringLiteral28B3D69739B57CAF199F039988DB6DFEA93AC5CE, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_13 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_organizationName_1();
|
|
NullCheck(L_13);
|
|
bool L_15 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_13, L_14, /*hidden argument*/NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_16 = ___sb0;
|
|
NullCheck(L_16);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_16, _stringLiteral0F55C3EB87ABA7E522BE619EF498B24F3B66D357, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_17 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_organizationalUnitName_2();
|
|
NullCheck(L_17);
|
|
bool L_19 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_17, L_18, /*hidden argument*/NULL);
|
|
if (!L_19)
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_20 = ___sb0;
|
|
NullCheck(L_20);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_20, _stringLiteralAAF41204BECC9AE2723473273563ACB861046064, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_21 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_commonName_3();
|
|
NullCheck(L_21);
|
|
bool L_23 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_21, L_22, /*hidden argument*/NULL);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00a3;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_24 = ___sb0;
|
|
NullCheck(L_24);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_24, _stringLiteralFAE7183D72E2D922886D89549E9DC0AA31A04226, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_00a3:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_25 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_localityName_4();
|
|
NullCheck(L_25);
|
|
bool L_27 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_25, L_26, /*hidden argument*/NULL);
|
|
if (!L_27)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_28 = ___sb0;
|
|
NullCheck(L_28);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_28, _stringLiteral4D01C38D447D39747350F6F29B3DC073CF36EB69, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_29 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_stateOrProvinceName_5();
|
|
NullCheck(L_29);
|
|
bool L_31 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_29, L_30, /*hidden argument*/NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_00df;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_32 = ___sb0;
|
|
NullCheck(L_32);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_32, _stringLiteralB9D719400551A68010930DED96BD8F5C0A8FFE51, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_00df:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_33 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_streetAddress_6();
|
|
NullCheck(L_33);
|
|
bool L_35 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_33, L_34, /*hidden argument*/NULL);
|
|
if (!L_35)
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_36 = ___sb0;
|
|
NullCheck(L_36);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_36, _stringLiteralA79BB3C5466E1747E27A4D48E271565C77423F5C, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_37 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_domainComponent_7();
|
|
NullCheck(L_37);
|
|
bool L_39 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_37, L_38, /*hidden argument*/NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_011b;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_40 = ___sb0;
|
|
NullCheck(L_40);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_40, _stringLiteralB906B1C4E8EC693BD44787748A9C6EB47D96A6F3, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_011b:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_41 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_userid_8();
|
|
NullCheck(L_41);
|
|
bool L_43 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_41, L_42, /*hidden argument*/NULL);
|
|
if (!L_43)
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_44 = ___sb0;
|
|
NullCheck(L_44);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_44, _stringLiteralFFD87CEDA20B4534B76315088FAE09B20B741846, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_45 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_46 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_email_9();
|
|
NullCheck(L_45);
|
|
bool L_47 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_45, L_46, /*hidden argument*/NULL);
|
|
if (!L_47)
|
|
{
|
|
goto IL_0157;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_48 = ___sb0;
|
|
NullCheck(L_48);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_48, _stringLiteralAF3660C744976107BED8FC205296D903AFBCF8D5, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_0157:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_49 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_dnQualifier_10();
|
|
NullCheck(L_49);
|
|
bool L_51 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_49, L_50, /*hidden argument*/NULL);
|
|
if (!L_51)
|
|
{
|
|
goto IL_0175;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_52 = ___sb0;
|
|
NullCheck(L_52);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_52, _stringLiteral09064C8431C9942F09D36EE43DACB440E8B42B8F, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_0175:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_53 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_54 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_title_11();
|
|
NullCheck(L_53);
|
|
bool L_55 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_53, L_54, /*hidden argument*/NULL);
|
|
if (!L_55)
|
|
{
|
|
goto IL_0190;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_56 = ___sb0;
|
|
NullCheck(L_56);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_56, _stringLiteralF2507A133F1CDD66D4A6B0DC9A0A6F4558D39AB7, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_0190:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_57 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_58 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_surname_12();
|
|
NullCheck(L_57);
|
|
bool L_59 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_57, L_58, /*hidden argument*/NULL);
|
|
if (!L_59)
|
|
{
|
|
goto IL_01ab;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_60 = ___sb0;
|
|
NullCheck(L_60);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_60, _stringLiteral93E119B1853ED8810093C33F265CF1B1A0A6B1A2, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_01ab:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_61 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_62 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_givenName_13();
|
|
NullCheck(L_61);
|
|
bool L_63 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_61, L_62, /*hidden argument*/NULL);
|
|
if (!L_63)
|
|
{
|
|
goto IL_01c6;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_64 = ___sb0;
|
|
NullCheck(L_64);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_64, _stringLiteral36DC074F734611AC43ECA91F89189DB7BF0C9C20, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_01c6:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_65 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_66 = ((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->get_initial_14();
|
|
NullCheck(L_65);
|
|
bool L_67 = ASN1_CompareValue_m9BB3AFD0FD94AE4C59E934D6D4A740177F50251F(L_65, L_66, /*hidden argument*/NULL);
|
|
if (!L_67)
|
|
{
|
|
goto IL_01e1;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_68 = ___sb0;
|
|
NullCheck(L_68);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_68, _stringLiteral019A3223E819F9804E2A27B7FED3A7D841457746, /*hidden argument*/NULL);
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_01e1:
|
|
{
|
|
StringBuilder_t * L_69 = ___sb0;
|
|
NullCheck(L_69);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_69, _stringLiteral5E930233E7755E8AABF4429C153DFCE37500C051, /*hidden argument*/NULL);
|
|
StringBuilder_t * L_70 = ___sb0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_71 = V_3;
|
|
String_t* L_72 = ASN1Convert_ToOid_m7C568C6223BAB8821F8EB9C26FB47F4121214914(L_71, /*hidden argument*/NULL);
|
|
NullCheck(L_70);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_70, L_72, /*hidden argument*/NULL);
|
|
StringBuilder_t * L_73 = ___sb0;
|
|
NullCheck(L_73);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_73, _stringLiteral21606782C65E44CAC7AFBB90977D8B6F82140E76, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0206:
|
|
{
|
|
V_4 = (String_t*)NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_74 = V_2;
|
|
NullCheck(L_74);
|
|
uint8_t L_75 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_74, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_75) == ((uint32_t)((int32_t)30)))))
|
|
{
|
|
goto IL_0250;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_76 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_76, /*hidden argument*/NULL);
|
|
V_5 = L_76;
|
|
V_6 = 1;
|
|
goto IL_0236;
|
|
}
|
|
|
|
IL_021f:
|
|
{
|
|
StringBuilder_t * L_77 = V_5;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_78 = V_2;
|
|
NullCheck(L_78);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_79 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_78, /*hidden argument*/NULL);
|
|
int32_t L_80 = V_6;
|
|
NullCheck(L_79);
|
|
int32_t L_81 = L_80;
|
|
uint8_t L_82 = (L_79)->GetAt(static_cast<il2cpp_array_size_t>(L_81));
|
|
NullCheck(L_77);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_77, L_82, /*hidden argument*/NULL);
|
|
int32_t L_83 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_83, (int32_t)2));
|
|
}
|
|
|
|
IL_0236:
|
|
{
|
|
int32_t L_84 = V_6;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_85 = V_2;
|
|
NullCheck(L_85);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_86 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_85, /*hidden argument*/NULL);
|
|
NullCheck(L_86);
|
|
if ((((int32_t)L_84) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_86)->max_length)))))))
|
|
{
|
|
goto IL_021f;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_87 = V_5;
|
|
NullCheck(L_87);
|
|
String_t* L_88 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_87);
|
|
V_4 = L_88;
|
|
goto IL_02d9;
|
|
}
|
|
|
|
IL_0250:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_89 = V_2;
|
|
NullCheck(L_89);
|
|
uint8_t L_90 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_89, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_90) == ((uint32_t)((int32_t)20)))))
|
|
{
|
|
goto IL_026e;
|
|
}
|
|
}
|
|
{
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_91 = Encoding_get_UTF7_mE709E3E74B727CFCC6675F07BC0AF19C7B4D0F1C(/*hidden argument*/NULL);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_92 = V_2;
|
|
NullCheck(L_92);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_93 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_92, /*hidden argument*/NULL);
|
|
NullCheck(L_91);
|
|
String_t* L_94 = VirtFuncInvoker1< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(34 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_91, L_93);
|
|
V_4 = L_94;
|
|
goto IL_0280;
|
|
}
|
|
|
|
IL_026e:
|
|
{
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_95 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_96 = V_2;
|
|
NullCheck(L_96);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_97 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_96, /*hidden argument*/NULL);
|
|
NullCheck(L_95);
|
|
String_t* L_98 = VirtFuncInvoker1< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(34 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_95, L_97);
|
|
V_4 = L_98;
|
|
}
|
|
|
|
IL_0280:
|
|
{
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_99 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)7);
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_100 = L_99;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_101 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_19_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_100, L_101, /*hidden argument*/NULL);
|
|
V_7 = L_100;
|
|
bool L_102 = ___quotes2;
|
|
if (!L_102)
|
|
{
|
|
goto IL_02d9;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_103 = V_4;
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_104 = V_7;
|
|
String_t* L_105 = V_4;
|
|
NullCheck(L_105);
|
|
int32_t L_106 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_105, /*hidden argument*/NULL);
|
|
NullCheck(L_103);
|
|
int32_t L_107 = String_IndexOfAny_mB7D79AEF460C7C8B3B0CCC573191FA0E339DD495(L_103, L_104, 0, L_106, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_107) > ((int32_t)0)))
|
|
{
|
|
goto IL_02c6;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_108 = V_4;
|
|
NullCheck(L_108);
|
|
bool L_109 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_108, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL);
|
|
if (L_109)
|
|
{
|
|
goto IL_02c6;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_110 = V_4;
|
|
NullCheck(L_110);
|
|
bool L_111 = String_EndsWith_mE4F039DCC2A9FCB8C1ED2D04B00A35E3CE16DE99(L_110, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL);
|
|
if (!L_111)
|
|
{
|
|
goto IL_02d9;
|
|
}
|
|
}
|
|
|
|
IL_02c6:
|
|
{
|
|
String_t* L_112 = V_4;
|
|
String_t* L_113 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, L_112, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL);
|
|
V_4 = L_113;
|
|
}
|
|
|
|
IL_02d9:
|
|
{
|
|
StringBuilder_t * L_114 = ___sb0;
|
|
String_t* L_115 = V_4;
|
|
NullCheck(L_114);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_114, L_115, /*hidden argument*/NULL);
|
|
int32_t L_116 = V_0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_117 = ___entry1;
|
|
NullCheck(L_117);
|
|
int32_t L_118 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_117, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_116) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_118, (int32_t)1)))))
|
|
{
|
|
goto IL_02f9;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_119 = ___sb0;
|
|
NullCheck(L_119);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_119, _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_02f9:
|
|
{
|
|
int32_t L_120 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_120, (int32_t)1));
|
|
}
|
|
|
|
IL_02fd:
|
|
{
|
|
int32_t L_121 = V_0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_122 = ___entry1;
|
|
NullCheck(L_122);
|
|
int32_t L_123 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_122, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_121) < ((int32_t)L_123)))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.X501::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X501__cctor_mB30CF419A807D4E4C9F26C1D636650E1CC515A3B (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X501__cctor_mB30CF419A807D4E4C9F26C1D636650E1CC515A3B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____736D39815215889F11249D9958F6ED12D37B9F57_64_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_countryName_0(L_1);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_89_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_organizationName_1(L_4);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = L_6;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_8 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_29_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_7, L_8, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_organizationalUnitName_2(L_7);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = L_9;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_11 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____1A84029C80CB5518379F199F53FF08A7B764F8FD_7_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_10, L_11, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_commonName_3(L_10);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = L_12;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_14 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____12D04472A8285260EA12FD3813CDFA9F2D2B548C_4_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_13, L_14, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_localityName_4(L_13);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = L_15;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_17 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____97FB30C84FF4A41CD4625B44B2940BFC8DB43003_86_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_16, L_17, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_stateOrProvinceName_5(L_16);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = L_18;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_20 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____235D99572263B22ADFEE10FDA0C25E12F4D94FFC_11_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_19, L_20, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_streetAddress_6(L_19);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = L_21;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_23 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_134_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_22, L_23, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_domainComponent_7(L_22);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = L_24;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_26 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____56DFA5053B3131883637F53219E7D88CCEF35949_42_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_25, L_26, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_userid_8(L_25);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = L_27;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_29 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____6D49C9D487D7AD3491ECE08732D68A593CC2038D_57_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_28, L_29, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_email_9(L_28);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = L_30;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_32 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____86F4F563FA2C61798AE6238D789139739428463A_72_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_31, L_32, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_dnQualifier_10(L_31);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = L_33;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_35 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____13A35EF1A549297C70E2AD46045BBD2ECA17852D_5_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_34, L_35, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_title_11(L_34);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = L_36;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_38 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_135_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_37, L_38, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_surname_12(L_37);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = L_39;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_41 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____A323DB0813C4D072957BA6FDA79D9776674CD06B_93_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_40, L_41, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_givenName_13(L_40);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = L_42;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_44 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_111_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_43, L_44, /*hidden argument*/NULL);
|
|
((X501_tE94C087B0902DF20A534C0120C76982167A558F5_StaticFields*)il2cpp_codegen_static_fields_for(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var))->set_initial_14(L_43);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void Mono.Security.X509.X509Certificate::Parse(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate_Parse_mDBD169C54D9E5522079A271FAD5DA80567519C7F (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Certificate_Parse_mDBD169C54D9E5522079A271FAD5DA80567519C7F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_2 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_3 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_4 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_5 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_6 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_7 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_8 = NULL;
|
|
int32_t V_9 = 0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_10 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_11 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_12 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_13 = NULL;
|
|
Exception_t * V_14 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * G_B11_0 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * G_B11_1 = NULL;
|
|
X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * G_B10_0 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * G_B10_1 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B12_0 = NULL;
|
|
X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * G_B12_1 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * G_B12_2 = NULL;
|
|
|
|
IL_0000:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_1 = (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 *)il2cpp_codegen_object_new(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22_il2cpp_TypeInfo_var);
|
|
ASN1__ctor_m1D03549576234C96B7AE3D6CD9B43D92DB07414E(L_1, L_0, /*hidden argument*/NULL);
|
|
__this->set_decoder_0(L_1);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_2 = __this->get_decoder_0();
|
|
NullCheck(L_2);
|
|
uint8_t L_3 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_2, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var);
|
|
String_t* L_4 = ((X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var))->get_encoding_error_21();
|
|
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_5 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
|
|
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_5, L_4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, X509Certificate_Parse_mDBD169C54D9E5522079A271FAD5DA80567519C7F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_6 = __this->get_decoder_0();
|
|
NullCheck(L_6);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_7 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_6, 0, /*hidden argument*/NULL);
|
|
NullCheck(L_7);
|
|
uint8_t L_8 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_7, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_8) == ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var);
|
|
String_t* L_9 = ((X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var))->get_encoding_error_21();
|
|
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_10 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
|
|
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_10, L_9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, X509Certificate_Parse_mDBD169C54D9E5522079A271FAD5DA80567519C7F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_11 = __this->get_decoder_0();
|
|
NullCheck(L_11);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_12 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_11, 0, /*hidden argument*/NULL);
|
|
V_0 = L_12;
|
|
V_1 = 0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_13 = __this->get_decoder_0();
|
|
NullCheck(L_13);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_14 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_13, 0, /*hidden argument*/NULL);
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_16 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_14, L_15, /*hidden argument*/NULL);
|
|
V_2 = L_16;
|
|
__this->set_version_16(1);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_17 = V_2;
|
|
NullCheck(L_17);
|
|
uint8_t L_18 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_17, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)160)))))
|
|
{
|
|
goto IL_00a4;
|
|
}
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_19 = V_2;
|
|
NullCheck(L_19);
|
|
int32_t L_20 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_19, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_20) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00a4;
|
|
}
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
int32_t L_21 = __this->get_version_16();
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_22 = V_2;
|
|
NullCheck(L_22);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_23 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_22, 0, /*hidden argument*/NULL);
|
|
NullCheck(L_23);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_23, /*hidden argument*/NULL);
|
|
NullCheck(L_24);
|
|
int32_t L_25 = 0;
|
|
uint8_t L_26 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
__this->set_version_16(((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)L_26)));
|
|
int32_t L_27 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_28 = __this->get_decoder_0();
|
|
NullCheck(L_28);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_29 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_28, 0, /*hidden argument*/NULL);
|
|
int32_t L_30 = V_1;
|
|
int32_t L_31 = L_30;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
|
|
NullCheck(L_29);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_32 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_29, L_31, /*hidden argument*/NULL);
|
|
V_3 = L_32;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_33 = V_3;
|
|
NullCheck(L_33);
|
|
uint8_t L_34 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_33, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_34) == ((int32_t)2)))
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var);
|
|
String_t* L_35 = ((X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var))->get_encoding_error_21();
|
|
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_36 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
|
|
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_36, L_35, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, X509Certificate_Parse_mDBD169C54D9E5522079A271FAD5DA80567519C7F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_37 = V_3;
|
|
NullCheck(L_37);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_37, /*hidden argument*/NULL);
|
|
__this->set_serialnumber_17(L_38);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = __this->get_serialnumber_17();
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = __this->get_serialnumber_17();
|
|
NullCheck(L_40);
|
|
Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13(L_39, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length)))), /*hidden argument*/Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_RuntimeMethod_var);
|
|
int32_t L_41 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_42 = V_0;
|
|
int32_t L_43 = V_1;
|
|
int32_t L_44 = L_43;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
|
|
NullCheck(L_42);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_45 = ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC(L_42, L_44, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
|
|
__this->set_issuer_4(L_45);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_46 = __this->get_issuer_4();
|
|
IL2CPP_RUNTIME_CLASS_INIT(X501_tE94C087B0902DF20A534C0120C76982167A558F5_il2cpp_TypeInfo_var);
|
|
String_t* L_47 = X501_ToString_mE2221E32FE2C82ABC545B94794A400F4979AE4B3(L_46, /*hidden argument*/NULL);
|
|
__this->set_m_issuername_5(L_47);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_48 = V_0;
|
|
int32_t L_49 = V_1;
|
|
int32_t L_50 = L_49;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1));
|
|
NullCheck(L_48);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_51 = ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC(L_48, L_50, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_52 = L_51;
|
|
NullCheck(L_52);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_53 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_52, 0, /*hidden argument*/NULL);
|
|
V_4 = L_53;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_54 = V_4;
|
|
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_55 = ASN1Convert_ToDateTime_m178C1F068A5191C7366C5D5863107103C15009AC(L_54, /*hidden argument*/NULL);
|
|
__this->set_m_from_2(L_55);
|
|
NullCheck(L_52);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_56 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_52, 1, /*hidden argument*/NULL);
|
|
V_5 = L_56;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_57 = V_5;
|
|
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_58 = ASN1Convert_ToDateTime_m178C1F068A5191C7366C5D5863107103C15009AC(L_57, /*hidden argument*/NULL);
|
|
__this->set_m_until_3(L_58);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_59 = V_0;
|
|
int32_t L_60 = V_1;
|
|
int32_t L_61 = L_60;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1));
|
|
NullCheck(L_59);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_62 = ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC(L_59, L_61, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
|
|
__this->set_subject_8(L_62);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_63 = __this->get_subject_8();
|
|
String_t* L_64 = X501_ToString_mE2221E32FE2C82ABC545B94794A400F4979AE4B3(L_63, /*hidden argument*/NULL);
|
|
__this->set_m_subject_9(L_64);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_65 = V_0;
|
|
int32_t L_66 = V_1;
|
|
int32_t L_67 = L_66;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_67, (int32_t)1));
|
|
NullCheck(L_65);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_68 = ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC(L_65, L_67, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_69 = L_68;
|
|
NullCheck(L_69);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_70 = ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC(L_69, 0, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
|
|
V_6 = L_70;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_71 = V_6;
|
|
NullCheck(L_71);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_72 = ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC(L_71, 0, (uint8_t)6, /*hidden argument*/NULL);
|
|
V_7 = L_72;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_73 = V_7;
|
|
String_t* L_74 = ASN1Convert_ToOid_m7C568C6223BAB8821F8EB9C26FB47F4121214914(L_73, /*hidden argument*/NULL);
|
|
__this->set_m_keyalgo_6(L_74);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_75 = V_6;
|
|
NullCheck(L_75);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_76 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_75, 1, /*hidden argument*/NULL);
|
|
V_8 = L_76;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_77 = V_6;
|
|
NullCheck(L_77);
|
|
int32_t L_78 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_77, /*hidden argument*/NULL);
|
|
G_B10_0 = __this;
|
|
G_B10_1 = L_69;
|
|
if ((((int32_t)L_78) > ((int32_t)1)))
|
|
{
|
|
G_B11_0 = __this;
|
|
G_B11_1 = L_69;
|
|
goto IL_01bb;
|
|
}
|
|
}
|
|
|
|
IL_01b8:
|
|
{
|
|
G_B12_0 = ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(NULL));
|
|
G_B12_1 = G_B10_0;
|
|
G_B12_2 = G_B10_1;
|
|
goto IL_01c2;
|
|
}
|
|
|
|
IL_01bb:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_79 = V_8;
|
|
NullCheck(L_79);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_80 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_79);
|
|
G_B12_0 = L_80;
|
|
G_B12_1 = G_B11_0;
|
|
G_B12_2 = G_B11_1;
|
|
}
|
|
|
|
IL_01c2:
|
|
{
|
|
NullCheck(G_B12_1);
|
|
G_B12_1->set_m_keyalgoparams_7(G_B12_0);
|
|
NullCheck(G_B12_2);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_81 = ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC(G_B12_2, 1, (uint8_t)3, /*hidden argument*/NULL);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_82 = L_81;
|
|
NullCheck(L_82);
|
|
int32_t L_83 = ASN1_get_Length_m26CEA287586CB72CF05106666242A4799B5D6564(L_82, /*hidden argument*/NULL);
|
|
V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_83, (int32_t)1));
|
|
int32_t L_84 = V_9;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_85 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_84);
|
|
__this->set_m_publickey_10(L_85);
|
|
NullCheck(L_82);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_86 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_82, /*hidden argument*/NULL);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_87 = __this->get_m_publickey_10();
|
|
int32_t L_88 = V_9;
|
|
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_86, 1, (RuntimeArray *)(RuntimeArray *)L_87, 0, L_88, /*hidden argument*/NULL);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_89 = __this->get_decoder_0();
|
|
NullCheck(L_89);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_90 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_89, 2, /*hidden argument*/NULL);
|
|
NullCheck(L_90);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_91 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_90, /*hidden argument*/NULL);
|
|
V_10 = L_91;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_92 = V_10;
|
|
NullCheck(L_92);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_93 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_92)->max_length)))), (int32_t)1)));
|
|
__this->set_signature_11(L_93);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_94 = V_10;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_95 = __this->get_signature_11();
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_96 = __this->get_signature_11();
|
|
NullCheck(L_96);
|
|
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_94, 1, (RuntimeArray *)(RuntimeArray *)L_95, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_96)->max_length)))), /*hidden argument*/NULL);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_97 = __this->get_decoder_0();
|
|
NullCheck(L_97);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_98 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_97, 1, /*hidden argument*/NULL);
|
|
V_6 = L_98;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_99 = V_6;
|
|
NullCheck(L_99);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_100 = ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC(L_99, 0, (uint8_t)6, /*hidden argument*/NULL);
|
|
V_7 = L_100;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_101 = V_7;
|
|
String_t* L_102 = ASN1Convert_ToOid_m7C568C6223BAB8821F8EB9C26FB47F4121214914(L_101, /*hidden argument*/NULL);
|
|
__this->set_m_signaturealgo_12(L_102);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_103 = V_6;
|
|
NullCheck(L_103);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_104 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_103, 1, /*hidden argument*/NULL);
|
|
V_8 = L_104;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_105 = V_8;
|
|
if (!L_105)
|
|
{
|
|
goto IL_0277;
|
|
}
|
|
}
|
|
|
|
IL_0268:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_106 = V_8;
|
|
NullCheck(L_106);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_107 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_106);
|
|
__this->set_m_signaturealgoparams_13(L_107);
|
|
goto IL_027e;
|
|
}
|
|
|
|
IL_0277:
|
|
{
|
|
__this->set_m_signaturealgoparams_13((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL);
|
|
}
|
|
|
|
IL_027e:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_108 = V_0;
|
|
int32_t L_109 = V_1;
|
|
NullCheck(L_108);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_110 = ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC(L_108, L_109, (uint8_t)((int32_t)129), /*hidden argument*/NULL);
|
|
V_11 = L_110;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_111 = V_11;
|
|
if (!L_111)
|
|
{
|
|
goto IL_02a1;
|
|
}
|
|
}
|
|
|
|
IL_0290:
|
|
{
|
|
int32_t L_112 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_112, (int32_t)1));
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_113 = V_11;
|
|
NullCheck(L_113);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_114 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_113, /*hidden argument*/NULL);
|
|
__this->set_issuerUniqueID_18(L_114);
|
|
}
|
|
|
|
IL_02a1:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_115 = V_0;
|
|
int32_t L_116 = V_1;
|
|
NullCheck(L_115);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_117 = ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC(L_115, L_116, (uint8_t)((int32_t)130), /*hidden argument*/NULL);
|
|
V_12 = L_117;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_118 = V_12;
|
|
if (!L_118)
|
|
{
|
|
goto IL_02c4;
|
|
}
|
|
}
|
|
|
|
IL_02b3:
|
|
{
|
|
int32_t L_119 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_119, (int32_t)1));
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_120 = V_12;
|
|
NullCheck(L_120);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_121 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_120, /*hidden argument*/NULL);
|
|
__this->set_subjectUniqueID_19(L_121);
|
|
}
|
|
|
|
IL_02c4:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_122 = V_0;
|
|
int32_t L_123 = V_1;
|
|
NullCheck(L_122);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_124 = ASN1_Element_m8870ED374D65CB4D720E0C4FA8F349416FF3E7AC(L_122, L_123, (uint8_t)((int32_t)163), /*hidden argument*/NULL);
|
|
V_13 = L_124;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_125 = V_13;
|
|
if (!L_125)
|
|
{
|
|
goto IL_02f5;
|
|
}
|
|
}
|
|
|
|
IL_02d6:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_126 = V_13;
|
|
NullCheck(L_126);
|
|
int32_t L_127 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_126, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_127) == ((uint32_t)1))))
|
|
{
|
|
goto IL_02f5;
|
|
}
|
|
}
|
|
|
|
IL_02e0:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_128 = V_13;
|
|
NullCheck(L_128);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_129 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_128, 0, /*hidden argument*/NULL);
|
|
X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 * L_130 = (X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 *)il2cpp_codegen_object_new(X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1_il2cpp_TypeInfo_var);
|
|
X509ExtensionCollection__ctor_m0441BFBD0D73B5878D71B56DB9A2B67D73E39A09(L_130, L_129, /*hidden argument*/NULL);
|
|
__this->set_extensions_20(L_130);
|
|
goto IL_0301;
|
|
}
|
|
|
|
IL_02f5:
|
|
{
|
|
X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 * L_131 = (X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 *)il2cpp_codegen_object_new(X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1_il2cpp_TypeInfo_var);
|
|
X509ExtensionCollection__ctor_m0441BFBD0D73B5878D71B56DB9A2B67D73E39A09(L_131, (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 *)NULL, /*hidden argument*/NULL);
|
|
__this->set_extensions_20(L_131);
|
|
}
|
|
|
|
IL_0301:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_132 = ___data0;
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_132);
|
|
RuntimeObject * L_133 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_132, /*hidden argument*/NULL);
|
|
__this->set_m_encodedcert_1(((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_133, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)));
|
|
goto IL_0323;
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0314;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0314:
|
|
{ // begin catch(System.Exception)
|
|
V_14 = ((Exception_t *)__exception_local);
|
|
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var);
|
|
String_t* L_134 = ((X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var))->get_encoding_error_21();
|
|
Exception_t * L_135 = V_14;
|
|
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_136 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
|
|
CryptographicException__ctor_m65F4E67FD9D0449B5BFFC04E359BF3EC098075DA(L_136, L_134, L_135, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_136, X509Certificate_Parse_mDBD169C54D9E5522079A271FAD5DA80567519C7F_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
IL_0323:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.X509Certificate::.ctor(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate__ctor_mD20B4220D8F4B61E18DEECA81BFB652BFB55234E (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Certificate__ctor_mD20B4220D8F4B61E18DEECA81BFB652BFB55234E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t * V_0 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___data0;
|
|
NullCheck(L_1);
|
|
if (!(((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___data0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = 0;
|
|
uint8_t L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
|
|
IL_0014:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___data0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = X509Certificate_PEM_m7222F318BC4E9A4D263E49EC236D7F3626366B55(_stringLiteralF4A57516EE55A1A8F06B82FEAA340CC2841AB009, L_5, /*hidden argument*/NULL);
|
|
___data0 = L_6;
|
|
goto IL_0030;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0023;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0023:
|
|
{ // begin catch(System.Exception)
|
|
V_0 = ((Exception_t *)__exception_local);
|
|
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var);
|
|
String_t* L_7 = ((X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var))->get_encoding_error_21();
|
|
Exception_t * L_8 = V_0;
|
|
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_9 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
|
|
CryptographicException__ctor_m65F4E67FD9D0449B5BFFC04E359BF3EC098075DA(L_9, L_7, L_8, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, X509Certificate__ctor_mD20B4220D8F4B61E18DEECA81BFB652BFB55234E_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
IL_0030:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___data0;
|
|
X509Certificate_Parse_mDBD169C54D9E5522079A271FAD5DA80567519C7F(__this, L_10, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::GetUnsignedBigInteger(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* X509Certificate_GetUnsignedBigInteger_m50790BFFFE21F0ED229BADB82A9881673FB61EE6 (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___integer0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Certificate_GetUnsignedBigInteger_m50790BFFFE21F0ED229BADB82A9881673FB61EE6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___integer0;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = 0;
|
|
uint8_t L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1));
|
|
if (L_2)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___integer0;
|
|
NullCheck(L_3);
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))), (int32_t)1));
|
|
int32_t L_4 = V_0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_4);
|
|
V_1 = L_5;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___integer0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = V_1;
|
|
int32_t L_8 = V_0;
|
|
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_6, 1, (RuntimeArray *)(RuntimeArray *)L_7, 0, L_8, /*hidden argument*/NULL);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___integer0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.DSA Mono.Security.X509.X509Certificate::get_DSA()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * X509Certificate_get_DSA_m3427054136A14DF290537F797FE8A40784802FFC (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Certificate_get_DSA_m3427054136A14DF290537F797FE8A40784802FFC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_1 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_2 = NULL;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get_m_keyalgoparams_7();
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_1 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
|
|
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_1, _stringLiteral8D357A0A6981BFB00B37DF4E165A0DBFB637E034, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, X509Certificate_get_DSA_m3427054136A14DF290537F797FE8A40784802FFC_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_2 = __this->get__dsa_15();
|
|
if (L_2)
|
|
{
|
|
goto IL_0127;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_3 = __this->get_m_keyalgo_6();
|
|
bool L_4 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_3, _stringLiteral3D40DBB928A5C7B5821BA584FE0E47297DFAA72C, /*hidden argument*/NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0127;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 ));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = __this->get_m_publickey_10();
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_6 = (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 *)il2cpp_codegen_object_new(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22_il2cpp_TypeInfo_var);
|
|
ASN1__ctor_m1D03549576234C96B7AE3D6CD9B43D92DB07414E(L_6, L_5, /*hidden argument*/NULL);
|
|
V_1 = L_6;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_8 = V_1;
|
|
NullCheck(L_8);
|
|
uint8_t L_9 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_8, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_9) == ((int32_t)2)))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
return (DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF *)NULL;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_10 = V_1;
|
|
NullCheck(L_10);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_10, /*hidden argument*/NULL);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = X509Certificate_GetUnsignedBigInteger_m50790BFFFE21F0ED229BADB82A9881673FB61EE6(__this, L_11, /*hidden argument*/NULL);
|
|
(&V_0)->set_Y_3(L_12);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = __this->get_m_keyalgoparams_7();
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_14 = (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 *)il2cpp_codegen_object_new(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22_il2cpp_TypeInfo_var);
|
|
ASN1__ctor_m1D03549576234C96B7AE3D6CD9B43D92DB07414E(L_14, L_13, /*hidden argument*/NULL);
|
|
V_2 = L_14;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_15 = V_2;
|
|
if (!L_15)
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_16 = V_2;
|
|
NullCheck(L_16);
|
|
uint8_t L_17 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_16, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)48)))))
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_18 = V_2;
|
|
NullCheck(L_18);
|
|
int32_t L_19 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_18, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_19) >= ((int32_t)3)))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
return (DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF *)NULL;
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_20 = V_2;
|
|
NullCheck(L_20);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_21 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_20, 0, /*hidden argument*/NULL);
|
|
NullCheck(L_21);
|
|
uint8_t L_22 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_21, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_22) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_23 = V_2;
|
|
NullCheck(L_23);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_24 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_23, 1, /*hidden argument*/NULL);
|
|
NullCheck(L_24);
|
|
uint8_t L_25 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_24, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_26 = V_2;
|
|
NullCheck(L_26);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_27 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_26, 2, /*hidden argument*/NULL);
|
|
NullCheck(L_27);
|
|
uint8_t L_28 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_27, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_28) == ((int32_t)2)))
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
return (DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF *)NULL;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_29 = V_2;
|
|
NullCheck(L_29);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_30 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_29, 0, /*hidden argument*/NULL);
|
|
NullCheck(L_30);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_30, /*hidden argument*/NULL);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = X509Certificate_GetUnsignedBigInteger_m50790BFFFE21F0ED229BADB82A9881673FB61EE6(__this, L_31, /*hidden argument*/NULL);
|
|
(&V_0)->set_P_0(L_32);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_33 = V_2;
|
|
NullCheck(L_33);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_34 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_33, 1, /*hidden argument*/NULL);
|
|
NullCheck(L_34);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_34, /*hidden argument*/NULL);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = X509Certificate_GetUnsignedBigInteger_m50790BFFFE21F0ED229BADB82A9881673FB61EE6(__this, L_35, /*hidden argument*/NULL);
|
|
(&V_0)->set_Q_1(L_36);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_37 = V_2;
|
|
NullCheck(L_37);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_38 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_37, 2, /*hidden argument*/NULL);
|
|
NullCheck(L_38);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_38, /*hidden argument*/NULL);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = X509Certificate_GetUnsignedBigInteger_m50790BFFFE21F0ED229BADB82A9881673FB61EE6(__this, L_39, /*hidden argument*/NULL);
|
|
(&V_0)->set_G_2(L_40);
|
|
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 L_41 = V_0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = L_41.get_Y_3();
|
|
NullCheck(L_42);
|
|
DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8 * L_43 = (DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8 *)il2cpp_codegen_object_new(DSACryptoServiceProvider_t2F04D5DDEC979A82A4FE89530F0F712DFE12D6C8_il2cpp_TypeInfo_var);
|
|
DSACryptoServiceProvider__ctor_m7543CB44E8F80ADC129572DD56E4C11F4C18B790(L_43, ((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_42)->max_length))))<<(int32_t)3)), /*hidden argument*/NULL);
|
|
__this->set__dsa_15(L_43);
|
|
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_44 = __this->get__dsa_15();
|
|
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 L_45 = V_0;
|
|
NullCheck(L_44);
|
|
VirtActionInvoker1< DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 >::Invoke(22 /* System.Void System.Security.Cryptography.DSA::ImportParameters(System.Security.Cryptography.DSAParameters) */, L_44, L_45);
|
|
}
|
|
|
|
IL_0127:
|
|
{
|
|
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_46 = __this->get__dsa_15();
|
|
return L_46;
|
|
}
|
|
}
|
|
// System.String Mono.Security.X509.X509Certificate::get_IssuerName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate_get_IssuerName_m491ECAA921D115670727F97A301A0B063D1F6F93 (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_m_issuername_5();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::get_KeyAlgorithmParameters()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* X509Certificate_get_KeyAlgorithmParameters_mF1249C706BAE0B41EB13D6135BD586FBEEC5C0C2 (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Certificate_get_KeyAlgorithmParameters_mF1249C706BAE0B41EB13D6135BD586FBEEC5C0C2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get_m_keyalgoparams_7();
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get_m_keyalgoparams_7();
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
|
|
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
|
|
return ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Security.Cryptography.RSA Mono.Security.X509.X509Certificate::get_RSA()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * X509Certificate_get_RSA_m1AA2E60B7C340E9CB1841763A89E4FCFFB8903F2 (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Certificate_get_RSA_m1AA2E60B7C340E9CB1841763A89E4FCFFB8903F2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_1 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_2 = NULL;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
{
|
|
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * L_0 = __this->get__rsa_14();
|
|
if (L_0)
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = __this->get_m_keyalgo_6();
|
|
bool L_2 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_1, _stringLiteralFD916A733B7A811CD35B7057C8AF918C5FA637EB, /*hidden argument*/NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 ));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = __this->get_m_publickey_10();
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_4 = (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 *)il2cpp_codegen_object_new(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22_il2cpp_TypeInfo_var);
|
|
ASN1__ctor_m1D03549576234C96B7AE3D6CD9B43D92DB07414E(L_4, L_3, /*hidden argument*/NULL);
|
|
V_1 = L_4;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_5 = V_1;
|
|
NullCheck(L_5);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_6 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_5, 0, /*hidden argument*/NULL);
|
|
V_2 = L_6;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_8 = V_2;
|
|
NullCheck(L_8);
|
|
uint8_t L_9 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_8, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_9) == ((int32_t)2)))
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
return (RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 *)NULL;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_10 = V_1;
|
|
NullCheck(L_10);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_11 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_10, 1, /*hidden argument*/NULL);
|
|
V_3 = L_11;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_12 = V_3;
|
|
NullCheck(L_12);
|
|
uint8_t L_13 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_12, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_13) == ((int32_t)2)))
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
return (RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 *)NULL;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_14 = V_2;
|
|
NullCheck(L_14);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_14, /*hidden argument*/NULL);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = X509Certificate_GetUnsignedBigInteger_m50790BFFFE21F0ED229BADB82A9881673FB61EE6(__this, L_15, /*hidden argument*/NULL);
|
|
(&V_0)->set_Modulus_1(L_16);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_17 = V_3;
|
|
NullCheck(L_17);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_17, /*hidden argument*/NULL);
|
|
(&V_0)->set_Exponent_0(L_18);
|
|
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_19 = V_0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = L_19.get_Modulus_1();
|
|
NullCheck(L_20);
|
|
V_4 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))))<<(int32_t)3));
|
|
int32_t L_21 = V_4;
|
|
RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4 * L_22 = (RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4 *)il2cpp_codegen_object_new(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4_il2cpp_TypeInfo_var);
|
|
RSACryptoServiceProvider__ctor_mBE2DCC392E07EBD1E400EF9EF6C25E678236ACC2(L_22, L_21, /*hidden argument*/NULL);
|
|
__this->set__rsa_14(L_22);
|
|
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * L_23 = __this->get__rsa_14();
|
|
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_24 = V_0;
|
|
NullCheck(L_23);
|
|
VirtActionInvoker1< RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 >::Invoke(25 /* System.Void System.Security.Cryptography.RSA::ImportParameters(System.Security.Cryptography.RSAParameters) */, L_23, L_24);
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * L_25 = __this->get__rsa_14();
|
|
return L_25;
|
|
}
|
|
}
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::get_RawData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* X509Certificate_get_RawData_m52564DBCD26E2DD865635681199BAE8B2D91541F (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Certificate_get_RawData_m52564DBCD26E2DD865635681199BAE8B2D91541F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get_m_encodedcert_1();
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get_m_encodedcert_1();
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
|
|
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
|
|
return ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::get_SerialNumber()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* X509Certificate_get_SerialNumber_m10773B6CE1C111AA10DC86227A5F911273989329 (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Certificate_get_SerialNumber_m10773B6CE1C111AA10DC86227A5F911273989329_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get_serialnumber_17();
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get_serialnumber_17();
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
|
|
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
|
|
return ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.String Mono.Security.X509.X509Certificate::get_SubjectName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate_get_SubjectName_mFAA56068789E2ED39ACEDDB5A4DC58D1EF4BEF33 (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_m_subject_9();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.DateTime Mono.Security.X509.X509Certificate::get_ValidFrom()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 X509Certificate_get_ValidFrom_m64EC8A60E99052C3D30D5BEF928495E25F0E5F5F (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = __this->get_m_from_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.DateTime Mono.Security.X509.X509Certificate::get_ValidUntil()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 X509Certificate_get_ValidUntil_mFDF92822BFA8B58AE0E1F22D3C7659A2FEE18A4F (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = __this->get_m_until_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::GetIssuerName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * X509Certificate_GetIssuerName_mC83D0754963A3A509992B8562F7BEE692F21F746 (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_0 = __this->get_issuer_4();
|
|
return L_0;
|
|
}
|
|
}
|
|
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::GetSubjectName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * X509Certificate_GetSubjectName_m7C2F7862A7D02709C2DC62A29E5458FFB2E7E284 (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_0 = __this->get_subject_8();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.X509Certificate::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate_GetObjectData_m9F64BF2BCF7179890398D4CBCDAF7FD2D291B8A8 (X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Certificate_GetObjectData_m9F64BF2BCF7179890398D4CBCDAF7FD2D291B8A8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get_m_encodedcert_1();
|
|
NullCheck(L_0);
|
|
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_0, _stringLiteralCE15802A8C5E8E9DB0FFAF10130EF265296E9EA4, (RuntimeObject *)(RuntimeObject *)L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Byte[] Mono.Security.X509.X509Certificate::PEM(System.String,System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* X509Certificate_PEM_m7222F318BC4E9A4D263E49EC236D7F3626366B55 (String_t* ___type0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Certificate_PEM_m7222F318BC4E9A4D263E49EC236D7F3626366B55_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___data1;
|
|
NullCheck(L_0);
|
|
String_t* L_2 = VirtFuncInvoker1< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(34 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_0, L_1);
|
|
String_t* L_3 = ___type0;
|
|
String_t* L_4 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteralCDA87E8FAD2300F90D5D664EDD42E9364EDDB3D1, L_3, /*hidden argument*/NULL);
|
|
V_0 = L_4;
|
|
String_t* L_5 = ___type0;
|
|
String_t* L_6 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteral2DA88E03A81D77B573503F53B6D5FF0C6CFAD459, L_5, /*hidden argument*/NULL);
|
|
V_1 = L_6;
|
|
String_t* L_7 = L_2;
|
|
String_t* L_8 = V_0;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = String_IndexOf_mA9A0117D68338238E51E5928CDA8EB3DC9DA497B(L_7, L_8, /*hidden argument*/NULL);
|
|
String_t* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_10, /*hidden argument*/NULL);
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_11));
|
|
String_t* L_12 = L_7;
|
|
String_t* L_13 = V_1;
|
|
int32_t L_14 = V_2;
|
|
NullCheck(L_12);
|
|
int32_t L_15 = String_IndexOf_m9285F4AFCAD971E6AFB6F0212B415989CB3DACA5(L_12, L_13, L_14, /*hidden argument*/NULL);
|
|
V_3 = L_15;
|
|
int32_t L_16 = V_2;
|
|
int32_t L_17 = V_3;
|
|
int32_t L_18 = V_2;
|
|
NullCheck(L_12);
|
|
String_t* L_19 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_12, L_16, ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)), /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = Convert_FromBase64String_m079F788D000703E8018DA39BE9C05F1CBF60B156(L_19, /*hidden argument*/NULL);
|
|
return L_20;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.X509Certificate::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate__cctor_mBE2FD3CE1FBD329810E55F5B1E8ACBE909DA4B0C (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Certificate__cctor_mBE2FD3CE1FBD329810E55F5B1E8ACBE909DA4B0C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral4EDE3DBE3842E4E897B27DE36AB7E2BA1F056615, /*hidden argument*/NULL);
|
|
((X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var))->set_encoding_error_21(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void Mono.Security.X509.X509CertificateCollection::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CertificateCollection__ctor_mEF9D9BD6C5A780D8A8F89F4A70F20A77274BEE11 (X509CertificateCollection_t5BA116B445B1DB65CBCEAECF7EF3CFC1368E3ECA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CollectionBase__ctor_mE3F20EEAA96F8613088EDD69A17E49C22E97ADF9(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Mono.Security.X509.X509Certificate Mono.Security.X509.X509CertificateCollection::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * X509CertificateCollection_get_Item_m9D86EAB41F196198DE5A0B855200B33F97BEEC82 (X509CertificateCollection_t5BA116B445B1DB65CBCEAECF7EF3CFC1368E3ECA * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509CertificateCollection_get_Item_m9D86EAB41F196198DE5A0B855200B33F97BEEC82_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = CollectionBase_get_InnerList_m56EDE16DE8F8FA2AA6346730CC725E0B3BF0750A(__this, /*hidden argument*/NULL);
|
|
int32_t L_1 = ___index0;
|
|
NullCheck(L_0);
|
|
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
|
|
return ((X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA *)CastclassClass((RuntimeObject*)L_2, X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Int32 Mono.Security.X509.X509CertificateCollection::Add(Mono.Security.X509.X509Certificate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509CertificateCollection_Add_m92443BC84B1A9C07432AB5294089E0A041302341 (X509CertificateCollection_t5BA116B445B1DB65CBCEAECF7EF3CFC1368E3ECA * __this, X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509CertificateCollection_Add_m92443BC84B1A9C07432AB5294089E0A041302341_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, X509CertificateCollection_Add_m92443BC84B1A9C07432AB5294089E0A041302341_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = CollectionBase_get_InnerList_m56EDE16DE8F8FA2AA6346730CC725E0B3BF0750A(__this, /*hidden argument*/NULL);
|
|
X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * L_3 = ___value0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Mono.Security.X509.X509CertificateCollection_X509CertificateEnumerator Mono.Security.X509.X509CertificateCollection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F * X509CertificateCollection_GetEnumerator_mF727FC348ED5A98CBFD5DB476A490AE7E67D2B29 (X509CertificateCollection_t5BA116B445B1DB65CBCEAECF7EF3CFC1368E3ECA * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509CertificateCollection_GetEnumerator_mF727FC348ED5A98CBFD5DB476A490AE7E67D2B29_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F * L_0 = (X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F *)il2cpp_codegen_object_new(X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F_il2cpp_TypeInfo_var);
|
|
X509CertificateEnumerator__ctor_m907435AC45CD48DA1C82DB9C34480DC0BEAEF38F(L_0, __this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator Mono.Security.X509.X509CertificateCollection::System.Collections.IEnumerable.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509CertificateCollection_System_Collections_IEnumerable_GetEnumerator_m3C51D8ED5974C202B6E77713328333B1222B17E7 (X509CertificateCollection_t5BA116B445B1DB65CBCEAECF7EF3CFC1368E3ECA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = CollectionBase_get_InnerList_m56EDE16DE8F8FA2AA6346730CC725E0B3BF0750A(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int32 Mono.Security.X509.X509CertificateCollection::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509CertificateCollection_GetHashCode_mAB144C2D0900ED692DA5BF421D2596C86462EA8C (X509CertificateCollection_t5BA116B445B1DB65CBCEAECF7EF3CFC1368E3ECA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = CollectionBase_get_InnerList_m56EDE16DE8F8FA2AA6346730CC725E0B3BF0750A(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void Mono.Security.X509.X509CertificateCollection_X509CertificateEnumerator::.ctor(Mono.Security.X509.X509CertificateCollection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CertificateEnumerator__ctor_m907435AC45CD48DA1C82DB9C34480DC0BEAEF38F (X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F * __this, X509CertificateCollection_t5BA116B445B1DB65CBCEAECF7EF3CFC1368E3ECA * ___mappings0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509CertificateEnumerator__ctor_m907435AC45CD48DA1C82DB9C34480DC0BEAEF38F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
X509CertificateCollection_t5BA116B445B1DB65CBCEAECF7EF3CFC1368E3ECA * L_0 = ___mappings0;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_0);
|
|
__this->set_enumerator_0(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// Mono.Security.X509.X509Certificate Mono.Security.X509.X509CertificateCollection_X509CertificateEnumerator::get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA * X509CertificateEnumerator_get_Current_m0B73ED629E9F6E2EAC80B699C9F6B0DFFF566089 (X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509CertificateEnumerator_get_Current_m0B73ED629E9F6E2EAC80B699C9F6B0DFFF566089_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->get_enumerator_0();
|
|
NullCheck(L_0);
|
|
RuntimeObject * L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_0);
|
|
return ((X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA *)CastclassClass((RuntimeObject*)L_1, X509Certificate_t789CC31F38FD61BE3BA97A86173B7BA94F8871EA_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Object Mono.Security.X509.X509CertificateCollection_X509CertificateEnumerator::System.Collections.IEnumerator.get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m1E28B3521979906042C16BB51337ADD7CD43B945 (X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m1E28B3521979906042C16BB51337ADD7CD43B945_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->get_enumerator_0();
|
|
NullCheck(L_0);
|
|
RuntimeObject * L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean Mono.Security.X509.X509CertificateCollection_X509CertificateEnumerator::System.Collections.IEnumerator.MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m2F728922369DD616AA819677BB1730477872A0F5 (X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m2F728922369DD616AA819677BB1730477872A0F5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->get_enumerator_0();
|
|
NullCheck(L_0);
|
|
bool L_1 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.X509CertificateCollection_X509CertificateEnumerator::System.Collections.IEnumerator.Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m014A48D073D1DF62A4D8631ED07E8B3BC6EA8834 (X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m014A48D073D1DF62A4D8631ED07E8B3BC6EA8834_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->get_enumerator_0();
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker0::Invoke(2 /* System.Void System.Collections.IEnumerator::Reset() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean Mono.Security.X509.X509CertificateCollection_X509CertificateEnumerator::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509CertificateEnumerator_MoveNext_m5862EE69AF1A64DCF32885052BBD7429381BA7D2 (X509CertificateEnumerator_tA97ABD952DA2AEEF45D70B07B2267A0E5B29D92F * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509CertificateEnumerator_MoveNext_m5862EE69AF1A64DCF32885052BBD7429381BA7D2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->get_enumerator_0();
|
|
NullCheck(L_0);
|
|
bool L_1 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void Mono.Security.X509.X509Extension::.ctor(Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Extension__ctor_m16A891E45F0B21502442C2BCCE4C791CB0EC9C9B (X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * __this, ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___asn10, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Extension__ctor_m16A891E45F0B21502442C2BCCE4C791CB0EC9C9B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * V_0 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * G_B7_0 = NULL;
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * G_B6_0 = NULL;
|
|
int32_t G_B8_0 = 0;
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * G_B8_1 = NULL;
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_0 = ___asn10;
|
|
NullCheck(L_0);
|
|
uint8_t L_1 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_0, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)48)))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_2 = ___asn10;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_2, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_3) >= ((int32_t)2)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
String_t* L_4 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral69B85846222F763F537AAE189724E50D8A16971F, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, X509Extension__ctor_m16A891E45F0B21502442C2BCCE4C791CB0EC9C9B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_6 = ___asn10;
|
|
NullCheck(L_6);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_7 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_6, 0, /*hidden argument*/NULL);
|
|
NullCheck(L_7);
|
|
uint8_t L_8 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_7, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_8) == ((int32_t)6)))
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_9 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral69B85846222F763F537AAE189724E50D8A16971F, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, X509Extension__ctor_m16A891E45F0B21502442C2BCCE4C791CB0EC9C9B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_11 = ___asn10;
|
|
NullCheck(L_11);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_12 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_11, 0, /*hidden argument*/NULL);
|
|
String_t* L_13 = ASN1Convert_ToOid_m7C568C6223BAB8821F8EB9C26FB47F4121214914(L_12, /*hidden argument*/NULL);
|
|
__this->set_extnOid_0(L_13);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_14 = ___asn10;
|
|
NullCheck(L_14);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_15 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_14, 1, /*hidden argument*/NULL);
|
|
NullCheck(L_15);
|
|
uint8_t L_16 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_15, /*hidden argument*/NULL);
|
|
G_B6_0 = __this;
|
|
if ((!(((uint32_t)L_16) == ((uint32_t)1))))
|
|
{
|
|
G_B7_0 = __this;
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_17 = ___asn10;
|
|
NullCheck(L_17);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_18 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_17, 1, /*hidden argument*/NULL);
|
|
NullCheck(L_18);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_18, /*hidden argument*/NULL);
|
|
NullCheck(L_19);
|
|
int32_t L_20 = 0;
|
|
uint8_t L_21 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
|
|
G_B8_0 = ((((int32_t)L_21) == ((int32_t)((int32_t)255)))? 1 : 0);
|
|
G_B8_1 = G_B6_0;
|
|
goto IL_0082;
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
G_B8_0 = 0;
|
|
G_B8_1 = G_B7_0;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
NullCheck(G_B8_1);
|
|
G_B8_1->set_extnCritical_1((bool)G_B8_0);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_22 = ___asn10;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_23 = ___asn10;
|
|
NullCheck(L_23);
|
|
int32_t L_24 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_23, /*hidden argument*/NULL);
|
|
NullCheck(L_22);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_25 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_22, ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)), /*hidden argument*/NULL);
|
|
__this->set_extnValue_2(L_25);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_26 = __this->get_extnValue_2();
|
|
NullCheck(L_26);
|
|
uint8_t L_27 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_26, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_27) == ((uint32_t)4))))
|
|
{
|
|
goto IL_00f3;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_28 = __this->get_extnValue_2();
|
|
NullCheck(L_28);
|
|
int32_t L_29 = ASN1_get_Length_m26CEA287586CB72CF05106666242A4799B5D6564(L_28, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_29) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00f3;
|
|
}
|
|
}
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_30 = __this->get_extnValue_2();
|
|
NullCheck(L_30);
|
|
int32_t L_31 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_30, /*hidden argument*/NULL);
|
|
if (L_31)
|
|
{
|
|
goto IL_00f3;
|
|
}
|
|
}
|
|
|
|
IL_00c4:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_32 = __this->get_extnValue_2();
|
|
NullCheck(L_32);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_32, /*hidden argument*/NULL);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_34 = (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 *)il2cpp_codegen_object_new(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22_il2cpp_TypeInfo_var);
|
|
ASN1__ctor_m1D03549576234C96B7AE3D6CD9B43D92DB07414E(L_34, L_33, /*hidden argument*/NULL);
|
|
V_0 = L_34;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_35 = __this->get_extnValue_2();
|
|
NullCheck(L_35);
|
|
ASN1_set_Value_mC75118412779C8694A5F0553062B44BD268FF095(L_35, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_36 = __this->get_extnValue_2();
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_37 = V_0;
|
|
NullCheck(L_36);
|
|
ASN1_Add_m04C69FA22E1EA93FD28A7B8C6D4CD6F33FE7CDD7(L_36, L_37, /*hidden argument*/NULL);
|
|
goto IL_00f3;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_00f0;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00f0:
|
|
{ // begin catch(System.Object)
|
|
goto IL_00f3;
|
|
} // end catch (depth: 1)
|
|
|
|
IL_00f3:
|
|
{
|
|
VirtActionInvoker0::Invoke(4 /* System.Void Mono.Security.X509.X509Extension::Decode() */, __this);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.X509Extension::Decode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Extension_Decode_mA81C0ECA1AF1B046E6D42904A1EA2343F61F9EA9 (X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean Mono.Security.X509.X509Extension::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509Extension_Equals_mCE2F109880049F6E4AB58018FDC95BD1B13EE584 (X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Extension_Equals_mCE2F109880049F6E4AB58018FDC95BD1B13EE584_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B *)IsInstClass((RuntimeObject*)L_1, X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B_il2cpp_TypeInfo_var));
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
bool L_3 = __this->get_extnCritical_1();
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * L_4 = V_0;
|
|
NullCheck(L_4);
|
|
bool L_5 = L_4->get_extnCritical_1();
|
|
if ((((int32_t)L_3) == ((int32_t)L_5)))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
String_t* L_6 = __this->get_extnOid_0();
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * L_7 = V_0;
|
|
NullCheck(L_7);
|
|
String_t* L_8 = L_7->get_extnOid_0();
|
|
bool L_9 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_6, L_8, /*hidden argument*/NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_10 = __this->get_extnValue_2();
|
|
NullCheck(L_10);
|
|
int32_t L_11 = ASN1_get_Length_m26CEA287586CB72CF05106666242A4799B5D6564(L_10, /*hidden argument*/NULL);
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * L_12 = V_0;
|
|
NullCheck(L_12);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_13 = L_12->get_extnValue_2();
|
|
NullCheck(L_13);
|
|
int32_t L_14 = ASN1_get_Length_m26CEA287586CB72CF05106666242A4799B5D6564(L_13, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_11) == ((int32_t)L_14)))
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
V_1 = 0;
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_15 = __this->get_extnValue_2();
|
|
int32_t L_16 = V_1;
|
|
NullCheck(L_15);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_17 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_15, L_16, /*hidden argument*/NULL);
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * L_18 = V_0;
|
|
NullCheck(L_18);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_19 = L_18->get_extnValue_2();
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_21 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_19, L_20, /*hidden argument*/NULL);
|
|
if ((((RuntimeObject*)(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 *)L_17) == ((RuntimeObject*)(ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 *)L_21)))
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_24 = __this->get_extnValue_2();
|
|
NullCheck(L_24);
|
|
int32_t L_25 = ASN1_get_Length_m26CEA287586CB72CF05106666242A4799B5D6564(L_24, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_23) < ((int32_t)L_25)))
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Int32 Mono.Security.X509.X509Extension::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509Extension_GetHashCode_mECF1687D317F87C14B1AF30352E041255C064E38 (X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_extnOid_0();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.X509Extension::WriteLine(System.Text.StringBuilder,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Extension_WriteLine_mC6277CA21812934D276BD2167CF5305E725BA18C (X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * __this, StringBuilder_t * ___sb0, int32_t ___n1, int32_t ___pos2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Extension_WriteLine_mC6277CA21812934D276BD2167CF5305E725BA18C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
uint8_t V_4 = 0x0;
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_0 = __this->get_extnValue_2();
|
|
NullCheck(L_0);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ASN1_get_Value_m79BD55DC2251117641BA20292A90C8704EEB0AF2(L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = ___pos2;
|
|
V_1 = L_2;
|
|
V_2 = 0;
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_3 = V_2;
|
|
int32_t L_4 = ___n1;
|
|
if ((((int32_t)L_3) >= ((int32_t)L_4)))
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_5 = ___sb0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
int32_t L_8 = L_7;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
|
|
NullCheck(L_6);
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_9 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
String_t* L_10 = Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25((uint8_t*)((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8))), _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313, L_9, /*hidden argument*/NULL);
|
|
NullCheck(L_5);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_5, L_10, /*hidden argument*/NULL);
|
|
StringBuilder_t * L_11 = ___sb0;
|
|
NullCheck(L_11);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_11, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL);
|
|
goto IL_0051;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
StringBuilder_t * L_12 = ___sb0;
|
|
NullCheck(L_12);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_12, _stringLiteral088FB1A4AB057F4FCF7D487006499060C7FE5773, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
int32_t L_13 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
int32_t L_14 = V_2;
|
|
if ((((int32_t)L_14) < ((int32_t)8)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_15 = ___sb0;
|
|
NullCheck(L_15);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_15, _stringLiteral099600A10A944114AAC406D136B625FB416DD779, /*hidden argument*/NULL);
|
|
int32_t L_16 = ___pos2;
|
|
V_1 = L_16;
|
|
V_3 = 0;
|
|
goto IL_009a;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_0;
|
|
int32_t L_18 = V_1;
|
|
int32_t L_19 = L_18;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
|
|
NullCheck(L_17);
|
|
int32_t L_20 = L_19;
|
|
uint8_t L_21 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
|
|
V_4 = L_21;
|
|
uint8_t L_22 = V_4;
|
|
if ((((int32_t)L_22) >= ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_23 = ___sb0;
|
|
NullCheck(L_23);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_23, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, /*hidden argument*/NULL);
|
|
goto IL_0096;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
StringBuilder_t * L_24 = ___sb0;
|
|
uint8_t L_25 = V_4;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_26 = Convert_ToChar_m2FF337FDDCAD52939473E0D7ED3FBFD49A4C2E18(L_25, /*hidden argument*/NULL);
|
|
NullCheck(L_24);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_24, L_26, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_27 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
|
|
}
|
|
|
|
IL_009a:
|
|
{
|
|
int32_t L_28 = V_3;
|
|
int32_t L_29 = ___n1;
|
|
if ((((int32_t)L_28) < ((int32_t)L_29)))
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_30 = ___sb0;
|
|
String_t* L_31 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
|
|
NullCheck(L_30);
|
|
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_30, L_31, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.String Mono.Security.X509.X509Extension::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Extension_ToString_mC968AAD96357747636F4B7AE2903FFB5B32BA84A (X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509Extension_ToString_mC968AAD96357747636F4B7AE2903FFB5B32BA84A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
{
|
|
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_1 = __this->get_extnValue_2();
|
|
NullCheck(L_1);
|
|
int32_t L_2 = ASN1_get_Length_m26CEA287586CB72CF05106666242A4799B5D6564(L_1, /*hidden argument*/NULL);
|
|
V_1 = ((int32_t)((int32_t)L_2>>(int32_t)3));
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_3 = __this->get_extnValue_2();
|
|
NullCheck(L_3);
|
|
int32_t L_4 = ASN1_get_Length_m26CEA287586CB72CF05106666242A4799B5D6564(L_3, /*hidden argument*/NULL);
|
|
int32_t L_5 = V_1;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)((int32_t)L_5<<(int32_t)3))));
|
|
V_3 = 0;
|
|
V_4 = 0;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
StringBuilder_t * L_6 = V_0;
|
|
int32_t L_7 = V_3;
|
|
X509Extension_WriteLine_mC6277CA21812934D276BD2167CF5305E725BA18C(__this, L_6, 8, L_7, /*hidden argument*/NULL);
|
|
int32_t L_8 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)8));
|
|
int32_t L_9 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
int32_t L_10 = V_4;
|
|
int32_t L_11 = V_1;
|
|
if ((((int32_t)L_10) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_12 = V_0;
|
|
int32_t L_13 = V_2;
|
|
int32_t L_14 = V_3;
|
|
X509Extension_WriteLine_mC6277CA21812934D276BD2167CF5305E725BA18C(__this, L_12, L_13, L_14, /*hidden argument*/NULL);
|
|
StringBuilder_t * L_15 = V_0;
|
|
NullCheck(L_15);
|
|
String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
|
|
return L_16;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void Mono.Security.X509.X509ExtensionCollection::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ExtensionCollection__ctor_mB49E48E58401BD43ABCA052244630AE2E1C981BB (X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CollectionBase__ctor_mE3F20EEAA96F8613088EDD69A17E49C22E97ADF9(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Security.X509.X509ExtensionCollection::.ctor(Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ExtensionCollection__ctor_m0441BFBD0D73B5878D71B56DB9A2B67D73E39A09 (X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 * __this, ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * ___asn10, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (X509ExtensionCollection__ctor_m0441BFBD0D73B5878D71B56DB9A2B67D73E39A09_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * V_1 = NULL;
|
|
{
|
|
X509ExtensionCollection__ctor_mB49E48E58401BD43ABCA052244630AE2E1C981BB(__this, /*hidden argument*/NULL);
|
|
__this->set_readOnly_1((bool)1);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_0 = ___asn10;
|
|
if (L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_1 = ___asn10;
|
|
NullCheck(L_1);
|
|
uint8_t L_2 = ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline(L_1, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_2) == ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
Exception_t * L_3 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
|
|
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(L_3, _stringLiteral7B152A24BBC8DB09B568453879784A9FBD2A9FFC, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, X509ExtensionCollection__ctor_m0441BFBD0D73B5878D71B56DB9A2B67D73E39A09_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_4 = ___asn10;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_6 = ASN1_get_Item_mA5D422D053BA40C1EE8B498967C8A9DF3710ACB4(L_4, L_5, /*hidden argument*/NULL);
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * L_7 = (X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B *)il2cpp_codegen_object_new(X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B_il2cpp_TypeInfo_var);
|
|
X509Extension__ctor_m16A891E45F0B21502442C2BCCE4C791CB0EC9C9B(L_7, L_6, /*hidden argument*/NULL);
|
|
V_1 = L_7;
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_8 = CollectionBase_get_InnerList_m56EDE16DE8F8FA2AA6346730CC725E0B3BF0750A(__this, /*hidden argument*/NULL);
|
|
X509Extension_t4572384D5BE5E3AC344EA559448684FA7FCFA17B * L_9 = V_1;
|
|
NullCheck(L_8);
|
|
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_8, L_9);
|
|
int32_t L_10 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
int32_t L_11 = V_0;
|
|
ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * L_12 = ___asn10;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = ASN1_get_Count_m3916A9BC31F056411A79791AA074F8229552E117(L_12, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_11) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator Mono.Security.X509.X509ExtensionCollection::System.Collections.IEnumerable.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509ExtensionCollection_System_Collections_IEnumerable_GetEnumerator_m754A9A879FDC18994514DD1DC77E7F80F3F3EE12 (X509ExtensionCollection_t1549201ECC24D41DBF9212B6C80201D6EC5C7DA1 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = CollectionBase_get_InnerList_m56EDE16DE8F8FA2AA6346730CC725E0B3BF0750A(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void Mono.Xml.SecurityParser::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityParser__ctor_m46A21D62E80E1A94877CC4CFD2FFF313EF6E3E06 (SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SecurityParser__ctor_m46A21D62E80E1A94877CC4CFD2FFF313EF6E3E06_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SmallXmlParser__ctor_m9FD7D5896F766B4F9ED74478616F09462523ABF2(__this, /*hidden argument*/NULL);
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_0 = (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 *)il2cpp_codegen_object_new(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643_il2cpp_TypeInfo_var);
|
|
Stack__ctor_m98F99FFBF373762F139506711349267D5354FE08(L_0, /*hidden argument*/NULL);
|
|
__this->set_stack_14(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SecurityParser::LoadXml(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityParser_LoadXml_mC52937EF26E02DC2EEA05716D4CC4B5B6E2D124C (SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714 * __this, String_t* ___xml0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SecurityParser_LoadXml_mC52937EF26E02DC2EEA05716D4CC4B5B6E2D124C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->set_root_12((SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 *)NULL);
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_0 = __this->get_stack_14();
|
|
NullCheck(L_0);
|
|
VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Stack::Clear() */, L_0);
|
|
String_t* L_1 = ___xml0;
|
|
StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * L_2 = (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 *)il2cpp_codegen_object_new(StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12_il2cpp_TypeInfo_var);
|
|
StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17(L_2, L_1, /*hidden argument*/NULL);
|
|
SmallXmlParser_Parse_mBFFAA2DDD223DEE2A8E22E33C9CF986F06B84D5F(__this, L_2, __this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Security.SecurityElement Mono.Xml.SecurityParser::ToXml()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * SecurityParser_ToXml_m200668D8B0CA2E947D3F6EDEF2A41FCA886AE160 (SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * L_0 = __this->get_root_12();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SecurityParser::OnStartParsing(Mono.Xml.SmallXmlParser)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityParser_OnStartParsing_m03FDAA43B41A5EDB912B041D8A29AB28E54742B9 (SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714 * __this, SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * ___parser0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SecurityParser::OnProcessingInstruction(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityParser_OnProcessingInstruction_m9CD27F25D6F3F2AA6D63AB8DCCEA166C13EEAE5E (SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714 * __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SecurityParser::OnIgnorableWhitespace(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityParser_OnIgnorableWhitespace_m7E506D050C5506FBF460E405E1C9D6DAA41FC683 (SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714 * __this, String_t* ___s0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SecurityParser::OnStartElement(System.String,Mono.Xml.SmallXmlParser_IAttrList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityParser_OnStartElement_m043969D5E7935474E350EDFB77C55A6B26CDDCC6 (SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714 * __this, String_t* ___name0, RuntimeObject* ___attrs1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SecurityParser_OnStartElement_m043969D5E7935474E350EDFB77C55A6B26CDDCC6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
String_t* L_0 = ___name0;
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * L_1 = (SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 *)il2cpp_codegen_object_new(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_il2cpp_TypeInfo_var);
|
|
SecurityElement__ctor_m888B01153F0CC19DA06717EBB2E55240669304C6(L_1, L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * L_2 = __this->get_root_12();
|
|
if (L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * L_3 = V_0;
|
|
__this->set_root_12(L_3);
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * L_4 = V_0;
|
|
__this->set_current_13(L_4);
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_5 = __this->get_stack_14();
|
|
NullCheck(L_5);
|
|
RuntimeObject * L_6 = VirtFuncInvoker0< RuntimeObject * >::Invoke(17 /* System.Object System.Collections.Stack::Peek() */, L_5);
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * L_7 = V_0;
|
|
NullCheck(((SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 *)CastclassSealed((RuntimeObject*)L_6, SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_il2cpp_TypeInfo_var)));
|
|
SecurityElement_AddChild_m02EE2E9A11B4CD23CBE38A5A7F8D54783EF89AFB(((SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 *)CastclassSealed((RuntimeObject*)L_6, SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_il2cpp_TypeInfo_var)), L_7, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_8 = __this->get_stack_14();
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * L_9 = V_0;
|
|
NullCheck(L_8);
|
|
VirtActionInvoker1< RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Stack::Push(System.Object) */, L_8, L_9);
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * L_10 = V_0;
|
|
__this->set_current_13(L_10);
|
|
RuntimeObject* L_11 = ___attrs1;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 Mono.Xml.SmallXmlParser/IAttrList::get_Length() */, IAttrList_t0CE18247AA5E55E45C85E9CF5844810BE11C435E_il2cpp_TypeInfo_var, L_11);
|
|
V_1 = L_12;
|
|
V_2 = 0;
|
|
goto IL_0075;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * L_13 = __this->get_current_13();
|
|
RuntimeObject* L_14 = ___attrs1;
|
|
int32_t L_15 = V_2;
|
|
NullCheck(L_14);
|
|
String_t* L_16 = InterfaceFuncInvoker1< String_t*, int32_t >::Invoke(1 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetName(System.Int32) */, IAttrList_t0CE18247AA5E55E45C85E9CF5844810BE11C435E_il2cpp_TypeInfo_var, L_14, L_15);
|
|
RuntimeObject* L_17 = ___attrs1;
|
|
int32_t L_18 = V_2;
|
|
NullCheck(L_17);
|
|
String_t* L_19 = InterfaceFuncInvoker1< String_t*, int32_t >::Invoke(2 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.Int32) */, IAttrList_t0CE18247AA5E55E45C85E9CF5844810BE11C435E_il2cpp_TypeInfo_var, L_17, L_18);
|
|
IL2CPP_RUNTIME_CLASS_INIT(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_il2cpp_TypeInfo_var);
|
|
String_t* L_20 = SecurityElement_Escape_m0EB8C4C11D70CAC5588F8DB79811B1BD1092B6F7(L_19, /*hidden argument*/NULL);
|
|
NullCheck(L_13);
|
|
SecurityElement_AddAttribute_m169BDD8B4746C6074924239147E90537CF4C441B(L_13, L_16, L_20, /*hidden argument*/NULL);
|
|
int32_t L_21 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
int32_t L_22 = V_2;
|
|
int32_t L_23 = V_1;
|
|
if ((((int32_t)L_22) < ((int32_t)L_23)))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SecurityParser::OnEndElement(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityParser_OnEndElement_mD7258BCF8FB5C80042CBD036FC65A27628F87AE5 (SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714 * __this, String_t* ___name0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SecurityParser_OnEndElement_mD7258BCF8FB5C80042CBD036FC65A27628F87AE5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_0 = __this->get_stack_14();
|
|
NullCheck(L_0);
|
|
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Stack::Pop() */, L_0);
|
|
__this->set_current_13(((SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 *)CastclassSealed((RuntimeObject*)L_1, SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_il2cpp_TypeInfo_var)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SecurityParser::OnChars(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityParser_OnChars_m40E1236580D7790B03DF4B822CD94522CA6004E8 (SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714 * __this, String_t* ___ch0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SecurityParser_OnChars_m40E1236580D7790B03DF4B822CD94522CA6004E8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7 * L_0 = __this->get_current_13();
|
|
String_t* L_1 = ___ch0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(SecurityElement_t6C5746EF572788E5111C20BA18526087574CCDD7_il2cpp_TypeInfo_var);
|
|
String_t* L_2 = SecurityElement_Escape_m0EB8C4C11D70CAC5588F8DB79811B1BD1092B6F7(L_1, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
SecurityElement_set_Text_mD45FBD1B76BB6D3FF38CD493E43C3B4558A7A86E(L_0, L_2, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SecurityParser::OnEndParsing(Mono.Xml.SmallXmlParser)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityParser_OnEndParsing_mB0187295A5CA4AC1DC7D787FF407C61BDB3558AB (SecurityParser_tDD88805E4F1292A4379D568A1F3521396A351714 * __this, SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * ___parser0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void Mono.Xml.SmallXmlParser::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser__ctor_m9FD7D5896F766B4F9ED74478616F09462523ABF2 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser__ctor_m9FD7D5896F766B4F9ED74478616F09462523ABF2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_0 = (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 *)il2cpp_codegen_object_new(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643_il2cpp_TypeInfo_var);
|
|
Stack__ctor_m98F99FFBF373762F139506711349267D5354FE08(L_0, /*hidden argument*/NULL);
|
|
__this->set_elementNames_2(L_0);
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_1 = (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 *)il2cpp_codegen_object_new(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643_il2cpp_TypeInfo_var);
|
|
Stack__ctor_m98F99FFBF373762F139506711349267D5354FE08(L_1, /*hidden argument*/NULL);
|
|
__this->set_xmlSpaces_3(L_1);
|
|
StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_2, ((int32_t)200), /*hidden argument*/NULL);
|
|
__this->set_buffer_5(L_2);
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)30));
|
|
__this->set_nameBuffer_6(L_3);
|
|
AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * L_4 = (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 *)il2cpp_codegen_object_new(AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63_il2cpp_TypeInfo_var);
|
|
AttrListImpl__ctor_m5B7885CD6830138F25DC2D46F14B1A18DD1564BA(L_4, /*hidden argument*/NULL);
|
|
__this->set_attributes_8(L_4);
|
|
__this->set_line_9(1);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Exception Mono.Xml.SmallXmlParser::Error(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, String_t* ___msg0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___msg0;
|
|
int32_t L_1 = __this->get_line_9();
|
|
int32_t L_2 = __this->get_column_10();
|
|
SmallXmlParserException_t96963A305B0E2C72C5EDC72952F1D079DE102140 * L_3 = (SmallXmlParserException_t96963A305B0E2C72C5EDC72952F1D079DE102140 *)il2cpp_codegen_object_new(SmallXmlParserException_t96963A305B0E2C72C5EDC72952F1D079DE102140_il2cpp_TypeInfo_var);
|
|
SmallXmlParserException__ctor_m6AB9D00DB18C0DD5D3A9B19B50BE555685206A22(L_3, L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Exception Mono.Xml.SmallXmlParser::UnexpectedEndError()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * SmallXmlParser_UnexpectedEndError_mEA2509A8E147FC380F9726D2A98E1B0A44553329 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_UnexpectedEndError_mEA2509A8E147FC380F9726D2A98E1B0A44553329_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_0 = NULL;
|
|
{
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_0 = __this->get_elementNames_2();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_0);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)L_1);
|
|
V_0 = L_2;
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_3 = __this->get_elementNames_2();
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = V_0;
|
|
NullCheck(L_3);
|
|
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(15 /* System.Void System.Collections.Stack::CopyTo(System.Array,System.Int32) */, L_3, (RuntimeArray *)(RuntimeArray *)L_4, 0);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = V_0;
|
|
String_t* L_6 = String_Join_m49371BED70248F0FCE970CB4F2E39E9A688AAFA4(_stringLiteral5C10B5B2CD673A0616D529AA5234B12EE7153808, L_5, /*hidden argument*/NULL);
|
|
String_t* L_7 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteralADAE9EA1AFF2F3E79B954D2B2C814C316FF5C9E8, L_6, /*hidden argument*/NULL);
|
|
Exception_t * L_8 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, L_7, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Boolean Mono.Xml.SmallXmlParser::IsNameChar(System.Char,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SmallXmlParser_IsNameChar_m778080869517BCC9BA829CA2A3D56690825FBD7A (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, Il2CppChar ___c0, bool ___start1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_IsNameChar_m778080869517BCC9BA829CA2A3D56690825FBD7A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
if ((!(((uint32_t)L_0) <= ((uint32_t)((int32_t)46)))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___c0;
|
|
if ((((int32_t)L_1) == ((int32_t)((int32_t)45))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
if ((((int32_t)L_2) == ((int32_t)((int32_t)46))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
Il2CppChar L_3 = ___c0;
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)58))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = ___c0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)95)))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
bool L_5 = ___start1;
|
|
return (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
Il2CppChar L_6 = ___c0;
|
|
if ((((int32_t)L_6) <= ((int32_t)((int32_t)256))))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = ___c0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)1369))))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_8 = ___c0;
|
|
if ((((int32_t)L_8) == ((int32_t)((int32_t)1765))))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = ___c0;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)1766)))))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Il2CppChar L_10 = ___c0;
|
|
if ((((int32_t)((int32_t)699)) > ((int32_t)L_10)))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_11 = ___c0;
|
|
if ((((int32_t)L_11) > ((int32_t)((int32_t)705))))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
Il2CppChar L_12 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_13 = Char_GetUnicodeCategory_m07C2D4BEA7C630EF8D87B2244689C5C315EC4914(L_12, /*hidden argument*/NULL);
|
|
V_0 = L_13;
|
|
int32_t L_14 = V_0;
|
|
switch (L_14)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
bool L_15 = ___start1;
|
|
return (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean Mono.Xml.SmallXmlParser::IsWhitespace(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SmallXmlParser_IsWhitespace_m0CA6B1172C3960658B54E9B12445B027C9B9DEDA (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, int32_t ___c0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___c0;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)9)))) > ((uint32_t)1))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___c0;
|
|
if ((((int32_t)L_1) == ((int32_t)((int32_t)13))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___c0;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)32)))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_SkipWhitespaces_mA51F0B32758624356F610B726242A1FAB1D417BF (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SmallXmlParser_SkipWhitespaces_mA351F024FC4B043329B3B6581791093015958725(__this, (bool)0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::HandleWhitespaces()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_HandleWhitespaces_m926190958F967748FC0D7FF027DC59B498FA0717 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0002:
|
|
{
|
|
StringBuilder_t * L_0 = __this->get_buffer_5();
|
|
int32_t L_1 = SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_0, (((int32_t)((uint16_t)L_1))), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_2 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
bool L_3 = SmallXmlParser_IsWhitespace_m0CA6B1172C3960658B54E9B12445B027C9B9DEDA(__this, L_2, /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0002;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)60))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_5) < ((int32_t)0)))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
__this->set_isWhitespace_7((bool)0);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_SkipWhitespaces_mA351F024FC4B043329B3B6581791093015958725 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, bool ___expected0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_SkipWhitespaces_mA351F024FC4B043329B3B6581791093015958725_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
|
|
IL_0000:
|
|
{
|
|
int32_t L_0 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)9)))) > ((uint32_t)1))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) == ((int32_t)((int32_t)13))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)32)))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
bool L_4 = ___expected0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0000;
|
|
}
|
|
}
|
|
{
|
|
___expected0 = (bool)0;
|
|
goto IL_0000;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
bool L_5 = ___expected0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
Exception_t * L_6 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, _stringLiteralB177DC4D2B45989003EE5219FFD457FF098B1A59, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, SmallXmlParser_SkipWhitespaces_mA351F024FC4B043329B3B6581791093015958725_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 Mono.Xml.SmallXmlParser::Peek()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get_reader_1();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Peek() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int32 Mono.Xml.SmallXmlParser::Read()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t G_B2_0 = 0;
|
|
int32_t G_B1_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get_reader_1();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.IO.TextReader::Read() */, L_0);
|
|
int32_t L_2 = L_1;
|
|
G_B1_0 = L_2;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)10)))))
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
__this->set_resetColumn_11((bool)1);
|
|
G_B2_0 = G_B1_0;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
bool L_3 = __this->get_resetColumn_11();
|
|
G_B3_0 = G_B2_0;
|
|
if (!L_3)
|
|
{
|
|
G_B4_0 = G_B2_0;
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = __this->get_line_9();
|
|
__this->set_line_9(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
|
|
__this->set_resetColumn_11((bool)0);
|
|
__this->set_column_10(1);
|
|
return G_B3_0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
int32_t L_5 = __this->get_column_10();
|
|
__this->set_column_10(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
|
|
return G_B4_0;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::Expect(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, int32_t ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if ((((int32_t)L_1) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
Exception_t * L_2 = SmallXmlParser_UnexpectedEndError_mEA2509A8E147FC380F9726D2A98E1B0A44553329(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = ___c0;
|
|
if ((((int32_t)L_3) == ((int32_t)L_4)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___c0;
|
|
Il2CppChar L_6 = ((Il2CppChar)(((int32_t)((uint16_t)L_5))));
|
|
RuntimeObject * L_7 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_6);
|
|
int32_t L_8 = V_0;
|
|
Il2CppChar L_9 = ((Il2CppChar)(((int32_t)((uint16_t)L_8))));
|
|
RuntimeObject * L_10 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_9);
|
|
String_t* L_11 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteralE02882ED793EF70B580A07DB2EE2F6768DACBB59, L_7, L_10, /*hidden argument*/NULL);
|
|
Exception_t * L_12 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, L_11, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.String Mono.Xml.SmallXmlParser::ReadUntil(System.Char,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SmallXmlParser_ReadUntil_m279D06CB9963FEEF22356F085F2745A70DD78F23 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, Il2CppChar ___until0, bool ___handleReferences1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_ReadUntil_m279D06CB9963FEEF22356F085F2745A70DD78F23_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
|
|
IL_0000:
|
|
{
|
|
int32_t L_0 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
Exception_t * L_1 = SmallXmlParser_UnexpectedEndError_mEA2509A8E147FC380F9726D2A98E1B0A44553329(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, SmallXmlParser_ReadUntil_m279D06CB9963FEEF22356F085F2745A70DD78F23_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
int32_t L_2 = SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
V_0 = (((int32_t)((uint16_t)L_2)));
|
|
Il2CppChar L_3 = V_0;
|
|
Il2CppChar L_4 = ___until0;
|
|
if ((((int32_t)L_3) == ((int32_t)L_4)))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
bool L_5 = ___handleReferences1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = V_0;
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)38)))))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
SmallXmlParser_ReadReference_m630C8CDBEE46892DB8A490D7101E587AC788C3DB(__this, /*hidden argument*/NULL);
|
|
goto IL_0000;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
StringBuilder_t * L_7 = __this->get_buffer_5();
|
|
Il2CppChar L_8 = V_0;
|
|
NullCheck(L_7);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_7, L_8, /*hidden argument*/NULL);
|
|
goto IL_0000;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
StringBuilder_t * L_9 = __this->get_buffer_5();
|
|
NullCheck(L_9);
|
|
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_9);
|
|
StringBuilder_t * L_11 = __this->get_buffer_5();
|
|
NullCheck(L_11);
|
|
StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B(L_11, 0, /*hidden argument*/NULL);
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.String Mono.Xml.SmallXmlParser::ReadName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_3 = NULL;
|
|
{
|
|
V_0 = 0;
|
|
int32_t L_0 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
bool L_2 = SmallXmlParser_IsNameChar_m778080869517BCC9BA829CA2A3D56690825FBD7A(__this, (((int32_t)((uint16_t)L_1))), (bool)1, /*hidden argument*/NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
Exception_t * L_3 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, _stringLiteralE10BCDCA7388797D857EE3BBFF6B157B71FBAE8B, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
int32_t L_4 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
V_1 = L_4;
|
|
goto IL_0080;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t L_5 = V_1;
|
|
V_2 = (((int32_t)((uint16_t)L_5)));
|
|
Il2CppChar L_6 = V_2;
|
|
bool L_7 = SmallXmlParser_IsNameChar_m778080869517BCC9BA829CA2A3D56690825FBD7A(__this, L_6, (bool)0, /*hidden argument*/NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_0;
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = __this->get_nameBuffer_6();
|
|
NullCheck(L_9);
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length))))))))
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = V_0;
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)2)));
|
|
V_3 = L_11;
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_12 = __this->get_nameBuffer_6();
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = V_3;
|
|
int32_t L_14 = V_0;
|
|
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_12, (RuntimeArray *)(RuntimeArray *)L_13, L_14, /*hidden argument*/NULL);
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_15 = V_3;
|
|
__this->set_nameBuffer_6(L_15);
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = __this->get_nameBuffer_6();
|
|
int32_t L_17 = V_0;
|
|
int32_t L_18 = L_17;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
|
|
Il2CppChar L_19 = V_2;
|
|
NullCheck(L_16);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (Il2CppChar)L_19);
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
int32_t L_20 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
V_1 = L_20;
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
int32_t L_21 = V_1;
|
|
if ((((int32_t)L_21) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
int32_t L_22 = V_0;
|
|
if (L_22)
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
Exception_t * L_23 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, _stringLiteral9BE00FBFD10F293F9AA2C07F65A715EDF3951951, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_24 = __this->get_nameBuffer_6();
|
|
int32_t L_25 = V_0;
|
|
String_t* L_26 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_24, 0, L_25, /*hidden argument*/NULL);
|
|
return L_26;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::Parse(System.IO.TextReader,Mono.Xml.SmallXmlParser_IContentHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Parse_mBFFAA2DDD223DEE2A8E22E33C9CF986F06B84D5F (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___input0, RuntimeObject* ___handler1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_Parse_mBFFAA2DDD223DEE2A8E22E33C9CF986F06B84D5F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = ___input0;
|
|
__this->set_reader_1(L_0);
|
|
RuntimeObject* L_1 = ___handler1;
|
|
__this->set_handler_0(L_1);
|
|
RuntimeObject* L_2 = ___handler1;
|
|
NullCheck(L_2);
|
|
InterfaceActionInvoker1< SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * >::Invoke(0 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnStartParsing(Mono.Xml.SmallXmlParser) */, IContentHandler_tD4FEA788515878D2DFEA5CBE7F6A008DD7629B8E_il2cpp_TypeInfo_var, L_2, __this);
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
SmallXmlParser_ReadContent_m9B531EF2F84F1292710BF1B5EC798EFE2982905D(__this, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_3) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
SmallXmlParser_HandleBufferedContent_m92389C6DA5658F8C205E7FC508D0E49055312BCE(__this, /*hidden argument*/NULL);
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_4 = __this->get_elementNames_2();
|
|
NullCheck(L_4);
|
|
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_4);
|
|
if ((((int32_t)L_5) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_6 = __this->get_elementNames_2();
|
|
NullCheck(L_6);
|
|
RuntimeObject * L_7 = VirtFuncInvoker0< RuntimeObject * >::Invoke(17 /* System.Object System.Collections.Stack::Peek() */, L_6);
|
|
String_t* L_8 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteral1BCBC0A0DE77A0151ED322627AE69CD4E58671D4, L_7, /*hidden argument*/NULL);
|
|
Exception_t * L_9 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, L_8, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, SmallXmlParser_Parse_mBFFAA2DDD223DEE2A8E22E33C9CF986F06B84D5F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
RuntimeObject* L_10 = ___handler1;
|
|
NullCheck(L_10);
|
|
InterfaceActionInvoker1< SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * >::Invoke(1 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndParsing(Mono.Xml.SmallXmlParser) */, IContentHandler_tD4FEA788515878D2DFEA5CBE7F6A008DD7629B8E_il2cpp_TypeInfo_var, L_10, __this);
|
|
SmallXmlParser_Cleanup_mAFE98527E4C2AC8C3F9BB75C74FEF2207EE5ADAC(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::Cleanup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Cleanup_mAFE98527E4C2AC8C3F9BB75C74FEF2207EE5ADAC (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->set_line_9(1);
|
|
__this->set_column_10(0);
|
|
__this->set_handler_0((RuntimeObject*)NULL);
|
|
__this->set_reader_1((TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A *)NULL);
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_0 = __this->get_elementNames_2();
|
|
NullCheck(L_0);
|
|
VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Stack::Clear() */, L_0);
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_1 = __this->get_xmlSpaces_3();
|
|
NullCheck(L_1);
|
|
VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Stack::Clear() */, L_1);
|
|
AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * L_2 = __this->get_attributes_8();
|
|
NullCheck(L_2);
|
|
AttrListImpl_Clear_m9C1CF67FAC2C726DC0CF7E4663751C7D89D922A0(L_2, /*hidden argument*/NULL);
|
|
StringBuilder_t * L_3 = __this->get_buffer_5();
|
|
NullCheck(L_3);
|
|
StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B(L_3, 0, /*hidden argument*/NULL);
|
|
__this->set_xmlSpace_4((String_t*)NULL);
|
|
__this->set_isWhitespace_7((bool)0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadContent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadContent_m9B531EF2F84F1292710BF1B5EC798EFE2982905D (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_ReadContent_m9B531EF2F84F1292710BF1B5EC798EFE2982905D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
String_t* V_2 = NULL;
|
|
String_t* V_3 = NULL;
|
|
{
|
|
int32_t L_0 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
bool L_1 = SmallXmlParser_IsWhitespace_m0CA6B1172C3960658B54E9B12445B027C9B9DEDA(__this, L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_2 = __this->get_buffer_5();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
__this->set_isWhitespace_7((bool)1);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
SmallXmlParser_HandleWhitespaces_m926190958F967748FC0D7FF027DC59B498FA0717(__this, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_4 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)60)))))
|
|
{
|
|
goto IL_0285;
|
|
}
|
|
}
|
|
{
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
int32_t L_5 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)33))))
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_1;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)47))))
|
|
{
|
|
goto IL_0145;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_1;
|
|
if ((((int32_t)L_8) == ((int32_t)((int32_t)63))))
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
int32_t L_9 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)91)))))
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
String_t* L_10 = SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35(__this, /*hidden argument*/NULL);
|
|
bool L_11 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_10, _stringLiteral494BFF78142278BF15C7806A089D7C002766F8BD, /*hidden argument*/NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
Exception_t * L_12 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, _stringLiteral7BFDD5F0A2F25B380D4F5589749852BB8DCFA8F7, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, SmallXmlParser_ReadContent_m9B531EF2F84F1292710BF1B5EC798EFE2982905D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4(__this, ((int32_t)91), /*hidden argument*/NULL);
|
|
SmallXmlParser_ReadCDATASection_mC256BDCC2986CE516F699828792B9E67B3282B61(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
int32_t L_13 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
SmallXmlParser_ReadComment_m9C33081E484F35D15575E4813430356332A1DCC5(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
String_t* L_14 = SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35(__this, /*hidden argument*/NULL);
|
|
bool L_15 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_14, _stringLiteralA885F336E380EA1BD8337D686E8FE237C26ADF04, /*hidden argument*/NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_00d1;
|
|
}
|
|
}
|
|
{
|
|
Exception_t * L_16 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, _stringLiteralF73752A258538C53B0A587C0B9960B4200E6B2C0, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, SmallXmlParser_ReadContent_m9B531EF2F84F1292710BF1B5EC798EFE2982905D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00d1:
|
|
{
|
|
Exception_t * L_17 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, _stringLiteralF641C9F6B1300840CE67CFB8D3768EC2CB1B37E9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, SmallXmlParser_ReadContent_m9B531EF2F84F1292710BF1B5EC798EFE2982905D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
SmallXmlParser_HandleBufferedContent_m92389C6DA5658F8C205E7FC508D0E49055312BCE(__this, /*hidden argument*/NULL);
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
String_t* L_18 = SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35(__this, /*hidden argument*/NULL);
|
|
V_0 = L_18;
|
|
SmallXmlParser_SkipWhitespaces_mA51F0B32758624356F610B726242A1FAB1D417BF(__this, /*hidden argument*/NULL);
|
|
String_t* L_19 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
V_2 = L_19;
|
|
int32_t L_20 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_20) == ((int32_t)((int32_t)63))))
|
|
{
|
|
goto IL_012f;
|
|
}
|
|
}
|
|
|
|
IL_0107:
|
|
{
|
|
String_t* L_21 = V_2;
|
|
String_t* L_22 = SmallXmlParser_ReadUntil_m279D06CB9963FEEF22356F085F2745A70DD78F23(__this, ((int32_t)63), (bool)0, /*hidden argument*/NULL);
|
|
String_t* L_23 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_21, L_22, /*hidden argument*/NULL);
|
|
V_2 = L_23;
|
|
int32_t L_24 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_24) == ((int32_t)((int32_t)62))))
|
|
{
|
|
goto IL_012f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_25 = V_2;
|
|
String_t* L_26 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_25, _stringLiteral5BAB61EB53176449E25C2C82F172B82CB13FFB9D, /*hidden argument*/NULL);
|
|
V_2 = L_26;
|
|
goto IL_0107;
|
|
}
|
|
|
|
IL_012f:
|
|
{
|
|
RuntimeObject* L_27 = __this->get_handler_0();
|
|
String_t* L_28 = V_0;
|
|
String_t* L_29 = V_2;
|
|
NullCheck(L_27);
|
|
InterfaceActionInvoker2< String_t*, String_t* >::Invoke(4 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnProcessingInstruction(System.String,System.String) */, IContentHandler_tD4FEA788515878D2DFEA5CBE7F6A008DD7629B8E_il2cpp_TypeInfo_var, L_27, L_28, L_29);
|
|
SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4(__this, ((int32_t)62), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0145:
|
|
{
|
|
SmallXmlParser_HandleBufferedContent_m92389C6DA5658F8C205E7FC508D0E49055312BCE(__this, /*hidden argument*/NULL);
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_30 = __this->get_elementNames_2();
|
|
NullCheck(L_30);
|
|
int32_t L_31 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_30);
|
|
if (L_31)
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
}
|
|
{
|
|
Exception_t * L_32 = SmallXmlParser_UnexpectedEndError_mEA2509A8E147FC380F9726D2A98E1B0A44553329(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, SmallXmlParser_ReadContent_m9B531EF2F84F1292710BF1B5EC798EFE2982905D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
String_t* L_33 = SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35(__this, /*hidden argument*/NULL);
|
|
V_0 = L_33;
|
|
SmallXmlParser_SkipWhitespaces_mA51F0B32758624356F610B726242A1FAB1D417BF(__this, /*hidden argument*/NULL);
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_34 = __this->get_elementNames_2();
|
|
NullCheck(L_34);
|
|
RuntimeObject * L_35 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Stack::Pop() */, L_34);
|
|
V_3 = ((String_t*)CastclassSealed((RuntimeObject*)L_35, String_t_il2cpp_TypeInfo_var));
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_36 = __this->get_xmlSpaces_3();
|
|
NullCheck(L_36);
|
|
VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Stack::Pop() */, L_36);
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_37 = __this->get_xmlSpaces_3();
|
|
NullCheck(L_37);
|
|
int32_t L_38 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_37);
|
|
if ((((int32_t)L_38) <= ((int32_t)0)))
|
|
{
|
|
goto IL_01b6;
|
|
}
|
|
}
|
|
{
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_39 = __this->get_xmlSpaces_3();
|
|
NullCheck(L_39);
|
|
RuntimeObject * L_40 = VirtFuncInvoker0< RuntimeObject * >::Invoke(17 /* System.Object System.Collections.Stack::Peek() */, L_39);
|
|
__this->set_xmlSpace_4(((String_t*)CastclassSealed((RuntimeObject*)L_40, String_t_il2cpp_TypeInfo_var)));
|
|
goto IL_01bd;
|
|
}
|
|
|
|
IL_01b6:
|
|
{
|
|
__this->set_xmlSpace_4((String_t*)NULL);
|
|
}
|
|
|
|
IL_01bd:
|
|
{
|
|
String_t* L_41 = V_0;
|
|
String_t* L_42 = V_3;
|
|
bool L_43 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_41, L_42, /*hidden argument*/NULL);
|
|
if (!L_43)
|
|
{
|
|
goto IL_01d9;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_44 = V_3;
|
|
String_t* L_45 = V_0;
|
|
String_t* L_46 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteral8E7EADD6FA794AF74598EA20E410C436AD81EC8C, L_44, L_45, /*hidden argument*/NULL);
|
|
Exception_t * L_47 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, L_46, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, SmallXmlParser_ReadContent_m9B531EF2F84F1292710BF1B5EC798EFE2982905D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_01d9:
|
|
{
|
|
RuntimeObject* L_48 = __this->get_handler_0();
|
|
String_t* L_49 = V_0;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< String_t* >::Invoke(3 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndElement(System.String) */, IContentHandler_tD4FEA788515878D2DFEA5CBE7F6A008DD7629B8E_il2cpp_TypeInfo_var, L_48, L_49);
|
|
SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4(__this, ((int32_t)62), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_01ee:
|
|
{
|
|
SmallXmlParser_HandleBufferedContent_m92389C6DA5658F8C205E7FC508D0E49055312BCE(__this, /*hidden argument*/NULL);
|
|
String_t* L_50 = SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35(__this, /*hidden argument*/NULL);
|
|
V_0 = L_50;
|
|
goto IL_0209;
|
|
}
|
|
|
|
IL_01fd:
|
|
{
|
|
AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * L_51 = __this->get_attributes_8();
|
|
SmallXmlParser_ReadAttribute_mFE6E3CA7C9EE7432F9D31358EB164463E0EAAD99(__this, L_51, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0209:
|
|
{
|
|
int32_t L_52 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_52) == ((int32_t)((int32_t)62))))
|
|
{
|
|
goto IL_021d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_53 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_53) == ((uint32_t)((int32_t)47)))))
|
|
{
|
|
goto IL_01fd;
|
|
}
|
|
}
|
|
|
|
IL_021d:
|
|
{
|
|
RuntimeObject* L_54 = __this->get_handler_0();
|
|
String_t* L_55 = V_0;
|
|
AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * L_56 = __this->get_attributes_8();
|
|
NullCheck(L_54);
|
|
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(2 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnStartElement(System.String,Mono.Xml.SmallXmlParser/IAttrList) */, IContentHandler_tD4FEA788515878D2DFEA5CBE7F6A008DD7629B8E_il2cpp_TypeInfo_var, L_54, L_55, L_56);
|
|
AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * L_57 = __this->get_attributes_8();
|
|
NullCheck(L_57);
|
|
AttrListImpl_Clear_m9C1CF67FAC2C726DC0CF7E4663751C7D89D922A0(L_57, /*hidden argument*/NULL);
|
|
SmallXmlParser_SkipWhitespaces_mA51F0B32758624356F610B726242A1FAB1D417BF(__this, /*hidden argument*/NULL);
|
|
int32_t L_58 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)47)))))
|
|
{
|
|
goto IL_025f;
|
|
}
|
|
}
|
|
{
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
RuntimeObject* L_59 = __this->get_handler_0();
|
|
String_t* L_60 = V_0;
|
|
NullCheck(L_59);
|
|
InterfaceActionInvoker1< String_t* >::Invoke(3 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndElement(System.String) */, IContentHandler_tD4FEA788515878D2DFEA5CBE7F6A008DD7629B8E_il2cpp_TypeInfo_var, L_59, L_60);
|
|
goto IL_027c;
|
|
}
|
|
|
|
IL_025f:
|
|
{
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_61 = __this->get_elementNames_2();
|
|
String_t* L_62 = V_0;
|
|
NullCheck(L_61);
|
|
VirtActionInvoker1< RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Stack::Push(System.Object) */, L_61, L_62);
|
|
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_63 = __this->get_xmlSpaces_3();
|
|
String_t* L_64 = __this->get_xmlSpace_4();
|
|
NullCheck(L_63);
|
|
VirtActionInvoker1< RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Stack::Push(System.Object) */, L_63, L_64);
|
|
}
|
|
|
|
IL_027c:
|
|
{
|
|
SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4(__this, ((int32_t)62), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0285:
|
|
{
|
|
SmallXmlParser_ReadCharacters_m83D7A2FE91C9ACCDF136000D746D34942CBC60E4(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::HandleBufferedContent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_HandleBufferedContent_m92389C6DA5658F8C205E7FC508D0E49055312BCE (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_HandleBufferedContent_m92389C6DA5658F8C205E7FC508D0E49055312BCE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
StringBuilder_t * L_0 = __this->get_buffer_5();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_0, /*hidden argument*/NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
bool L_2 = __this->get_isWhitespace_7();
|
|
if (!L_2)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = __this->get_handler_0();
|
|
StringBuilder_t * L_4 = __this->get_buffer_5();
|
|
NullCheck(L_4);
|
|
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_4);
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker1< String_t* >::Invoke(6 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnIgnorableWhitespace(System.String) */, IContentHandler_tD4FEA788515878D2DFEA5CBE7F6A008DD7629B8E_il2cpp_TypeInfo_var, L_3, L_5);
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
RuntimeObject* L_6 = __this->get_handler_0();
|
|
StringBuilder_t * L_7 = __this->get_buffer_5();
|
|
NullCheck(L_7);
|
|
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_7);
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker1< String_t* >::Invoke(5 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnChars(System.String) */, IContentHandler_tD4FEA788515878D2DFEA5CBE7F6A008DD7629B8E_il2cpp_TypeInfo_var, L_6, L_8);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
StringBuilder_t * L_9 = __this->get_buffer_5();
|
|
NullCheck(L_9);
|
|
StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B(L_9, 0, /*hidden argument*/NULL);
|
|
__this->set_isWhitespace_7((bool)0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadCharacters()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadCharacters_m83D7A2FE91C9ACCDF136000D746D34942CBC60E4 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
__this->set_isWhitespace_7((bool)0);
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
int32_t L_0 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if ((((int32_t)L_1) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) == ((int32_t)((int32_t)38))))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)60))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
SmallXmlParser_ReadReference_m630C8CDBEE46892DB8A490D7101E587AC788C3DB(__this, /*hidden argument*/NULL);
|
|
goto IL_0007;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
StringBuilder_t * L_4 = __this->get_buffer_5();
|
|
int32_t L_5 = SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_4);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_4, (((int32_t)((uint16_t)L_5))), /*hidden argument*/NULL);
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadReference()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadReference_m630C8CDBEE46892DB8A490D7101E587AC788C3DB (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_ReadReference_m630C8CDBEE46892DB8A490D7101E587AC788C3DB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)35)))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
SmallXmlParser_ReadCharacterReference_mB7083689048E75E9205DEC8454434EDAD57CAE5E(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
String_t* L_1 = SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35(__this, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4(__this, ((int32_t)59), /*hidden argument*/NULL);
|
|
String_t* L_2 = V_0;
|
|
bool L_3 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, _stringLiteral65F59EC6B1ECD6170D5044474043CCA9560A8071, /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = V_0;
|
|
bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, _stringLiteral11FF44718A597D1A371E7DA9C818486F238E49E2, /*hidden argument*/NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = V_0;
|
|
bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_6, _stringLiteral616998B237EE9C3DBBF79DB6CA02275975880AE0, /*hidden argument*/NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_0089;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_8 = V_0;
|
|
bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, _stringLiteral5F3ACFBEB4F6FA5007DD1137AB1E96149AF87281, /*hidden argument*/NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_0098;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_10 = V_0;
|
|
bool L_11 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_10, _stringLiteral7DDF988C838812A4318332F2967BBE1035B2DB75, /*hidden argument*/NULL);
|
|
if (L_11)
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
StringBuilder_t * L_12 = __this->get_buffer_5();
|
|
NullCheck(L_12);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_12, ((int32_t)38), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
StringBuilder_t * L_13 = __this->get_buffer_5();
|
|
NullCheck(L_13);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_13, ((int32_t)34), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
StringBuilder_t * L_14 = __this->get_buffer_5();
|
|
NullCheck(L_14);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_14, ((int32_t)39), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
StringBuilder_t * L_15 = __this->get_buffer_5();
|
|
NullCheck(L_15);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_15, ((int32_t)60), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
StringBuilder_t * L_16 = __this->get_buffer_5();
|
|
NullCheck(L_16);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_16, ((int32_t)62), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
Exception_t * L_17 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, _stringLiteral25DC02E8DE20819997226DD2B2E8AFC4C42839E6, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, SmallXmlParser_ReadReference_m630C8CDBEE46892DB8A490D7101E587AC788C3DB_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Int32 Mono.Xml.SmallXmlParser::ReadCharacterReference()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_ReadCharacterReference_mB7083689048E75E9205DEC8454434EDAD57CAE5E (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
V_0 = 0;
|
|
int32_t L_0 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)120)))))
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
int32_t L_1 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
V_1 = L_1;
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_2 = V_1;
|
|
if ((((int32_t)((int32_t)48)) > ((int32_t)L_2)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_1;
|
|
if ((((int32_t)L_3) > ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = V_1;
|
|
V_0 = ((int32_t)((int32_t)L_4<<(int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)4, (int32_t)L_5)), (int32_t)((int32_t)48)))&(int32_t)((int32_t)31)))));
|
|
goto IL_0068;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_6 = V_1;
|
|
if ((((int32_t)((int32_t)65)) > ((int32_t)L_6)))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_1;
|
|
if ((((int32_t)L_7) > ((int32_t)((int32_t)70))))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = V_1;
|
|
V_0 = ((int32_t)((int32_t)L_8<<(int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)4, (int32_t)L_9)), (int32_t)((int32_t)65))), (int32_t)((int32_t)10)))&(int32_t)((int32_t)31)))));
|
|
goto IL_0068;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
if ((((int32_t)((int32_t)97)) > ((int32_t)L_10)))
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = V_1;
|
|
if ((((int32_t)L_11) > ((int32_t)((int32_t)102))))
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = V_0;
|
|
int32_t L_13 = V_1;
|
|
V_0 = ((int32_t)((int32_t)L_12<<(int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)4, (int32_t)L_13)), (int32_t)((int32_t)97))), (int32_t)((int32_t)10)))&(int32_t)((int32_t)31)))));
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
int32_t L_14 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
V_1 = L_14;
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
int32_t L_15 = V_1;
|
|
if ((((int32_t)L_15) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
int32_t L_16 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
V_2 = L_16;
|
|
goto IL_00a9;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
int32_t L_17 = V_2;
|
|
if ((((int32_t)((int32_t)48)) > ((int32_t)L_17)))
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_18 = V_2;
|
|
if ((((int32_t)L_18) > ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_0;
|
|
int32_t L_20 = V_2;
|
|
V_0 = ((int32_t)((int32_t)L_19<<(int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)4, (int32_t)L_20)), (int32_t)((int32_t)48)))&(int32_t)((int32_t)31)))));
|
|
SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
int32_t L_21 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
V_2 = L_21;
|
|
}
|
|
|
|
IL_00a9:
|
|
{
|
|
int32_t L_22 = V_2;
|
|
if ((((int32_t)L_22) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
int32_t L_23 = V_0;
|
|
return L_23;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadAttribute(Mono.Xml.SmallXmlParser_AttrListImpl)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadAttribute_mFE6E3CA7C9EE7432F9D31358EB164463E0EAAD99 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * ___a0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_ReadAttribute_mFE6E3CA7C9EE7432F9D31358EB164463E0EAAD99_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
{
|
|
SmallXmlParser_SkipWhitespaces_mA351F024FC4B043329B3B6581791093015958725(__this, (bool)1, /*hidden argument*/NULL);
|
|
int32_t L_0 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_0) == ((int32_t)((int32_t)47))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)62)))))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
String_t* L_2 = SmallXmlParser_ReadName_mAD70917F33A3E157537E69B8925BF41A996EAF35(__this, /*hidden argument*/NULL);
|
|
V_0 = L_2;
|
|
SmallXmlParser_SkipWhitespaces_mA51F0B32758624356F610B726242A1FAB1D417BF(__this, /*hidden argument*/NULL);
|
|
SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4(__this, ((int32_t)61), /*hidden argument*/NULL);
|
|
SmallXmlParser_SkipWhitespaces_mA51F0B32758624356F610B726242A1FAB1D417BF(__this, /*hidden argument*/NULL);
|
|
int32_t L_3 = SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
V_2 = L_3;
|
|
int32_t L_4 = V_2;
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)34))))
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)39)))))
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = SmallXmlParser_ReadUntil_m279D06CB9963FEEF22356F085F2745A70DD78F23(__this, ((int32_t)39), (bool)1, /*hidden argument*/NULL);
|
|
V_1 = L_6;
|
|
goto IL_006c;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
String_t* L_7 = SmallXmlParser_ReadUntil_m279D06CB9963FEEF22356F085F2745A70DD78F23(__this, ((int32_t)34), (bool)1, /*hidden argument*/NULL);
|
|
V_1 = L_7;
|
|
goto IL_006c;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
Exception_t * L_8 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, _stringLiteral393EA32677EA1D0FD0F3B6A6D4381D6995D08CD2, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, SmallXmlParser_ReadAttribute_mFE6E3CA7C9EE7432F9D31358EB164463E0EAAD99_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
String_t* L_9 = V_0;
|
|
bool L_10 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_9, _stringLiteral9B8B0B106C9CA702F9BC34AA3D7B01AE7CD314FA, /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_11 = V_1;
|
|
__this->set_xmlSpace_4(L_11);
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * L_12 = ___a0;
|
|
String_t* L_13 = V_0;
|
|
String_t* L_14 = V_1;
|
|
NullCheck(L_12);
|
|
AttrListImpl_Add_mC2841C466B5711319B528BB1082B77CB842B4E2D(L_12, L_13, L_14, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadCDATASection()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadCDATASection_mC256BDCC2986CE516F699828792B9E67B3282B61 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_ReadCDATASection_mC256BDCC2986CE516F699828792B9E67B3282B61_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Il2CppChar V_1 = 0x0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
|
|
IL_0002:
|
|
{
|
|
int32_t L_0 = SmallXmlParser_Peek_mF28E751D25F058D2B9ACA04130207A2E3FD58398(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
Exception_t * L_1 = SmallXmlParser_UnexpectedEndError_mEA2509A8E147FC380F9726D2A98E1B0A44553329(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, SmallXmlParser_ReadCDATASection_mC256BDCC2986CE516F699828792B9E67B3282B61_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_2 = SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
V_1 = (((int32_t)((uint16_t)L_2)));
|
|
Il2CppChar L_3 = V_1;
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)93)))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
|
|
goto IL_0002;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
Il2CppChar L_5 = V_1;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)62)))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_6) <= ((int32_t)1)))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_2 = L_7;
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
StringBuilder_t * L_8 = __this->get_buffer_5();
|
|
NullCheck(L_8);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_8, ((int32_t)93), /*hidden argument*/NULL);
|
|
int32_t L_9 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
int32_t L_10 = V_2;
|
|
if ((((int32_t)L_10) > ((int32_t)2)))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
V_3 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
StringBuilder_t * L_11 = __this->get_buffer_5();
|
|
NullCheck(L_11);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_11, ((int32_t)93), /*hidden argument*/NULL);
|
|
int32_t L_12 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_13 = V_3;
|
|
int32_t L_14 = V_0;
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
V_0 = 0;
|
|
StringBuilder_t * L_15 = __this->get_buffer_5();
|
|
Il2CppChar L_16 = V_1;
|
|
NullCheck(L_15);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_15, L_16, /*hidden argument*/NULL);
|
|
goto IL_0002;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser::ReadComment()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadComment_m9C33081E484F35D15575E4813430356332A1DCC5 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParser_ReadComment_m9C33081E484F35D15575E4813430356332A1DCC5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4(__this, ((int32_t)45), /*hidden argument*/NULL);
|
|
SmallXmlParser_Expect_mC5DC5EE6A784CEEA52A243A5004A738C0400A8E4(__this, ((int32_t)45), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
int32_t L_0 = SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = SmallXmlParser_Read_mB2AF24487DF5A28326878C39C3DF124740A90712(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_2) == ((int32_t)((int32_t)62))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
Exception_t * L_3 = SmallXmlParser_Error_m7F834D2CF36E873DC1EDF664BB16A7CA0B9CBAF2(__this, _stringLiteral26C46356B0908F3C4B9A9A8719EFF0AB5B4CE2F3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, SmallXmlParser_ReadComment_m9C33081E484F35D15575E4813430356332A1DCC5_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Int32 Mono.Xml.SmallXmlParser_AttrListImpl::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AttrListImpl_get_Length_mD72C559AE80A421818D495A852192B9FB7D0452C (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AttrListImpl_get_Length_mD72C559AE80A421818D495A852192B9FB7D0452C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_0 = __this->get_attrNames_0();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline(L_0, /*hidden argument*/List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.String Mono.Xml.SmallXmlParser_AttrListImpl::GetName(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AttrListImpl_GetName_m49E0984541255F6E145F6F68E01944D0E39E42FF (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, int32_t ___i0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AttrListImpl_GetName_m49E0984541255F6E145F6F68E01944D0E39E42FF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_0 = __this->get_attrNames_0();
|
|
int32_t L_1 = ___i0;
|
|
NullCheck(L_0);
|
|
String_t* L_2 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.String Mono.Xml.SmallXmlParser_AttrListImpl::GetValue(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AttrListImpl_GetValue_m64E693D70F358F8491AEC75E0CB1C4B0B479EC17 (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, int32_t ___i0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AttrListImpl_GetValue_m64E693D70F358F8491AEC75E0CB1C4B0B479EC17_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_0 = __this->get_attrValues_1();
|
|
int32_t L_1 = ___i0;
|
|
NullCheck(L_0);
|
|
String_t* L_2 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.String Mono.Xml.SmallXmlParser_AttrListImpl::GetValue(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AttrListImpl_GetValue_mE92027FDDFB4586443E3A0A9DF865D89496D4F71 (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, String_t* ___name0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AttrListImpl_GetValue_mE92027FDDFB4586443E3A0A9DF865D89496D4F71_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_0 = __this->get_attrNames_0();
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
String_t* L_2 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var);
|
|
String_t* L_3 = ___name0;
|
|
bool L_4 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, L_3, /*hidden argument*/NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_5 = __this->get_attrValues_1();
|
|
int32_t L_6 = V_0;
|
|
NullCheck(L_5);
|
|
String_t* L_7 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_inline(L_5, L_6, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
int32_t L_9 = V_0;
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_10 = __this->get_attrNames_0();
|
|
NullCheck(L_10);
|
|
int32_t L_11 = List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline(L_10, /*hidden argument*/List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var);
|
|
if ((((int32_t)L_9) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
return (String_t*)NULL;
|
|
}
|
|
}
|
|
// System.String[] Mono.Xml.SmallXmlParser_AttrListImpl::get_Names()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* AttrListImpl_get_Names_mFDBCE4524F597758602D5453AA1F8AFF7FBD0CC9 (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AttrListImpl_get_Names_mFDBCE4524F597758602D5453AA1F8AFF7FBD0CC9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_0 = __this->get_attrNames_0();
|
|
NullCheck(L_0);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = List_1_ToArray_m9DD19D800AE6D84ED0729D5D97CAF84DF317DD38(L_0, /*hidden argument*/List_1_ToArray_m9DD19D800AE6D84ED0729D5D97CAF84DF317DD38_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.String[] Mono.Xml.SmallXmlParser_AttrListImpl::get_Values()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* AttrListImpl_get_Values_m99636E3FAF3306508F47185B0957B58AFAA3AA42 (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AttrListImpl_get_Values_m99636E3FAF3306508F47185B0957B58AFAA3AA42_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_0 = __this->get_attrValues_1();
|
|
NullCheck(L_0);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = List_1_ToArray_m9DD19D800AE6D84ED0729D5D97CAF84DF317DD38(L_0, /*hidden argument*/List_1_ToArray_m9DD19D800AE6D84ED0729D5D97CAF84DF317DD38_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser_AttrListImpl::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl_Clear_m9C1CF67FAC2C726DC0CF7E4663751C7D89D922A0 (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AttrListImpl_Clear_m9C1CF67FAC2C726DC0CF7E4663751C7D89D922A0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_0 = __this->get_attrNames_0();
|
|
NullCheck(L_0);
|
|
List_1_Clear_mB886C990CD1F0558809236CF1D28C977A3558306(L_0, /*hidden argument*/List_1_Clear_mB886C990CD1F0558809236CF1D28C977A3558306_RuntimeMethod_var);
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_1 = __this->get_attrValues_1();
|
|
NullCheck(L_1);
|
|
List_1_Clear_mB886C990CD1F0558809236CF1D28C977A3558306(L_1, /*hidden argument*/List_1_Clear_mB886C990CD1F0558809236CF1D28C977A3558306_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser_AttrListImpl::Add(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl_Add_mC2841C466B5711319B528BB1082B77CB842B4E2D (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AttrListImpl_Add_mC2841C466B5711319B528BB1082B77CB842B4E2D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_0 = __this->get_attrNames_0();
|
|
String_t* L_1 = ___name0;
|
|
NullCheck(L_0);
|
|
List_1_Add_mA348FA1140766465189459D25B01EB179001DE83(L_0, L_1, /*hidden argument*/List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var);
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_2 = __this->get_attrValues_1();
|
|
String_t* L_3 = ___value1;
|
|
NullCheck(L_2);
|
|
List_1_Add_mA348FA1140766465189459D25B01EB179001DE83(L_2, L_3, /*hidden argument*/List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void Mono.Xml.SmallXmlParser_AttrListImpl::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl__ctor_m5B7885CD6830138F25DC2D46F14B1A18DD1564BA (AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AttrListImpl__ctor_m5B7885CD6830138F25DC2D46F14B1A18DD1564BA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_0 = (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *)il2cpp_codegen_object_new(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06(L_0, /*hidden argument*/List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var);
|
|
__this->set_attrNames_0(L_0);
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_1 = (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *)il2cpp_codegen_object_new(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06(L_1, /*hidden argument*/List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var);
|
|
__this->set_attrValues_1(L_1);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void Mono.Xml.SmallXmlParserException::.ctor(System.String,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParserException__ctor_m6AB9D00DB18C0DD5D3A9B19B50BE555685206A22 (SmallXmlParserException_t96963A305B0E2C72C5EDC72952F1D079DE102140 * __this, String_t* ___msg0, int32_t ___line1, int32_t ___column2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SmallXmlParserException__ctor_m6AB9D00DB18C0DD5D3A9B19B50BE555685206A22_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___msg0;
|
|
int32_t L_1 = ___line1;
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2);
|
|
int32_t L_4 = ___column2;
|
|
int32_t L_5 = L_4;
|
|
RuntimeObject * L_6 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7 = String_Format_m26BBF75F9609FAD0B39C2242FEBAAD7D68F14D99(_stringLiteralC1740F2BD94B35E7774E0856DF28E0C0C5598D29, L_0, L_3, L_6, /*hidden argument*/NULL);
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_7, /*hidden argument*/NULL);
|
|
int32_t L_8 = ___line1;
|
|
__this->set_line_17(L_8);
|
|
int32_t L_9 = ___column2;
|
|
__this->set_column_18(L_9);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.String SR::Format(System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7 (String_t* ___resourceFormat0, RuntimeObject * ___p11, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
String_t* L_1 = ___resourceFormat0;
|
|
RuntimeObject * L_2 = ___p11;
|
|
String_t* L_3 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.String SR::Format(System.String,System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C (String_t* ___resourceFormat0, RuntimeObject * ___p11, RuntimeObject * ___p22, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
String_t* L_1 = ___resourceFormat0;
|
|
RuntimeObject * L_2 = ___p11;
|
|
RuntimeObject * L_3 = ___p22;
|
|
String_t* L_4 = String_Format_m453C2840536781B718FF4D0F5C7EEC8E5481C435(L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_Action_t591D2A86165F896B4B800BB5C25CE18672A55579 (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * __this, const RuntimeMethod* method)
|
|
{
|
|
typedef void (DEFAULT_CALL *PInvokeFunc)();
|
|
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
|
|
|
|
// Native function invocation
|
|
il2cppPInvokeFunc();
|
|
|
|
}
|
|
// System.Void System.Action::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_m570E96B2A0C48BC1DC6788460316191F24572760 (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
|
|
__this->set_method_3(___method1);
|
|
__this->set_m_target_2(___object0);
|
|
}
|
|
// System.Void System.Action::Invoke()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_Invoke_mC8D676E5DDF967EC5D23DD0E96FB52AA499817FD (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * __this, const RuntimeMethod* method)
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
|
|
Delegate_t** delegatesToInvoke;
|
|
il2cpp_array_size_t length;
|
|
if (delegateArrayToInvoke != NULL)
|
|
{
|
|
length = delegateArrayToInvoke->max_length;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
|
|
}
|
|
else
|
|
{
|
|
length = 1;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
|
|
}
|
|
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
Delegate_t* currentDelegate = delegatesToInvoke[i];
|
|
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
|
|
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
|
|
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
|
|
if (!il2cpp_codegen_method_is_virtual(targetMethod))
|
|
{
|
|
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
|
|
}
|
|
bool ___methodIsStatic = MethodIsStatic(targetMethod);
|
|
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
|
|
if (___methodIsStatic)
|
|
{
|
|
if (___parameterCount == 0)
|
|
{
|
|
// open
|
|
typedef void (*FunctionPointerType) (const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetMethod);
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
typedef void (*FunctionPointerType) (void*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker0::Invoke(targetMethod, targetThis);
|
|
else
|
|
GenericVirtActionInvoker0::Invoke(targetMethod, targetThis);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis);
|
|
else
|
|
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
typedef void (*FunctionPointerType) (void*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// System.IAsyncResult System.Action::BeginInvoke(System.AsyncCallback,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_BeginInvoke_mB0B63C94438772265C579D72183636528B4313FD (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * __this, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[1] = {0};
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);
|
|
}
|
|
// System.Void System.Action::EndInvoke(System.IAsyncResult)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_EndInvoke_mBF98F3517165F5FE5633E66420ABC298674EB3D5 (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Object System.Activator::CreateInstance(System.Type,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_m8514197681D9771380014317A84B751EC31DBBC0 (Type_t * ___type0, int32_t ___bindingAttr1, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args3, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture4, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
int32_t L_1 = ___bindingAttr1;
|
|
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_2 = ___binder2;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___args3;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = ___culture4;
|
|
RuntimeObject * L_5 = Activator_CreateInstance_m328643EF5AC04AA6C24BFADFCAB54E99DE5CA00F(L_0, L_1, L_2, L_3, L_4, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Object System.Activator::CreateInstance(System.Type,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_m328643EF5AC04AA6C24BFADFCAB54E99DE5CA00F (Type_t * ___type0, int32_t ___bindingAttr1, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args3, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture4, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___activationAttributes5, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Activator_CreateInstance_m328643EF5AC04AA6C24BFADFCAB54E99DE5CA00F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B9_0 = NULL;
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B8_0 = NULL;
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Activator_CreateInstance_m328643EF5AC04AA6C24BFADFCAB54E99DE5CA00F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___bindingAttr1;
|
|
if (((int32_t)((int32_t)L_2&(int32_t)((int32_t)255))))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___bindingAttr1;
|
|
___bindingAttr1 = ((int32_t)((int32_t)L_3|(int32_t)((int32_t)532)));
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___activationAttributes5;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___activationAttributes5;
|
|
NullCheck(L_5);
|
|
if (!(((RuntimeArray*)L_5)->max_length))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral36FE11D26FD1EB22CC4669E7FDA6B2B00F560C4B, /*hidden argument*/NULL);
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_7 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_7, L_6, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Activator_CreateInstance_m328643EF5AC04AA6C24BFADFCAB54E99DE5CA00F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
Type_t * L_8 = ___type0;
|
|
NullCheck(L_8);
|
|
Type_t * L_9 = VirtFuncInvoker0< Type_t * >::Invoke(136 /* System.Type System.Type::get_UnderlyingSystemType() */, L_8);
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_9, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
|
|
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
|
|
bool L_11 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_10, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL);
|
|
G_B8_0 = L_10;
|
|
if (!L_11)
|
|
{
|
|
G_B9_0 = L_10;
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_13, L_12, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, Activator_CreateInstance_m328643EF5AC04AA6C24BFADFCAB54E99DE5CA00F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
V_0 = 1;
|
|
int32_t L_14 = ___bindingAttr1;
|
|
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_15 = ___binder2;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = ___args3;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_17 = ___culture4;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = ___activationAttributes5;
|
|
NullCheck(G_B9_0);
|
|
RuntimeObject * L_19 = RuntimeType_CreateInstanceImpl_mF3FFEA4CD8A8405D9524F8BFB34F3CE830A53AD0(G_B9_0, L_14, L_15, L_16, L_17, L_18, (int32_t*)(&V_0), /*hidden argument*/NULL);
|
|
return L_19;
|
|
}
|
|
}
|
|
// System.Object System.Activator::CreateInstance(System.Type,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_mEE50708E1E8AAD4E5021A2FFDB992DDF65727E17 (Type_t * ___type0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___args1;
|
|
RuntimeObject * L_2 = Activator_CreateInstance_m328643EF5AC04AA6C24BFADFCAB54E99DE5CA00F(L_0, ((int32_t)532), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_1, (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *)NULL, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Object System.Activator::CreateInstance(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16 (Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
RuntimeObject * L_1 = Activator_CreateInstance_m7776DE4D344614DDBCECD20C93421CC7183C88D3(L_0, (bool)0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Object System.Activator::CreateInstance(System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_m7776DE4D344614DDBCECD20C93421CC7183C88D3 (Type_t * ___type0, bool ___nonPublic1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Activator_CreateInstance_m7776DE4D344614DDBCECD20C93421CC7183C88D3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B4_0 = NULL;
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B3_0 = NULL;
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Activator_CreateInstance_m7776DE4D344614DDBCECD20C93421CC7183C88D3_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
Type_t * L_2 = ___type0;
|
|
NullCheck(L_2);
|
|
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(136 /* System.Type System.Type::get_UnderlyingSystemType() */, L_2);
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_3, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
|
|
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
|
|
bool L_5 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_4, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL);
|
|
G_B3_0 = L_4;
|
|
if (!L_5)
|
|
{
|
|
G_B4_0 = L_4;
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, L_6, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Activator_CreateInstance_m7776DE4D344614DDBCECD20C93421CC7183C88D3_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
V_0 = 1;
|
|
bool L_8 = ___nonPublic1;
|
|
NullCheck(G_B4_0);
|
|
RuntimeObject * L_9 = RuntimeType_CreateInstanceDefaultCtor_m7553969A13B4A66B8A0D95C3B598CE3B92325064(G_B4_0, (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0), (bool)0, (bool)1, (int32_t*)(&V_0), /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.AggregateException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mD4BA712D1E805F774D050A60BD64F3A8EE4CA7A5 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException__ctor_mD4BA712D1E805F774D050A60BD64F3A8EE4CA7A5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0F0AA93E8B44954B331BE9CA0358DEC4BBDA83A8, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
|
|
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(__this, L_0, /*hidden argument*/NULL);
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_1 = (ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*)(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*)SZArrayNew(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_2 = (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 *)il2cpp_codegen_object_new(ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8_il2cpp_TypeInfo_var);
|
|
ReadOnlyCollection_1__ctor_mB9A088773123898D26251D041368C0E6FB692670(L_2, (RuntimeObject*)(RuntimeObject*)L_1, /*hidden argument*/ReadOnlyCollection_1__ctor_mB9A088773123898D26251D041368C0E6FB692670_RuntimeMethod_var);
|
|
__this->set_m_innerExceptions_17(L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.Collections.Generic.IEnumerable`1<System.Exception>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m1740971CC345A49D8FCB7DDE6C905FB0F3353C28 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, RuntimeObject* ___innerExceptions0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException__ctor_m1740971CC345A49D8FCB7DDE6C905FB0F3353C28_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0F0AA93E8B44954B331BE9CA0358DEC4BBDA83A8, /*hidden argument*/NULL);
|
|
RuntimeObject* L_1 = ___innerExceptions0;
|
|
AggregateException__ctor_mEB0710D0C50475FCE00B187AA5FA8098DC656E44(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.Exception[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m4BE6D1A4009BE2081C418E517FFDFE415B6CF908 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* ___innerExceptions0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException__ctor_m4BE6D1A4009BE2081C418E517FFDFE415B6CF908_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0F0AA93E8B44954B331BE9CA0358DEC4BBDA83A8, /*hidden argument*/NULL);
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_1 = ___innerExceptions0;
|
|
AggregateException__ctor_mA35C4ECD50CDFC6464D30D6D0F0AE77E6A9D83A0(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1<System.Exception>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mEB0710D0C50475FCE00B187AA5FA8098DC656E44 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, String_t* ___message0, RuntimeObject* ___innerExceptions1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException__ctor_mEB0710D0C50475FCE00B187AA5FA8098DC656E44_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* G_B4_0 = NULL;
|
|
String_t* G_B4_1 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B4_2 = NULL;
|
|
RuntimeObject* G_B1_0 = NULL;
|
|
String_t* G_B1_1 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B1_2 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B3_1 = NULL;
|
|
String_t* G_B2_0 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B2_1 = NULL;
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
RuntimeObject* L_1 = ___innerExceptions1;
|
|
RuntimeObject* L_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IList_1_t79A79A556E69BA20A09771D2D61B0440B6F4EFBA_il2cpp_TypeInfo_var));
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = L_0;
|
|
G_B1_2 = __this;
|
|
if (L_2)
|
|
{
|
|
G_B4_0 = L_2;
|
|
G_B4_1 = L_0;
|
|
G_B4_2 = __this;
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___innerExceptions1;
|
|
G_B2_0 = G_B1_1;
|
|
G_B2_1 = G_B1_2;
|
|
if (!L_3)
|
|
{
|
|
G_B3_0 = G_B1_1;
|
|
G_B3_1 = G_B1_2;
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = ___innerExceptions1;
|
|
List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A * L_5 = (List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A *)il2cpp_codegen_object_new(List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m1DFEC304B805408BFF9021E6E069A75071C41577(L_5, L_4, /*hidden argument*/List_1__ctor_m1DFEC304B805408BFF9021E6E069A75071C41577_RuntimeMethod_var);
|
|
G_B4_0 = ((RuntimeObject*)(L_5));
|
|
G_B4_1 = G_B2_0;
|
|
G_B4_2 = G_B2_1;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
G_B4_0 = ((RuntimeObject*)(NULL));
|
|
G_B4_1 = G_B3_0;
|
|
G_B4_2 = G_B3_1;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NullCheck(G_B4_2);
|
|
AggregateException__ctor_m3CBEB65087C05AB23CEE39CF67D35CFE1D657CB4(G_B4_2, G_B4_1, G_B4_0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.String,System.Exception[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mA35C4ECD50CDFC6464D30D6D0F0AE77E6A9D83A0 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, String_t* ___message0, ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* ___innerExceptions1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_1 = ___innerExceptions1;
|
|
AggregateException__ctor_m3CBEB65087C05AB23CEE39CF67D35CFE1D657CB4(__this, L_0, (RuntimeObject*)(RuntimeObject*)L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1<System.Exception>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m3CBEB65087C05AB23CEE39CF67D35CFE1D657CB4 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, String_t* ___message0, RuntimeObject* ___innerExceptions1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException__ctor_m3CBEB65087C05AB23CEE39CF67D35CFE1D657CB4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
String_t* G_B2_0 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B2_1 = NULL;
|
|
String_t* G_B1_0 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B1_1 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B3_1 = NULL;
|
|
Exception_t * G_B4_0 = NULL;
|
|
String_t* G_B4_1 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B4_2 = NULL;
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
RuntimeObject* L_1 = ___innerExceptions1;
|
|
G_B1_0 = L_0;
|
|
G_B1_1 = __this;
|
|
if (!L_1)
|
|
{
|
|
G_B2_0 = L_0;
|
|
G_B2_1 = __this;
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___innerExceptions1;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Exception>::get_Count() */, ICollection_1_t369F219933FB866C23070CD9749538883440F044_il2cpp_TypeInfo_var, L_2);
|
|
G_B2_0 = G_B1_0;
|
|
G_B2_1 = G_B1_1;
|
|
if ((((int32_t)L_3) > ((int32_t)0)))
|
|
{
|
|
G_B3_0 = G_B1_0;
|
|
G_B3_1 = G_B1_1;
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
G_B4_0 = ((Exception_t *)(NULL));
|
|
G_B4_1 = G_B2_0;
|
|
G_B4_2 = G_B2_1;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
RuntimeObject* L_4 = ___innerExceptions1;
|
|
NullCheck(L_4);
|
|
Exception_t * L_5 = InterfaceFuncInvoker1< Exception_t *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Exception>::get_Item(System.Int32) */, IList_1_t79A79A556E69BA20A09771D2D61B0440B6F4EFBA_il2cpp_TypeInfo_var, L_4, 0);
|
|
G_B4_0 = L_5;
|
|
G_B4_1 = G_B3_0;
|
|
G_B4_2 = G_B3_1;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NullCheck(G_B4_2);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
|
|
Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(G_B4_2, G_B4_1, G_B4_0, /*hidden argument*/NULL);
|
|
RuntimeObject* L_6 = ___innerExceptions1;
|
|
if (L_6)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_7 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_7, _stringLiteral79D85DFB1C4F87CAFE5C3E2CA8630EB305CEBFDA, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, AggregateException__ctor_m3CBEB65087C05AB23CEE39CF67D35CFE1D657CB4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
RuntimeObject* L_8 = ___innerExceptions1;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Exception>::get_Count() */, ICollection_1_t369F219933FB866C23070CD9749538883440F044_il2cpp_TypeInfo_var, L_8);
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_10 = (ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*)(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*)SZArrayNew(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_il2cpp_TypeInfo_var, (uint32_t)L_9);
|
|
V_0 = L_10;
|
|
V_1 = 0;
|
|
goto IL_005e;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_11 = V_0;
|
|
int32_t L_12 = V_1;
|
|
RuntimeObject* L_13 = ___innerExceptions1;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Exception_t * L_15 = InterfaceFuncInvoker1< Exception_t *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Exception>::get_Item(System.Int32) */, IList_1_t79A79A556E69BA20A09771D2D61B0440B6F4EFBA_il2cpp_TypeInfo_var, L_13, L_14);
|
|
NullCheck(L_11);
|
|
ArrayElementTypeCheck (L_11, L_15);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (Exception_t *)L_15);
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_16 = V_0;
|
|
int32_t L_17 = V_1;
|
|
NullCheck(L_16);
|
|
int32_t L_18 = L_17;
|
|
Exception_t * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
|
|
if (L_19)
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_20 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8841249D4C3CDE2567393EA141F076E740101A64, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_21 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_21, L_20, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, AggregateException__ctor_m3CBEB65087C05AB23CEE39CF67D35CFE1D657CB4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
if ((((int32_t)L_23) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_25 = V_0;
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_26 = (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 *)il2cpp_codegen_object_new(ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8_il2cpp_TypeInfo_var);
|
|
ReadOnlyCollection_1__ctor_mB9A088773123898D26251D041368C0E6FB692670(L_26, (RuntimeObject*)(RuntimeObject*)L_25, /*hidden argument*/ReadOnlyCollection_1__ctor_mB9A088773123898D26251D041368C0E6FB692670_RuntimeMethod_var);
|
|
__this->set_m_innerExceptions_17(L_26);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.Collections.Generic.IEnumerable`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m863A7C10A5AC7652F73FD1DD2441F9FF5544311E (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, RuntimeObject* ___innerExceptionInfos0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException__ctor_m863A7C10A5AC7652F73FD1DD2441F9FF5544311E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0F0AA93E8B44954B331BE9CA0358DEC4BBDA83A8, /*hidden argument*/NULL);
|
|
RuntimeObject* L_1 = ___innerExceptionInfos0;
|
|
AggregateException__ctor_m49EF2FE10BC147085D49932EDE07AD581C461818(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m49EF2FE10BC147085D49932EDE07AD581C461818 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, String_t* ___message0, RuntimeObject* ___innerExceptionInfos1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException__ctor_m49EF2FE10BC147085D49932EDE07AD581C461818_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* G_B4_0 = NULL;
|
|
String_t* G_B4_1 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B4_2 = NULL;
|
|
RuntimeObject* G_B1_0 = NULL;
|
|
String_t* G_B1_1 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B1_2 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B3_1 = NULL;
|
|
String_t* G_B2_0 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B2_1 = NULL;
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
RuntimeObject* L_1 = ___innerExceptionInfos1;
|
|
RuntimeObject* L_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IList_1_t1D32293C65F49E1B7D7E3344057FED3589CD8F1F_il2cpp_TypeInfo_var));
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = L_0;
|
|
G_B1_2 = __this;
|
|
if (L_2)
|
|
{
|
|
G_B4_0 = L_2;
|
|
G_B4_1 = L_0;
|
|
G_B4_2 = __this;
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___innerExceptionInfos1;
|
|
G_B2_0 = G_B1_1;
|
|
G_B2_1 = G_B1_2;
|
|
if (!L_3)
|
|
{
|
|
G_B3_0 = G_B1_1;
|
|
G_B3_1 = G_B1_2;
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = ___innerExceptionInfos1;
|
|
List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_5 = (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 *)il2cpp_codegen_object_new(List_1_tCD04260AE1254C438132446F1E6892AB86D18743_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m599E284E3C4D0D6BC71FCC04EEF110C663406224(L_5, L_4, /*hidden argument*/List_1__ctor_m599E284E3C4D0D6BC71FCC04EEF110C663406224_RuntimeMethod_var);
|
|
G_B4_0 = ((RuntimeObject*)(L_5));
|
|
G_B4_1 = G_B2_0;
|
|
G_B4_2 = G_B2_1;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
G_B4_0 = ((RuntimeObject*)(NULL));
|
|
G_B4_1 = G_B3_0;
|
|
G_B4_2 = G_B3_1;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NullCheck(G_B4_2);
|
|
AggregateException__ctor_mA78372B38621E83F133785934CCA1A9BB45A9040(G_B4_2, G_B4_1, G_B4_0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mA78372B38621E83F133785934CCA1A9BB45A9040 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, String_t* ___message0, RuntimeObject* ___innerExceptionInfos1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException__ctor_mA78372B38621E83F133785934CCA1A9BB45A9040_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * V_2 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B3_1 = NULL;
|
|
String_t* G_B1_0 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B1_1 = NULL;
|
|
String_t* G_B2_0 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B2_1 = NULL;
|
|
String_t* G_B4_0 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B4_1 = NULL;
|
|
Exception_t * G_B5_0 = NULL;
|
|
String_t* G_B5_1 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * G_B5_2 = NULL;
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
RuntimeObject* L_1 = ___innerExceptionInfos1;
|
|
G_B1_0 = L_0;
|
|
G_B1_1 = __this;
|
|
if (!L_1)
|
|
{
|
|
G_B3_0 = L_0;
|
|
G_B3_1 = __this;
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___innerExceptionInfos1;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Count() */, ICollection_1_tD447A78605F94CBCA03A6FAE0396C06A35329789_il2cpp_TypeInfo_var, L_2);
|
|
G_B2_0 = G_B1_0;
|
|
G_B2_1 = G_B1_1;
|
|
if ((((int32_t)L_3) <= ((int32_t)0)))
|
|
{
|
|
G_B3_0 = G_B1_0;
|
|
G_B3_1 = G_B1_1;
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = ___innerExceptionInfos1;
|
|
NullCheck(L_4);
|
|
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_5 = InterfaceFuncInvoker1< ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Item(System.Int32) */, IList_1_t1D32293C65F49E1B7D7E3344057FED3589CD8F1F_il2cpp_TypeInfo_var, L_4, 0);
|
|
G_B3_0 = G_B2_0;
|
|
G_B3_1 = G_B2_1;
|
|
if (L_5)
|
|
{
|
|
G_B4_0 = G_B2_0;
|
|
G_B4_1 = G_B2_1;
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
G_B5_0 = ((Exception_t *)(NULL));
|
|
G_B5_1 = G_B3_0;
|
|
G_B5_2 = G_B3_1;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
RuntimeObject* L_6 = ___innerExceptionInfos1;
|
|
NullCheck(L_6);
|
|
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_7 = InterfaceFuncInvoker1< ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Item(System.Int32) */, IList_1_t1D32293C65F49E1B7D7E3344057FED3589CD8F1F_il2cpp_TypeInfo_var, L_6, 0);
|
|
NullCheck(L_7);
|
|
Exception_t * L_8 = ExceptionDispatchInfo_get_SourceException_m212F50A437B8B18AFECE39F2A9F7231787F45F28_inline(L_7, /*hidden argument*/NULL);
|
|
G_B5_0 = L_8;
|
|
G_B5_1 = G_B4_0;
|
|
G_B5_2 = G_B4_1;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
NullCheck(G_B5_2);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
|
|
Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(G_B5_2, G_B5_1, G_B5_0, /*hidden argument*/NULL);
|
|
RuntimeObject* L_9 = ___innerExceptionInfos1;
|
|
if (L_9)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_10 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_10, _stringLiteral0844679F4040A4211BAA73593E4824F055561A9D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, AggregateException__ctor_mA78372B38621E83F133785934CCA1A9BB45A9040_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
RuntimeObject* L_11 = ___innerExceptionInfos1;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Count() */, ICollection_1_tD447A78605F94CBCA03A6FAE0396C06A35329789_il2cpp_TypeInfo_var, L_11);
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_13 = (ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*)(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*)SZArrayNew(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_il2cpp_TypeInfo_var, (uint32_t)L_12);
|
|
V_0 = L_13;
|
|
V_1 = 0;
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
RuntimeObject* L_14 = ___innerExceptionInfos1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_16 = InterfaceFuncInvoker1< ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Item(System.Int32) */, IList_1_t1D32293C65F49E1B7D7E3344057FED3589CD8F1F_il2cpp_TypeInfo_var, L_14, L_15);
|
|
V_2 = L_16;
|
|
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_17 = V_2;
|
|
if (!L_17)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_18 = V_0;
|
|
int32_t L_19 = V_1;
|
|
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_20 = V_2;
|
|
NullCheck(L_20);
|
|
Exception_t * L_21 = ExceptionDispatchInfo_get_SourceException_m212F50A437B8B18AFECE39F2A9F7231787F45F28_inline(L_20, /*hidden argument*/NULL);
|
|
NullCheck(L_18);
|
|
ArrayElementTypeCheck (L_18, L_21);
|
|
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (Exception_t *)L_21);
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_22 = V_0;
|
|
int32_t L_23 = V_1;
|
|
NullCheck(L_22);
|
|
int32_t L_24 = L_23;
|
|
Exception_t * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
|
|
if (L_25)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_26 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8841249D4C3CDE2567393EA141F076E740101A64, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_27 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_27, L_26, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, AggregateException__ctor_mA78372B38621E83F133785934CCA1A9BB45A9040_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
int32_t L_28 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1));
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
int32_t L_29 = V_1;
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_30 = V_0;
|
|
NullCheck(L_30);
|
|
if ((((int32_t)L_29) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length)))))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_31 = V_0;
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_32 = (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 *)il2cpp_codegen_object_new(ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8_il2cpp_TypeInfo_var);
|
|
ReadOnlyCollection_1__ctor_mB9A088773123898D26251D041368C0E6FB692670(L_32, (RuntimeObject*)(RuntimeObject*)L_31, /*hidden argument*/ReadOnlyCollection_1__ctor_mB9A088773123898D26251D041368C0E6FB692670_RuntimeMethod_var);
|
|
__this->set_m_innerExceptions_17(L_32);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AggregateException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mB5494082EA3D88AA1F6552CF5894E9FDFF812A59 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException__ctor_mB5494082EA3D88AA1F6552CF5894E9FDFF812A59_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* V_0 = NULL;
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
|
|
Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
|
|
if (L_2)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, AggregateException__ctor_mB5494082EA3D88AA1F6552CF5894E9FDFF812A59_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL);
|
|
NullCheck(L_4);
|
|
RuntimeObject * L_7 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_4, _stringLiteralDED869EF491FCACB00F4A7F3129E19FBF775198F, L_6, /*hidden argument*/NULL);
|
|
V_0 = ((ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*)IsInst((RuntimeObject*)L_7, ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_il2cpp_TypeInfo_var));
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_8 = V_0;
|
|
if (L_8)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral5C9A97955BFC51EEBBD22773B2E41E121FB12054, /*hidden argument*/NULL);
|
|
SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_10 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var);
|
|
SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_10, L_9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, AggregateException__ctor_mB5494082EA3D88AA1F6552CF5894E9FDFF812A59_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_11 = V_0;
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_12 = (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 *)il2cpp_codegen_object_new(ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8_il2cpp_TypeInfo_var);
|
|
ReadOnlyCollection_1__ctor_mB9A088773123898D26251D041368C0E6FB692670(L_12, (RuntimeObject*)(RuntimeObject*)L_11, /*hidden argument*/ReadOnlyCollection_1__ctor_mB9A088773123898D26251D041368C0E6FB692670_RuntimeMethod_var);
|
|
__this->set_m_innerExceptions_17(L_12);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AggregateException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException_GetObjectData_mE8EEEDDC03DC396A630B39C345EE93D47D4C7D49 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException_GetObjectData_mE8EEEDDC03DC396A630B39C345EE93D47D4C7D49_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* V_0 = NULL;
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, AggregateException_GetObjectData_mE8EEEDDC03DC396A630B39C345EE93D47D4C7D49_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_3 = ___context1;
|
|
Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6(__this, L_2, L_3, /*hidden argument*/NULL);
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_4 = __this->get_m_innerExceptions_17();
|
|
NullCheck(L_4);
|
|
int32_t L_5 = ReadOnlyCollection_1_get_Count_mB2DF762E7070C9FA49BA2CEB86F0AE5A93261B41(L_4, /*hidden argument*/ReadOnlyCollection_1_get_Count_mB2DF762E7070C9FA49BA2CEB86F0AE5A93261B41_RuntimeMethod_var);
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_6 = (ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*)(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*)SZArrayNew(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_il2cpp_TypeInfo_var, (uint32_t)L_5);
|
|
V_0 = L_6;
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_7 = __this->get_m_innerExceptions_17();
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_8 = V_0;
|
|
NullCheck(L_7);
|
|
ReadOnlyCollection_1_CopyTo_m91DC1D7BF73E649EE2CFB6BA1BC936284D918C01(L_7, L_8, 0, /*hidden argument*/ReadOnlyCollection_1_CopyTo_m91DC1D7BF73E649EE2CFB6BA1BC936284D918C01_RuntimeMethod_var);
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_9 = ___info0;
|
|
ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_10 = V_0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
|
|
NullCheck(L_9);
|
|
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_9, _stringLiteralDED869EF491FCACB00F4A7F3129E19FBF775198F, (RuntimeObject *)(RuntimeObject *)L_10, L_12, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> System.AggregateException::get_InnerExceptions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * AggregateException_get_InnerExceptions_mB81D2B3BD56A3E938B83B0AF766474ED66057040 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_0 = __this->get_m_innerExceptions_17();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.AggregateException System.AggregateException::Flatten()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * AggregateException_Flatten_mDA4D8AD18CD6E4E13B69A3CDC8F341D825AFE05C (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException_Flatten_mDA4D8AD18CD6E4E13B69A3CDC8F341D825AFE05C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A * V_0 = NULL;
|
|
List_1_t20A8118F137937C08C81821D3462043030E1A597 * V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
RuntimeObject* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
Exception_t * V_5 = NULL;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * V_6 = NULL;
|
|
{
|
|
List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A * L_0 = (List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A *)il2cpp_codegen_object_new(List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m3CA9F30DC986E649F8E82AD69F5085D355D91AC1(L_0, /*hidden argument*/List_1__ctor_m3CA9F30DC986E649F8E82AD69F5085D355D91AC1_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
List_1_t20A8118F137937C08C81821D3462043030E1A597 * L_1 = (List_1_t20A8118F137937C08C81821D3462043030E1A597 *)il2cpp_codegen_object_new(List_1_t20A8118F137937C08C81821D3462043030E1A597_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m50C4D0E0ACA8B2A3097BAFB0C73EAC7FB0D8DFD3(L_1, /*hidden argument*/List_1__ctor_m50C4D0E0ACA8B2A3097BAFB0C73EAC7FB0D8DFD3_RuntimeMethod_var);
|
|
V_1 = L_1;
|
|
List_1_t20A8118F137937C08C81821D3462043030E1A597 * L_2 = V_1;
|
|
NullCheck(L_2);
|
|
List_1_Add_mD80C2D50024919C5BD8CAB33C0C226532B707449(L_2, __this, /*hidden argument*/List_1_Add_mD80C2D50024919C5BD8CAB33C0C226532B707449_RuntimeMethod_var);
|
|
V_2 = 0;
|
|
goto IL_006a;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
List_1_t20A8118F137937C08C81821D3462043030E1A597 * L_3 = V_1;
|
|
int32_t L_4 = V_2;
|
|
int32_t L_5 = L_4;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
|
|
NullCheck(L_3);
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_6 = List_1_get_Item_m472ACECB3C087B001D859E7FEA999C3E37F3CDD5_inline(L_3, L_5, /*hidden argument*/List_1_get_Item_m472ACECB3C087B001D859E7FEA999C3E37F3CDD5_RuntimeMethod_var);
|
|
NullCheck(L_6);
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_7 = AggregateException_get_InnerExceptions_mB81D2B3BD56A3E938B83B0AF766474ED66057040_inline(L_6, /*hidden argument*/NULL);
|
|
V_3 = (RuntimeObject*)L_7;
|
|
V_4 = 0;
|
|
goto IL_0060;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
RuntimeObject* L_8 = V_3;
|
|
int32_t L_9 = V_4;
|
|
NullCheck(L_8);
|
|
Exception_t * L_10 = InterfaceFuncInvoker1< Exception_t *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Exception>::get_Item(System.Int32) */, IList_1_t79A79A556E69BA20A09771D2D61B0440B6F4EFBA_il2cpp_TypeInfo_var, L_8, L_9);
|
|
V_5 = L_10;
|
|
Exception_t * L_11 = V_5;
|
|
if (!L_11)
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
Exception_t * L_12 = V_5;
|
|
V_6 = ((AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E *)IsInstClass((RuntimeObject*)L_12, AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E_il2cpp_TypeInfo_var));
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_13 = V_6;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
List_1_t20A8118F137937C08C81821D3462043030E1A597 * L_14 = V_1;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_15 = V_6;
|
|
NullCheck(L_14);
|
|
List_1_Add_mD80C2D50024919C5BD8CAB33C0C226532B707449(L_14, L_15, /*hidden argument*/List_1_Add_mD80C2D50024919C5BD8CAB33C0C226532B707449_RuntimeMethod_var);
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A * L_16 = V_0;
|
|
Exception_t * L_17 = V_5;
|
|
NullCheck(L_16);
|
|
List_1_Add_mC1DAEB8B35E60391E3F8D536FA6B91F9B331DABC(L_16, L_17, /*hidden argument*/List_1_Add_mC1DAEB8B35E60391E3F8D536FA6B91F9B331DABC_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
int32_t L_18 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
int32_t L_19 = V_4;
|
|
RuntimeObject* L_20 = V_3;
|
|
NullCheck(L_20);
|
|
int32_t L_21 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Exception>::get_Count() */, ICollection_1_t369F219933FB866C23070CD9749538883440F044_il2cpp_TypeInfo_var, L_20);
|
|
if ((((int32_t)L_19) < ((int32_t)L_21)))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
List_1_t20A8118F137937C08C81821D3462043030E1A597 * L_22 = V_1;
|
|
NullCheck(L_22);
|
|
int32_t L_23 = List_1_get_Count_m0BE132E4507E26AD7ACA5D0589C71A6F8F4D924E_inline(L_22, /*hidden argument*/List_1_get_Count_m0BE132E4507E26AD7ACA5D0589C71A6F8F4D924E_RuntimeMethod_var);
|
|
int32_t L_24 = V_2;
|
|
if ((((int32_t)L_23) > ((int32_t)L_24)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_25 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, __this);
|
|
List_1_t864E43C85FFFD16A2A0685F30AC877138E106F2A * L_26 = V_0;
|
|
AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_27 = (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E *)il2cpp_codegen_object_new(AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E_il2cpp_TypeInfo_var);
|
|
AggregateException__ctor_m3CBEB65087C05AB23CEE39CF67D35CFE1D657CB4(L_27, L_25, L_26, /*hidden argument*/NULL);
|
|
return L_27;
|
|
}
|
|
}
|
|
// System.String System.AggregateException::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AggregateException_ToString_m44BC17B24274C52DD53286526922CC3DF4AC9A00 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AggregateException_ToString_m44BC17B24274C52DD53286526922CC3DF4AC9A00_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
String_t* L_0 = Exception_ToString_m403BC2DBD48C830789D6270B4E917AB2D5E88183(__this, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
V_1 = 0;
|
|
goto IL_0063;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralA432C78D14FC7A1B3BDE79A64E5D1C1BEF3C1BC7, /*hidden argument*/NULL);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3;
|
|
String_t* L_5 = V_0;
|
|
NullCheck(L_4);
|
|
ArrayElementTypeCheck (L_4, L_5);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_4;
|
|
String_t* L_7 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
|
|
NullCheck(L_6);
|
|
ArrayElementTypeCheck (L_6, L_7);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_7);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_6;
|
|
int32_t L_9 = V_1;
|
|
int32_t L_10 = L_9;
|
|
RuntimeObject * L_11 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_10);
|
|
NullCheck(L_8);
|
|
ArrayElementTypeCheck (L_8, L_11);
|
|
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_11);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = L_8;
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_13 = __this->get_m_innerExceptions_17();
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Exception_t * L_15 = ReadOnlyCollection_1_get_Item_mFD009BA0F3153526E49D9E99C0C9CF88D9F9EA2C(L_13, L_14, /*hidden argument*/ReadOnlyCollection_1_get_Item_mFD009BA0F3153526E49D9E99C0C9CF88D9F9EA2C_RuntimeMethod_var);
|
|
NullCheck(L_15);
|
|
String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
|
|
NullCheck(L_12);
|
|
ArrayElementTypeCheck (L_12, L_16);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_16);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_12;
|
|
NullCheck(L_17);
|
|
ArrayElementTypeCheck (L_17, _stringLiteralA106AEA5D57A8C79C633AC36B1863D2F42911472);
|
|
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteralA106AEA5D57A8C79C633AC36B1863D2F42911472);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_17;
|
|
String_t* L_19 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
|
|
NullCheck(L_18);
|
|
ArrayElementTypeCheck (L_18, L_19);
|
|
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_19);
|
|
String_t* L_20 = String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD(L_1, L_2, L_18, /*hidden argument*/NULL);
|
|
V_0 = L_20;
|
|
int32_t L_21 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_22 = V_1;
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_23 = __this->get_m_innerExceptions_17();
|
|
NullCheck(L_23);
|
|
int32_t L_24 = ReadOnlyCollection_1_get_Count_mB2DF762E7070C9FA49BA2CEB86F0AE5A93261B41(L_23, /*hidden argument*/ReadOnlyCollection_1_get_Count_mB2DF762E7070C9FA49BA2CEB86F0AE5A93261B41_RuntimeMethod_var);
|
|
if ((((int32_t)L_22) < ((int32_t)L_24)))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_25 = V_0;
|
|
return L_25;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Conversion methods for marshalling of: System.AppDomain
|
|
IL2CPP_EXTERN_C void AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshal_pinvoke(const AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8& unmarshaled, AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___compatibility_switch_23Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'compatibility_switch' of type 'AppDomain'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___compatibility_switch_23Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshal_pinvoke_back(const AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_pinvoke& marshaled, AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8& unmarshaled)
|
|
{
|
|
Exception_t* ___compatibility_switch_23Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'compatibility_switch' of type 'AppDomain'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___compatibility_switch_23Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.AppDomain
|
|
IL2CPP_EXTERN_C void AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshal_pinvoke_cleanup(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: System.AppDomain
|
|
IL2CPP_EXTERN_C void AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshal_com(const AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8& unmarshaled, AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___compatibility_switch_23Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'compatibility_switch' of type 'AppDomain'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___compatibility_switch_23Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshal_com_back(const AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_com& marshaled, AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8& unmarshaled)
|
|
{
|
|
Exception_t* ___compatibility_switch_23Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'compatibility_switch' of type 'AppDomain'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___compatibility_switch_23Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.AppDomain
|
|
IL2CPP_EXTERN_C void AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshal_com_cleanup(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void System.AppDomain::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain__ctor_m737716693DB20A77BE68C4778636161FFF50DACB (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.AppDomainSetup System.AppDomain::getSetup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * AppDomain_getSetup_mAC7D1DDD81CBCA9E1F234A64BE6718EC673509FA (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method)
|
|
{
|
|
typedef AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * (*AppDomain_getSetup_mAC7D1DDD81CBCA9E1F234A64BE6718EC673509FA_ftn) (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 *);
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_getSetup_mAC7D1DDD81CBCA9E1F234A64BE6718EC673509FA_ftn)mscorlib::System::AppDomain::getSetup) (__this);
|
|
}
|
|
// System.AppDomainSetup System.AppDomain::get_SetupInformation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * AppDomain_get_SetupInformation_m0D54A56359F4CB4EB20A40B9C8212C67000D9BB8 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_get_SetupInformation_m0D54A56359F4CB4EB20A40B9C8212C67000D9BB8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_0 = AppDomain_getSetup_mAC7D1DDD81CBCA9E1F234A64BE6718EC673509FA(__this, /*hidden argument*/NULL);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_1 = (AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 *)il2cpp_codegen_object_new(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_il2cpp_TypeInfo_var);
|
|
AppDomainSetup__ctor_m5DC21E2AA507414DB813606F4519DE8F16019941(L_1, L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.String System.AppDomain::getFriendlyName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomain_getFriendlyName_mDCD770AC4B3A0E65C913D412D4EEE4CF38D1D656 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method)
|
|
{
|
|
typedef String_t* (*AppDomain_getFriendlyName_mDCD770AC4B3A0E65C913D412D4EEE4CF38D1D656_ftn) (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 *);
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_getFriendlyName_mDCD770AC4B3A0E65C913D412D4EEE4CF38D1D656_ftn)mscorlib::System::AppDomain::getFriendlyName) (__this);
|
|
}
|
|
// System.AppDomain System.AppDomain::getCurDomain()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * AppDomain_getCurDomain_mD7B43429B7B7D7AE59D29F5394B870C170EF53CC (const RuntimeMethod* method)
|
|
{
|
|
typedef AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * (*AppDomain_getCurDomain_mD7B43429B7B7D7AE59D29F5394B870C170EF53CC_ftn) ();
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_getCurDomain_mD7B43429B7B7D7AE59D29F5394B870C170EF53CC_ftn)mscorlib::System::AppDomain::getCurDomain) ();
|
|
}
|
|
// System.AppDomain System.AppDomain::get_CurrentDomain()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * L_0 = AppDomain_getCurDomain_mD7B43429B7B7D7AE59D29F5394B870C170EF53CC(/*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Reflection.Assembly[] System.AppDomain::GetAssemblies(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* AppDomain_GetAssemblies_m67CCC578A7586632778C0AF4B70C0C3576C4A2C1 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, bool ___refOnly0, const RuntimeMethod* method)
|
|
{
|
|
typedef AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* (*AppDomain_GetAssemblies_m67CCC578A7586632778C0AF4B70C0C3576C4A2C1_ftn) (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 *, bool);
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_GetAssemblies_m67CCC578A7586632778C0AF4B70C0C3576C4A2C1_ftn)mscorlib::System::AppDomain::GetAssemblies) (__this, ___refOnly0);
|
|
}
|
|
// System.Reflection.Assembly[] System.AppDomain::GetAssemblies()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* AppDomain_GetAssemblies_mF1A63ADFC80562168DF846017BB72CAB09298A23 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* L_0 = AppDomain_GetAssemblies_m67CCC578A7586632778C0AF4B70C0C3576C4A2C1(__this, (bool)0, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.AppDomain::GetData(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AppDomain_GetData_mD6C34853507A96159BB1A7773C65E8B21DBC7250 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, String_t* ___name0, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject * (*AppDomain_GetData_mD6C34853507A96159BB1A7773C65E8B21DBC7250_ftn) (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 *, String_t*);
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_GetData_mD6C34853507A96159BB1A7773C65E8B21DBC7250_ftn)mscorlib::System::AppDomain::GetData) (__this, ___name0);
|
|
}
|
|
// System.Object System.AppDomain::InitializeLifetimeService()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AppDomain_InitializeLifetimeService_m05B608CD854DBFB1FD8919E2B2F0F93EAFF5B8CD (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return NULL;
|
|
}
|
|
}
|
|
// System.Reflection.Assembly System.AppDomain::LoadAssembly(System.String,System.Security.Policy.Evidence,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_LoadAssembly_m8A7909CB55592A407D523DDDDB3677C191F1D8B9 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, String_t* ___assemblyRef0, Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 * ___securityEvidence1, bool ___refOnly2, const RuntimeMethod* method)
|
|
{
|
|
typedef Assembly_t * (*AppDomain_LoadAssembly_m8A7909CB55592A407D523DDDDB3677C191F1D8B9_ftn) (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 *, String_t*, Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 *, bool);
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_LoadAssembly_m8A7909CB55592A407D523DDDDB3677C191F1D8B9_ftn)mscorlib::System::AppDomain::LoadAssembly) (__this, ___assemblyRef0, ___securityEvidence1, ___refOnly2);
|
|
}
|
|
// System.Reflection.Assembly System.AppDomain::Load(System.Reflection.AssemblyName)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_Load_m39D84267758565A26CF4CC1C8E55CFF1B8A63513 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * ___assemblyRef0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_0 = ___assemblyRef0;
|
|
Assembly_t * L_1 = AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90(__this, L_0, (Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 *)NULL, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Reflection.Assembly System.AppDomain::LoadSatellite(System.Reflection.AssemblyName,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_LoadSatellite_m4DE403FF997A067CB65EFFE5B21CA2673D311014 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * ___assemblyRef0, bool ___throwOnError1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_LoadSatellite_m4DE403FF997A067CB65EFFE5B21CA2673D311014_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Assembly_t * G_B4_0 = NULL;
|
|
Assembly_t * G_B3_0 = NULL;
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_0 = ___assemblyRef0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral77494FE9A9AD11E89159CF33BF47DC80CF780861, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, AppDomain_LoadSatellite_m4DE403FF997A067CB65EFFE5B21CA2673D311014_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_2 = ___assemblyRef0;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = AssemblyName_get_FullName_m2E26108B8002BA0579FB223426E085BC9014A212(L_2, /*hidden argument*/NULL);
|
|
Assembly_t * L_4 = AppDomain_LoadAssembly_m8A7909CB55592A407D523DDDDB3677C191F1D8B9(__this, L_3, (Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 *)NULL, (bool)0, /*hidden argument*/NULL);
|
|
Assembly_t * L_5 = L_4;
|
|
bool L_6 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_5, (Assembly_t *)NULL, /*hidden argument*/NULL);
|
|
bool L_7 = ___throwOnError1;
|
|
G_B3_0 = L_5;
|
|
if (!((int32_t)((int32_t)L_6&(int32_t)L_7)))
|
|
{
|
|
G_B4_0 = L_5;
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_8 = ___assemblyRef0;
|
|
NullCheck(L_8);
|
|
String_t* L_9 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_8, /*hidden argument*/NULL);
|
|
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_10 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
|
|
FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98(L_10, (String_t*)NULL, L_9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, AppDomain_LoadSatellite_m4DE403FF997A067CB65EFFE5B21CA2673D311014_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return G_B4_0;
|
|
}
|
|
}
|
|
// System.Reflection.Assembly System.AppDomain::Load(System.Reflection.AssemblyName,System.Security.Policy.Evidence)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * ___assemblyRef0, Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 * ___assemblySecurity1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Assembly_t * V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * V_2 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_0 = ___assemblyRef0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral77494FE9A9AD11E89159CF33BF47DC80CF780861, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_2 = ___assemblyRef0;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_2, /*hidden argument*/NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_4 = ___assemblyRef0;
|
|
NullCheck(L_4);
|
|
String_t* L_5 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_4, /*hidden argument*/NULL);
|
|
NullCheck(L_5);
|
|
int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_7 = ___assemblyRef0;
|
|
NullCheck(L_7);
|
|
String_t* L_8 = AssemblyName_get_CodeBase_m65BC5F88190889886BC43A513CAC59A69FFAAD5F_inline(L_7, /*hidden argument*/NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_9 = ___assemblyRef0;
|
|
NullCheck(L_9);
|
|
String_t* L_10 = AssemblyName_get_CodeBase_m65BC5F88190889886BC43A513CAC59A69FFAAD5F_inline(L_9, /*hidden argument*/NULL);
|
|
Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 * L_11 = ___assemblySecurity1;
|
|
Assembly_t * L_12 = Assembly_LoadFrom_mD87CF84452C10969503E0ADC5E2A7F68F0B53E41(L_10, L_11, /*hidden argument*/NULL);
|
|
return L_12;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
String_t* L_13 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralBF8FD5B96929EA5544636F39438224A44EB8EDB2, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_14, L_13, _stringLiteral77494FE9A9AD11E89159CF33BF47DC80CF780861, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_15 = ___assemblyRef0;
|
|
NullCheck(L_15);
|
|
String_t* L_16 = AssemblyName_get_FullName_m2E26108B8002BA0579FB223426E085BC9014A212(L_15, /*hidden argument*/NULL);
|
|
Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 * L_17 = ___assemblySecurity1;
|
|
Assembly_t * L_18 = AppDomain_LoadAssembly_m8A7909CB55592A407D523DDDDB3677C191F1D8B9(__this, L_16, L_17, (bool)0, /*hidden argument*/NULL);
|
|
V_0 = L_18;
|
|
Assembly_t * L_19 = V_0;
|
|
bool L_20 = Assembly_op_Inequality_m6949ED5777CC2840BF1EBD907C35A20E25F22F7B(L_19, (Assembly_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_20)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
Assembly_t * L_21 = V_0;
|
|
return L_21;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_22 = ___assemblyRef0;
|
|
NullCheck(L_22);
|
|
String_t* L_23 = AssemblyName_get_CodeBase_m65BC5F88190889886BC43A513CAC59A69FFAAD5F_inline(L_22, /*hidden argument*/NULL);
|
|
if (L_23)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_24 = ___assemblyRef0;
|
|
NullCheck(L_24);
|
|
String_t* L_25 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_24, /*hidden argument*/NULL);
|
|
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_26 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
|
|
FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98(L_26, (String_t*)NULL, L_25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_27 = ___assemblyRef0;
|
|
NullCheck(L_27);
|
|
String_t* L_28 = AssemblyName_get_CodeBase_m65BC5F88190889886BC43A513CAC59A69FFAAD5F_inline(L_27, /*hidden argument*/NULL);
|
|
V_1 = L_28;
|
|
String_t* L_29 = V_1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_30 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
NullCheck(L_29);
|
|
String_t* L_31 = String_ToLower_m91732DBE4AE31B77EA3BB2C185E66513919968A5(L_29, L_30, /*hidden argument*/NULL);
|
|
NullCheck(L_31);
|
|
bool L_32 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_31, _stringLiteralA91E4897CA9F429677AFC57ED00D90DE8D3C7001, /*hidden argument*/NULL);
|
|
if (!L_32)
|
|
{
|
|
goto IL_00a6;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_33 = V_1;
|
|
Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D * L_34 = (Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D *)il2cpp_codegen_object_new(Uri_tBF86FE962EBD560E4C007F361656544D2CFEE69D_il2cpp_TypeInfo_var);
|
|
Uri__ctor_m5BAA5AABA499ACB5D2B3F1CDB09486E463400D25(L_34, L_33, /*hidden argument*/NULL);
|
|
NullCheck(L_34);
|
|
String_t* L_35 = Uri_get_LocalPath_m1BC64ADB93E8AF361D6F3876881C41272ABEB170(L_34, /*hidden argument*/NULL);
|
|
V_1 = L_35;
|
|
}
|
|
|
|
IL_00a6:
|
|
{
|
|
}
|
|
|
|
IL_00a7:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
String_t* L_36 = V_1;
|
|
Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 * L_37 = ___assemblySecurity1;
|
|
Assembly_t * L_38 = Assembly_LoadFrom_mD87CF84452C10969503E0ADC5E2A7F68F0B53E41(L_36, L_37, /*hidden argument*/NULL);
|
|
V_0 = L_38;
|
|
goto IL_00bf;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_00b1;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00b1:
|
|
{ // begin catch(System.Object)
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_39 = ___assemblyRef0;
|
|
NullCheck(L_39);
|
|
String_t* L_40 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_39, /*hidden argument*/NULL);
|
|
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_41 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
|
|
FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98(L_41, (String_t*)NULL, L_40, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_41, AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
IL_00bf:
|
|
{
|
|
Assembly_t * L_42 = V_0;
|
|
NullCheck(L_42);
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_43 = VirtFuncInvoker0< AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * >::Invoke(20 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName() */, L_42);
|
|
V_2 = L_43;
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_44 = ___assemblyRef0;
|
|
NullCheck(L_44);
|
|
String_t* L_45 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_44, /*hidden argument*/NULL);
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_46 = V_2;
|
|
NullCheck(L_46);
|
|
String_t* L_47 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_46, /*hidden argument*/NULL);
|
|
bool L_48 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_45, L_47, /*hidden argument*/NULL);
|
|
if (!L_48)
|
|
{
|
|
goto IL_00e6;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_49 = ___assemblyRef0;
|
|
NullCheck(L_49);
|
|
String_t* L_50 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_49, /*hidden argument*/NULL);
|
|
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_51 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
|
|
FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98(L_51, (String_t*)NULL, L_50, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_51, AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00e6:
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_52 = ___assemblyRef0;
|
|
NullCheck(L_52);
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_53 = AssemblyName_get_Version_m82317447EFD059F46EA783D92CD7AE653AA81D47_inline(L_52, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_il2cpp_TypeInfo_var);
|
|
bool L_54 = Version_op_Inequality_mBF83F266057D2C028BA2F423372DA7E738B25CD0(L_53, (Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD *)NULL, /*hidden argument*/NULL);
|
|
if (!L_54)
|
|
{
|
|
goto IL_012a;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_55 = ___assemblyRef0;
|
|
NullCheck(L_55);
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_56 = AssemblyName_get_Version_m82317447EFD059F46EA783D92CD7AE653AA81D47_inline(L_55, /*hidden argument*/NULL);
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_57 = (Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD *)il2cpp_codegen_object_new(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_il2cpp_TypeInfo_var);
|
|
Version__ctor_mFA5AABF2294D59FA7B3F32BB48CB238BCACBDF80(L_57, 0, 0, 0, 0, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_il2cpp_TypeInfo_var);
|
|
bool L_58 = Version_op_Inequality_mBF83F266057D2C028BA2F423372DA7E738B25CD0(L_56, L_57, /*hidden argument*/NULL);
|
|
if (!L_58)
|
|
{
|
|
goto IL_012a;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_59 = ___assemblyRef0;
|
|
NullCheck(L_59);
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_60 = AssemblyName_get_Version_m82317447EFD059F46EA783D92CD7AE653AA81D47_inline(L_59, /*hidden argument*/NULL);
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_61 = V_2;
|
|
NullCheck(L_61);
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_62 = AssemblyName_get_Version_m82317447EFD059F46EA783D92CD7AE653AA81D47_inline(L_61, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_il2cpp_TypeInfo_var);
|
|
bool L_63 = Version_op_Inequality_mBF83F266057D2C028BA2F423372DA7E738B25CD0(L_60, L_62, /*hidden argument*/NULL);
|
|
if (!L_63)
|
|
{
|
|
goto IL_012a;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_64 = ___assemblyRef0;
|
|
NullCheck(L_64);
|
|
String_t* L_65 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_64, /*hidden argument*/NULL);
|
|
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_66 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
|
|
FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98(L_66, (String_t*)NULL, L_65, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66, AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_012a:
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_67 = ___assemblyRef0;
|
|
NullCheck(L_67);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_68 = AssemblyName_get_CultureInfo_m611D937A0D0CAEFCAA2F4BCCE7BA936A61A4F6D1_inline(L_67, /*hidden argument*/NULL);
|
|
if (!L_68)
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_69 = ___assemblyRef0;
|
|
NullCheck(L_69);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_70 = AssemblyName_get_CultureInfo_m611D937A0D0CAEFCAA2F4BCCE7BA936A61A4F6D1_inline(L_69, /*hidden argument*/NULL);
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_71 = V_2;
|
|
NullCheck(L_70);
|
|
bool L_72 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_70, L_71);
|
|
if (!L_72)
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_73 = ___assemblyRef0;
|
|
NullCheck(L_73);
|
|
String_t* L_74 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_73, /*hidden argument*/NULL);
|
|
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_75 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
|
|
FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98(L_75, (String_t*)NULL, L_74, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_75, AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_014d:
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_76 = ___assemblyRef0;
|
|
NullCheck(L_76);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_77 = AssemblyName_GetPublicKeyToken_mE19B825DA45B1A3310CC59C06F50976EF4C6B1B0(L_76, /*hidden argument*/NULL);
|
|
V_3 = L_77;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_78 = V_3;
|
|
if (!L_78)
|
|
{
|
|
goto IL_01a9;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_79 = V_3;
|
|
NullCheck(L_79);
|
|
if (!(((RuntimeArray*)L_79)->max_length))
|
|
{
|
|
goto IL_01a9;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_80 = V_2;
|
|
NullCheck(L_80);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_81 = AssemblyName_GetPublicKeyToken_mE19B825DA45B1A3310CC59C06F50976EF4C6B1B0(L_80, /*hidden argument*/NULL);
|
|
V_4 = L_81;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_82 = V_4;
|
|
if (!L_82)
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_83 = V_3;
|
|
NullCheck(L_83);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_84 = V_4;
|
|
NullCheck(L_84);
|
|
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_83)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_84)->max_length)))))))
|
|
{
|
|
goto IL_017d;
|
|
}
|
|
}
|
|
|
|
IL_0170:
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_85 = ___assemblyRef0;
|
|
NullCheck(L_85);
|
|
String_t* L_86 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_85, /*hidden argument*/NULL);
|
|
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_87 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
|
|
FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98(L_87, (String_t*)NULL, L_86, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_87, AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_017d:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_88 = V_3;
|
|
NullCheck(L_88);
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_88)->max_length)))), (int32_t)1));
|
|
goto IL_01a4;
|
|
}
|
|
|
|
IL_0186:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_89 = V_4;
|
|
int32_t L_90 = V_5;
|
|
NullCheck(L_89);
|
|
int32_t L_91 = L_90;
|
|
uint8_t L_92 = (L_89)->GetAt(static_cast<il2cpp_array_size_t>(L_91));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_93 = V_3;
|
|
int32_t L_94 = V_5;
|
|
NullCheck(L_93);
|
|
int32_t L_95 = L_94;
|
|
uint8_t L_96 = (L_93)->GetAt(static_cast<il2cpp_array_size_t>(L_95));
|
|
if ((((int32_t)L_92) == ((int32_t)L_96)))
|
|
{
|
|
goto IL_019e;
|
|
}
|
|
}
|
|
{
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_97 = ___assemblyRef0;
|
|
NullCheck(L_97);
|
|
String_t* L_98 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_97, /*hidden argument*/NULL);
|
|
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_99 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
|
|
FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98(L_99, (String_t*)NULL, L_98, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_99, AppDomain_Load_m3CD5816519056A767880AF8412685CA276AD6F90_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_019e:
|
|
{
|
|
int32_t L_100 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_100, (int32_t)1));
|
|
}
|
|
|
|
IL_01a4:
|
|
{
|
|
int32_t L_101 = V_5;
|
|
if ((((int32_t)L_101) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0186;
|
|
}
|
|
}
|
|
|
|
IL_01a9:
|
|
{
|
|
Assembly_t * L_102 = V_0;
|
|
return L_102;
|
|
}
|
|
}
|
|
// System.Reflection.Assembly System.AppDomain::Load(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_Load_m4349B851A1474F6F5D57A730DDFD5A8F9A291AD5 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, String_t* ___assemblyString0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___assemblyString0;
|
|
Assembly_t * L_1 = AppDomain_Load_mA402057C7C1056F7186F6EDD5CAF6905F156E979(__this, L_0, (Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 *)NULL, (bool)0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Reflection.Assembly System.AppDomain::Load(System.String,System.Security.Policy.Evidence,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_Load_mA402057C7C1056F7186F6EDD5CAF6905F156E979 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, String_t* ___assemblyString0, Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 * ___assemblySecurity1, bool ___refonly2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_Load_mA402057C7C1056F7186F6EDD5CAF6905F156E979_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Assembly_t * G_B6_0 = NULL;
|
|
Assembly_t * G_B5_0 = NULL;
|
|
{
|
|
String_t* L_0 = ___assemblyString0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralBE6A67E84CAA1665C0880EF5F65106EEAB8F7A35, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, AppDomain_Load_mA402057C7C1056F7186F6EDD5CAF6905F156E979_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
String_t* L_2 = ___assemblyString0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, _stringLiteral5268DBA3C26A42480B753E028AA044C841CD5A25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, AppDomain_Load_mA402057C7C1056F7186F6EDD5CAF6905F156E979_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
String_t* L_5 = ___assemblyString0;
|
|
Evidence_t58C8D73D9B4FC7DD3BDDEE37E3C283678BFDC307 * L_6 = ___assemblySecurity1;
|
|
bool L_7 = ___refonly2;
|
|
Assembly_t * L_8 = AppDomain_LoadAssembly_m8A7909CB55592A407D523DDDDB3677C191F1D8B9(__this, L_5, L_6, L_7, /*hidden argument*/NULL);
|
|
Assembly_t * L_9 = L_8;
|
|
bool L_10 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_9, (Assembly_t *)NULL, /*hidden argument*/NULL);
|
|
G_B5_0 = L_9;
|
|
if (!L_10)
|
|
{
|
|
G_B6_0 = L_9;
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_11 = ___assemblyString0;
|
|
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_12 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
|
|
FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98(L_12, (String_t*)NULL, L_11, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, AppDomain_Load_mA402057C7C1056F7186F6EDD5CAF6905F156E979_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
return G_B6_0;
|
|
}
|
|
}
|
|
// System.AppDomain System.AppDomain::InternalSetDomainByID(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * AppDomain_InternalSetDomainByID_m3832F4BB8C1CE9195F40E84DF7AD3303B8F33418 (int32_t ___domain_id0, const RuntimeMethod* method)
|
|
{
|
|
typedef AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * (*AppDomain_InternalSetDomainByID_m3832F4BB8C1CE9195F40E84DF7AD3303B8F33418_ftn) (int32_t);
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_InternalSetDomainByID_m3832F4BB8C1CE9195F40E84DF7AD3303B8F33418_ftn)mscorlib::System::AppDomain::InternalSetDomainByID) (___domain_id0);
|
|
}
|
|
// System.AppDomain System.AppDomain::InternalSetDomain(System.AppDomain)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * AppDomain_InternalSetDomain_m27029EDC56728C03386AC87097BAD176280AD60C (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * ___context0, const RuntimeMethod* method)
|
|
{
|
|
typedef AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * (*AppDomain_InternalSetDomain_m27029EDC56728C03386AC87097BAD176280AD60C_ftn) (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 *);
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_InternalSetDomain_m27029EDC56728C03386AC87097BAD176280AD60C_ftn)mscorlib::System::AppDomain::InternalSetDomain) (___context0);
|
|
}
|
|
// System.Void System.AppDomain::InternalPushDomainRefByID(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_InternalPushDomainRefByID_m53B4A0D48C96D0045A69FFF2B510937B46F62D75 (int32_t ___domain_id0, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*AppDomain_InternalPushDomainRefByID_m53B4A0D48C96D0045A69FFF2B510937B46F62D75_ftn) (int32_t);
|
|
using namespace il2cpp::icalls;
|
|
((AppDomain_InternalPushDomainRefByID_m53B4A0D48C96D0045A69FFF2B510937B46F62D75_ftn)mscorlib::System::AppDomain::InternalPushDomainRefByID) (___domain_id0);
|
|
}
|
|
// System.Void System.AppDomain::InternalPopDomainRef()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_InternalPopDomainRef_m2098DB1F4FAA4B1FFE5F1AF3BEB8E01CA9B70B34 (const RuntimeMethod* method)
|
|
{
|
|
typedef void (*AppDomain_InternalPopDomainRef_m2098DB1F4FAA4B1FFE5F1AF3BEB8E01CA9B70B34_ftn) ();
|
|
using namespace il2cpp::icalls;
|
|
((AppDomain_InternalPopDomainRef_m2098DB1F4FAA4B1FFE5F1AF3BEB8E01CA9B70B34_ftn)mscorlib::System::AppDomain::InternalPopDomainRef) ();
|
|
}
|
|
// System.Runtime.Remoting.Contexts.Context System.AppDomain::InternalSetContext(System.Runtime.Remoting.Contexts.Context)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * AppDomain_InternalSetContext_m37A1B8EC7FCF4AFF4B98A3ABD62076D3E96A3F43 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___context0, const RuntimeMethod* method)
|
|
{
|
|
typedef Context_tE86AB6B3D9759C8E715184808579EFE761683724 * (*AppDomain_InternalSetContext_m37A1B8EC7FCF4AFF4B98A3ABD62076D3E96A3F43_ftn) (Context_tE86AB6B3D9759C8E715184808579EFE761683724 *);
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_InternalSetContext_m37A1B8EC7FCF4AFF4B98A3ABD62076D3E96A3F43_ftn)mscorlib::System::AppDomain::InternalSetContext) (___context0);
|
|
}
|
|
// System.Runtime.Remoting.Contexts.Context System.AppDomain::InternalGetContext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * AppDomain_InternalGetContext_mAA54924C2DC3349E29D79D76403F803BD966031F (const RuntimeMethod* method)
|
|
{
|
|
typedef Context_tE86AB6B3D9759C8E715184808579EFE761683724 * (*AppDomain_InternalGetContext_mAA54924C2DC3349E29D79D76403F803BD966031F_ftn) ();
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_InternalGetContext_mAA54924C2DC3349E29D79D76403F803BD966031F_ftn)mscorlib::System::AppDomain::InternalGetContext) ();
|
|
}
|
|
// System.Runtime.Remoting.Contexts.Context System.AppDomain::InternalGetDefaultContext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * AppDomain_InternalGetDefaultContext_m1E1B382747D7755C1CC3647AEB3F6DD40EDB2B29 (const RuntimeMethod* method)
|
|
{
|
|
typedef Context_tE86AB6B3D9759C8E715184808579EFE761683724 * (*AppDomain_InternalGetDefaultContext_m1E1B382747D7755C1CC3647AEB3F6DD40EDB2B29_ftn) ();
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_InternalGetDefaultContext_m1E1B382747D7755C1CC3647AEB3F6DD40EDB2B29_ftn)mscorlib::System::AppDomain::InternalGetDefaultContext) ();
|
|
}
|
|
// System.String System.AppDomain::InternalGetProcessGuid(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomain_InternalGetProcessGuid_m0EC2D9329E2A03D68A86B3D8129599891C3035B1 (String_t* ___newguid0, const RuntimeMethod* method)
|
|
{
|
|
typedef String_t* (*AppDomain_InternalGetProcessGuid_m0EC2D9329E2A03D68A86B3D8129599891C3035B1_ftn) (String_t*);
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_InternalGetProcessGuid_m0EC2D9329E2A03D68A86B3D8129599891C3035B1_ftn)mscorlib::System::AppDomain::InternalGetProcessGuid) (___newguid0);
|
|
}
|
|
// System.Object System.AppDomain::InvokeInDomainByID(System.Int32,System.Reflection.MethodInfo,System.Object,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AppDomain_InvokeInDomainByID_mEA4AF64087DA8C757F8B499C9FA5E8A5AEEEE2CC (int32_t ___domain_id0, MethodInfo_t * ___method1, RuntimeObject * ___obj2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_InvokeInDomainByID_mEA4AF64087DA8C757F8B499C9FA5E8A5AEEEE2CC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * V_0 = NULL;
|
|
bool V_1 = false;
|
|
Exception_t * V_2 = NULL;
|
|
RuntimeObject * V_3 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
RuntimeObject * G_B3_0 = NULL;
|
|
RuntimeObject * G_B2_0 = NULL;
|
|
{
|
|
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * L_0 = AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0(/*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
|
|
IL_0008:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
int32_t L_1 = ___domain_id0;
|
|
AppDomain_InternalPushDomainRefByID_m53B4A0D48C96D0045A69FFF2B510937B46F62D75(L_1, /*hidden argument*/NULL);
|
|
V_1 = (bool)1;
|
|
int32_t L_2 = ___domain_id0;
|
|
AppDomain_InternalSetDomainByID_m3832F4BB8C1CE9195F40E84DF7AD3303B8F33418(L_2, /*hidden argument*/NULL);
|
|
MethodInfo_t * L_3 = ___method1;
|
|
RuntimeObject * L_4 = ___obj2;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___args3;
|
|
NullCheck(((MonoMethod_t *)CastclassClass((RuntimeObject*)L_3, MonoMethod_t_il2cpp_TypeInfo_var)));
|
|
RuntimeObject * L_6 = MonoMethod_InternalInvoke_mB9735487F3062332EFB3EC603138E72E6C8A7789(((MonoMethod_t *)CastclassClass((RuntimeObject*)L_3, MonoMethod_t_il2cpp_TypeInfo_var)), L_4, L_5, (Exception_t **)(&V_2), /*hidden argument*/NULL);
|
|
Exception_t * L_7 = V_2;
|
|
G_B2_0 = L_6;
|
|
if (!L_7)
|
|
{
|
|
G_B3_0 = L_6;
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
Exception_t * L_8 = V_2;
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, AppDomain_InvokeInDomainByID_mEA4AF64087DA8C757F8B499C9FA5E8A5AEEEE2CC_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
V_3 = G_B3_0;
|
|
IL2CPP_LEAVE(0x3E, FINALLY_002e);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_002e;
|
|
}
|
|
|
|
FINALLY_002e:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * L_9 = V_0;
|
|
AppDomain_InternalSetDomain_m27029EDC56728C03386AC87097BAD176280AD60C(L_9, /*hidden argument*/NULL);
|
|
bool L_10 = V_1;
|
|
if (!L_10)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
AppDomain_InternalPopDomainRef_m2098DB1F4FAA4B1FFE5F1AF3BEB8E01CA9B70B34(/*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
IL2CPP_END_FINALLY(46)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(46)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x3E, IL_003e)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
RuntimeObject * L_11 = V_3;
|
|
return L_11;
|
|
}
|
|
}
|
|
// System.String System.AppDomain::GetProcessGuid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomain_GetProcessGuid_mDAFFFAF5716D58A3C645D6033AD2F8FF95BE4315 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_GetProcessGuid_mDAFFFAF5716D58A3C645D6033AD2F8FF95BE4315_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Guid_t V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
String_t* L_0 = ((AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields*)il2cpp_codegen_static_fields_for(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_il2cpp_TypeInfo_var))->get__process_guid_2();
|
|
if (L_0)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
|
|
Guid_t L_1 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
String_t* L_2 = Guid_ToString_m3024AB4FA6189BC28BE77BBD6A9F55841FE190A5((Guid_t *)(&V_0), /*hidden argument*/NULL);
|
|
String_t* L_3 = AppDomain_InternalGetProcessGuid_m0EC2D9329E2A03D68A86B3D8129599891C3035B1(L_2, /*hidden argument*/NULL);
|
|
((AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields*)il2cpp_codegen_static_fields_for(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_il2cpp_TypeInfo_var))->set__process_guid_2(L_3);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
String_t* L_4 = ((AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields*)il2cpp_codegen_static_fields_for(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_il2cpp_TypeInfo_var))->get__process_guid_2();
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean System.AppDomain::InternalIsFinalizingForUnload(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AppDomain_InternalIsFinalizingForUnload_m24DF3F50873A8B84DB0148D61669A567B257D0E3 (int32_t ___domain_id0, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*AppDomain_InternalIsFinalizingForUnload_m24DF3F50873A8B84DB0148D61669A567B257D0E3_ftn) (int32_t);
|
|
using namespace il2cpp::icalls;
|
|
return ((AppDomain_InternalIsFinalizingForUnload_m24DF3F50873A8B84DB0148D61669A567B257D0E3_ftn)mscorlib::System::AppDomain::InternalIsFinalizingForUnload) (___domain_id0);
|
|
}
|
|
// System.Boolean System.AppDomain::IsFinalizingForUnload()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AppDomain_IsFinalizingForUnload_m1B3D0DA1C7AEA3D6FA5D7D52161B2FF52B2D9912 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = AppDomain_getDomainID_mFAB09294DFF3C2431057D033147582BA3B16A676(__this, /*hidden argument*/NULL);
|
|
bool L_1 = AppDomain_InternalIsFinalizingForUnload_m24DF3F50873A8B84DB0148D61669A567B257D0E3(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int32 System.AppDomain::getDomainID()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AppDomain_getDomainID_mFAB09294DFF3C2431057D033147582BA3B16A676 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Thread_GetDomainID_m7C6DEB9A3289C82B0B17F7234DCA9D2677731547(/*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.AppDomain::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomain_ToString_m2CE38054642884B7C5595B98FED2492734CD8BBC (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = AppDomain_getFriendlyName_mDCD770AC4B3A0E65C913D412D4EEE4CF38D1D656(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.AppDomain::DoAssemblyLoad(System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_DoAssemblyLoad_m67D809E0FE4AFDBCE859B5FDA10F9AF756EF0689 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, Assembly_t * ___assembly0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_DoAssemblyLoad_m67D809E0FE4AFDBCE859B5FDA10F9AF756EF0689_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * L_0 = __this->get_AssemblyLoad_11();
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * L_1 = __this->get_AssemblyLoad_11();
|
|
Assembly_t * L_2 = ___assembly0;
|
|
AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * L_3 = (AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *)il2cpp_codegen_object_new(AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8_il2cpp_TypeInfo_var);
|
|
AssemblyLoadEventArgs__ctor_m1F35C892F2C6D04A5792F741C905D13E163D60E8(L_3, L_2, /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
AssemblyLoadEventHandler_Invoke_m8F8FC0944BD880531B58755B35ACD61D7E980142(L_1, __this, L_3, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Reflection.Assembly System.AppDomain::DoAssemblyResolve(System.String,System.Reflection.Assembly,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_DoAssemblyResolve_mA87F0E9DDEB93F35E6EE41FCAF5F7AAE8B96BDF6 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, String_t* ___name0, Assembly_t * ___requestingAssembly1, bool ___refonly2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_DoAssemblyResolve_mA87F0E9DDEB93F35E6EE41FCAF5F7AAE8B96BDF6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * V_0 = NULL;
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * V_1 = NULL;
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
Assembly_t * V_4 = NULL;
|
|
Assembly_t * V_5 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
bool L_0 = ___refonly2;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * L_1 = __this->get_ReflectionOnlyAssemblyResolve_20();
|
|
V_0 = L_1;
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * L_2 = __this->get_AssemblyResolve_12();
|
|
V_0 = L_2;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * L_3 = V_0;
|
|
if (L_3)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
return (Assembly_t *)NULL;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
bool L_4 = ___refonly2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_5 = ((AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_il2cpp_TypeInfo_var))->get_assembly_resolve_in_progress_refonly_5();
|
|
V_1 = L_5;
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_6 = V_1;
|
|
if (L_6)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_7 = (Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA *)il2cpp_codegen_object_new(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_mCA7075EA6548A18B929368520217975094841997(L_7, /*hidden argument*/Dictionary_2__ctor_mCA7075EA6548A18B929368520217975094841997_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_8 = V_1;
|
|
((AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_il2cpp_TypeInfo_var))->set_assembly_resolve_in_progress_refonly_5(L_8);
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_9 = ((AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_il2cpp_TypeInfo_var))->get_assembly_resolve_in_progress_4();
|
|
V_1 = L_9;
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_10 = V_1;
|
|
if (L_10)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_11 = (Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA *)il2cpp_codegen_object_new(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_mCA7075EA6548A18B929368520217975094841997(L_11, /*hidden argument*/Dictionary_2__ctor_mCA7075EA6548A18B929368520217975094841997_RuntimeMethod_var);
|
|
V_1 = L_11;
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_12 = V_1;
|
|
((AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_il2cpp_TypeInfo_var))->set_assembly_resolve_in_progress_4(L_12);
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_13 = V_1;
|
|
String_t* L_14 = ___name0;
|
|
NullCheck(L_13);
|
|
bool L_15 = Dictionary_2_ContainsKey_mAD4B2095526B4742201B24C5ADF1717AFB15EF89(L_13, L_14, /*hidden argument*/Dictionary_2_ContainsKey_mAD4B2095526B4742201B24C5ADF1717AFB15EF89_RuntimeMethod_var);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
return (Assembly_t *)NULL;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_16 = V_1;
|
|
String_t* L_17 = ___name0;
|
|
NullCheck(L_16);
|
|
Dictionary_2_set_Item_mEA41AEAE79570A9410777F6B90969532564025DD(L_16, L_17, NULL, /*hidden argument*/Dictionary_2_set_Item_mEA41AEAE79570A9410777F6B90969532564025DD_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_005a:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * L_18 = V_0;
|
|
NullCheck(L_18);
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_19 = VirtFuncInvoker0< DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* >::Invoke(10 /* System.Delegate[] System.Delegate::GetInvocationList() */, L_18);
|
|
V_2 = L_19;
|
|
V_3 = 0;
|
|
goto IL_0090;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_20 = V_2;
|
|
int32_t L_21 = V_3;
|
|
NullCheck(L_20);
|
|
int32_t L_22 = L_21;
|
|
Delegate_t * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
|
|
String_t* L_24 = ___name0;
|
|
Assembly_t * L_25 = ___requestingAssembly1;
|
|
ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D * L_26 = (ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D *)il2cpp_codegen_object_new(ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D_il2cpp_TypeInfo_var);
|
|
ResolveEventArgs__ctor_m5516FB7BD379CD93309F0271B2E017D2E433204C(L_26, L_24, L_25, /*hidden argument*/NULL);
|
|
NullCheck(((ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 *)CastclassSealed((RuntimeObject*)L_23, ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5_il2cpp_TypeInfo_var)));
|
|
Assembly_t * L_27 = ResolveEventHandler_Invoke_mC377CFEFE104C5307C90C390F755A926B95D21E0(((ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 *)CastclassSealed((RuntimeObject*)L_23, ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5_il2cpp_TypeInfo_var)), __this, L_26, /*hidden argument*/NULL);
|
|
V_4 = L_27;
|
|
Assembly_t * L_28 = V_4;
|
|
bool L_29 = Assembly_op_Inequality_m6949ED5777CC2840BF1EBD907C35A20E25F22F7B(L_28, (Assembly_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_29)
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
Assembly_t * L_30 = V_4;
|
|
V_5 = L_30;
|
|
IL2CPP_LEAVE(0xA4, FINALLY_009b);
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
int32_t L_31 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
int32_t L_32 = V_3;
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_33 = V_2;
|
|
NullCheck(L_33);
|
|
if ((((int32_t)L_32) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length)))))))
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
V_5 = (Assembly_t *)NULL;
|
|
IL2CPP_LEAVE(0xA4, FINALLY_009b);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_009b;
|
|
}
|
|
|
|
FINALLY_009b:
|
|
{ // begin finally (depth: 1)
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_34 = V_1;
|
|
String_t* L_35 = ___name0;
|
|
NullCheck(L_34);
|
|
Dictionary_2_Remove_m52E8BCBCCDE8B8BEB6FF90ECC41E80C09A46B4C3(L_34, L_35, /*hidden argument*/Dictionary_2_Remove_m52E8BCBCCDE8B8BEB6FF90ECC41E80C09A46B4C3_RuntimeMethod_var);
|
|
IL2CPP_END_FINALLY(155)
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(155)
|
|
{
|
|
IL2CPP_JUMP_TBL(0xA4, IL_00a4)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
Assembly_t * L_36 = V_5;
|
|
return L_36;
|
|
}
|
|
}
|
|
// System.Reflection.Assembly System.AppDomain::DoTypeResolve(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_DoTypeResolve_mC5FF2B020351A6C8BD8EAA0FF83BB66EDF996AA6 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, RuntimeObject * ___name_or_tb0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_DoTypeResolve_mC5FF2B020351A6C8BD8EAA0FF83BB66EDF996AA6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * V_1 = NULL;
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
Assembly_t * V_4 = NULL;
|
|
Assembly_t * V_5 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * L_0 = __this->get_TypeResolve_16();
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (Assembly_t *)NULL;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject * L_1 = ___name_or_tb0;
|
|
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_2 = ((AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_il2cpp_TypeInfo_var))->get_type_resolve_in_progress_3();
|
|
V_1 = L_2;
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_3 = V_1;
|
|
if (L_3)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_4 = (Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA *)il2cpp_codegen_object_new(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_mCA7075EA6548A18B929368520217975094841997(L_4, /*hidden argument*/Dictionary_2__ctor_mCA7075EA6548A18B929368520217975094841997_RuntimeMethod_var);
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_5 = L_4;
|
|
V_1 = L_5;
|
|
((AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_il2cpp_TypeInfo_var))->set_type_resolve_in_progress_3(L_5);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_6 = V_1;
|
|
String_t* L_7 = V_0;
|
|
NullCheck(L_6);
|
|
bool L_8 = Dictionary_2_ContainsKey_mAD4B2095526B4742201B24C5ADF1717AFB15EF89(L_6, L_7, /*hidden argument*/Dictionary_2_ContainsKey_mAD4B2095526B4742201B24C5ADF1717AFB15EF89_RuntimeMethod_var);
|
|
if (!L_8)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
return (Assembly_t *)NULL;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_9 = V_1;
|
|
String_t* L_10 = V_0;
|
|
NullCheck(L_9);
|
|
Dictionary_2_set_Item_mEA41AEAE79570A9410777F6B90969532564025DD(L_9, L_10, NULL, /*hidden argument*/Dictionary_2_set_Item_mEA41AEAE79570A9410777F6B90969532564025DD_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0039:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * L_11 = __this->get_TypeResolve_16();
|
|
NullCheck(L_11);
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_12 = VirtFuncInvoker0< DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* >::Invoke(10 /* System.Delegate[] System.Delegate::GetInvocationList() */, L_11);
|
|
V_2 = L_12;
|
|
V_3 = 0;
|
|
goto IL_0073;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_13 = V_2;
|
|
int32_t L_14 = V_3;
|
|
NullCheck(L_13);
|
|
int32_t L_15 = L_14;
|
|
Delegate_t * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
|
|
String_t* L_17 = V_0;
|
|
ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D * L_18 = (ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D *)il2cpp_codegen_object_new(ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D_il2cpp_TypeInfo_var);
|
|
ResolveEventArgs__ctor_mBD72144268EC764435C32F17D12B7F49903A4C6C(L_18, L_17, /*hidden argument*/NULL);
|
|
NullCheck(((ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 *)CastclassSealed((RuntimeObject*)L_16, ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5_il2cpp_TypeInfo_var)));
|
|
Assembly_t * L_19 = ResolveEventHandler_Invoke_mC377CFEFE104C5307C90C390F755A926B95D21E0(((ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 *)CastclassSealed((RuntimeObject*)L_16, ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5_il2cpp_TypeInfo_var)), __this, L_18, /*hidden argument*/NULL);
|
|
V_4 = L_19;
|
|
Assembly_t * L_20 = V_4;
|
|
bool L_21 = Assembly_op_Inequality_m6949ED5777CC2840BF1EBD907C35A20E25F22F7B(L_20, (Assembly_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
Assembly_t * L_22 = V_4;
|
|
V_5 = L_22;
|
|
IL2CPP_LEAVE(0x87, FINALLY_007e);
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
int32_t L_23 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
int32_t L_24 = V_3;
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_25 = V_2;
|
|
NullCheck(L_25);
|
|
if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length)))))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
V_5 = (Assembly_t *)NULL;
|
|
IL2CPP_LEAVE(0x87, FINALLY_007e);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_007e;
|
|
}
|
|
|
|
FINALLY_007e:
|
|
{ // begin finally (depth: 1)
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * L_26 = V_1;
|
|
String_t* L_27 = V_0;
|
|
NullCheck(L_26);
|
|
Dictionary_2_Remove_m52E8BCBCCDE8B8BEB6FF90ECC41E80C09A46B4C3(L_26, L_27, /*hidden argument*/Dictionary_2_Remove_m52E8BCBCCDE8B8BEB6FF90ECC41E80C09A46B4C3_RuntimeMethod_var);
|
|
IL2CPP_END_FINALLY(126)
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(126)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x87, IL_0087)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
Assembly_t * L_28 = V_5;
|
|
return L_28;
|
|
}
|
|
}
|
|
// System.Reflection.Assembly System.AppDomain::DoResourceResolve(System.String,System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * AppDomain_DoResourceResolve_mC6874A5405D0F65E9C84CB1710B18C6E3C2FE2DB (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, String_t* ___name0, Assembly_t * ___requesting1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_DoResourceResolve_mC6874A5405D0F65E9C84CB1710B18C6E3C2FE2DB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Assembly_t * V_2 = NULL;
|
|
{
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * L_0 = __this->get_ResourceResolve_15();
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (Assembly_t *)NULL;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * L_1 = __this->get_ResourceResolve_15();
|
|
NullCheck(L_1);
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_2 = VirtFuncInvoker0< DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* >::Invoke(10 /* System.Delegate[] System.Delegate::GetInvocationList() */, L_1);
|
|
V_0 = L_2;
|
|
V_1 = 0;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_3 = V_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
Delegate_t * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
String_t* L_7 = ___name0;
|
|
Assembly_t * L_8 = ___requesting1;
|
|
ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D * L_9 = (ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D *)il2cpp_codegen_object_new(ResolveEventArgs_t116CF9DB06BCFEB8933CEAD4A35389A7CA9EB75D_il2cpp_TypeInfo_var);
|
|
ResolveEventArgs__ctor_m5516FB7BD379CD93309F0271B2E017D2E433204C(L_9, L_7, L_8, /*hidden argument*/NULL);
|
|
NullCheck(((ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 *)CastclassSealed((RuntimeObject*)L_6, ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5_il2cpp_TypeInfo_var)));
|
|
Assembly_t * L_10 = ResolveEventHandler_Invoke_mC377CFEFE104C5307C90C390F755A926B95D21E0(((ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 *)CastclassSealed((RuntimeObject*)L_6, ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5_il2cpp_TypeInfo_var)), __this, L_9, /*hidden argument*/NULL);
|
|
V_2 = L_10;
|
|
Assembly_t * L_11 = V_2;
|
|
bool L_12 = Assembly_op_Inequality_m6949ED5777CC2840BF1EBD907C35A20E25F22F7B(L_11, (Assembly_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
Assembly_t * L_13 = V_2;
|
|
return L_13;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
int32_t L_14 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_15 = V_1;
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_16 = V_0;
|
|
NullCheck(L_16);
|
|
if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
return (Assembly_t *)NULL;
|
|
}
|
|
}
|
|
// System.Void System.AppDomain::DoDomainUnload()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_DoDomainUnload_m2B7321997DE50C89A3631DD75BFB7625546248F1 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_0 = __this->get_DomainUnload_13();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_1 = __this->get_DomainUnload_13();
|
|
NullCheck(L_1);
|
|
EventHandler_Invoke_mD23D5EFEA562A05C5EACDD3E91EEDD2BF6C22800(L_1, __this, (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *)NULL, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Byte[] System.AppDomain::GetMarshalledDomainObjRef()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* AppDomain_GetMarshalledDomainObjRef_m2579B1B9662ED4CC23EF52B27B10D955D6DB4C2D (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_GetMarshalledDomainObjRef_m2579B1B9662ED4CC23EF52B27B10D955D6DB4C2D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * L_0 = AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0(/*hidden argument*/NULL);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
|
|
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_3 = RemotingServices_Marshal_m4011FB4633F63D96F126786B57DC8921B2D7035B(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL);
|
|
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_4 = CADSerializer_SerializeObject_m6B7C23B79F0AFE830641EA7F810201C149F06047(L_3, /*hidden argument*/NULL);
|
|
NullCheck(L_4);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(31 /* System.Byte[] System.IO.MemoryStream::GetBuffer() */, L_4);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void System.AppDomain::ProcessMessageInDomain(System.Byte[],System.Runtime.Remoting.Messaging.CADMethodCallMessage,System.Byte[]&,System.Runtime.Remoting.Messaging.CADMethodReturnMessage&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_ProcessMessageInDomain_m8BED79EC98447A657818AD6E59676CBCEA40D4C3 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___arrRequest0, CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * ___cadMsg1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___arrResponse2, CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C ** ___cadMrm3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_ProcessMessageInDomain_m8BED79EC98447A657818AD6E59676CBCEA40D4C3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___arrRequest0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___arrRequest0;
|
|
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_2 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var);
|
|
MemoryStream__ctor_m731754F1435D29F87C407D84ED47AF35FFF9B0EF(L_2, L_1, /*hidden argument*/NULL);
|
|
RuntimeObject* L_3 = CADSerializer_DeserializeMessage_m9EA9A8A2521F4DE96FFFE8217E3F9509EF752276(L_2, (RuntimeObject*)NULL, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * L_4 = ___cadMsg1;
|
|
MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * L_5 = (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA *)il2cpp_codegen_object_new(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA_il2cpp_TypeInfo_var);
|
|
MethodCall__ctor_mC7F8A5B354B3C24FEFAD09709F9BB36859E8F848(L_5, L_4, /*hidden argument*/NULL);
|
|
V_0 = L_5;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
RuntimeObject* L_6 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_7 = ChannelServices_SyncDispatchMessage_mD552FEB600341B5F9C92F7C4844C3CF9A0742716(L_6, /*hidden argument*/NULL);
|
|
V_1 = L_7;
|
|
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C ** L_8 = ___cadMrm3;
|
|
RuntimeObject* L_9 = V_1;
|
|
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * L_10 = CADMethodReturnMessage_Create_m4C63A24FC645651E4137AE00A6E7037F480E4062(L_9, /*hidden argument*/NULL);
|
|
*((RuntimeObject **)L_8) = (RuntimeObject *)L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_8, (void*)(RuntimeObject *)L_10);
|
|
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C ** L_11 = ___cadMrm3;
|
|
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * L_12 = *((CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C **)L_11);
|
|
if (L_12)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_13 = ___arrResponse2;
|
|
RuntimeObject* L_14 = V_1;
|
|
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_15 = CADSerializer_SerializeMessage_mE4C4D59A3F37D639CBAF37D01AB0654B0FCC3C28(L_14, /*hidden argument*/NULL);
|
|
NullCheck(L_15);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(31 /* System.Byte[] System.IO.MemoryStream::GetBuffer() */, L_15);
|
|
*((RuntimeObject **)L_13) = (RuntimeObject *)L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_13, (void*)(RuntimeObject *)L_16);
|
|
return;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_17 = ___arrResponse2;
|
|
*((RuntimeObject **)L_17) = (RuntimeObject *)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_17, (void*)(RuntimeObject *)NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AppDomain::add_DomainUnload(System.EventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_add_DomainUnload_mF24D35CA25C3C808EC78600D0C603B396EC8765F (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_add_DomainUnload_mF24D35CA25C3C808EC78600D0C603B396EC8765F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * V_0 = NULL;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * V_1 = NULL;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * V_2 = NULL;
|
|
{
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_0 = __this->get_DomainUnload_13();
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_1 = V_0;
|
|
V_1 = L_1;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_2 = V_1;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_3 = ___value0;
|
|
Delegate_t * L_4 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1(L_2, L_3, /*hidden argument*/NULL);
|
|
V_2 = ((EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)CastclassSealed((RuntimeObject*)L_4, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var));
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C ** L_5 = __this->get_address_of_DomainUnload_13();
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_6 = V_2;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_7 = V_1;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_8 = InterlockedCompareExchangeImpl<EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *>((EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C **)L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_9 = V_0;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)L_9) == ((RuntimeObject*)(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AppDomain::remove_DomainUnload(System.EventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_remove_DomainUnload_m13646133574E1C904DB87EA206A189E4566EDCD9 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_remove_DomainUnload_m13646133574E1C904DB87EA206A189E4566EDCD9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * V_0 = NULL;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * V_1 = NULL;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * V_2 = NULL;
|
|
{
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_0 = __this->get_DomainUnload_13();
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_1 = V_0;
|
|
V_1 = L_1;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_2 = V_1;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_3 = ___value0;
|
|
Delegate_t * L_4 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D(L_2, L_3, /*hidden argument*/NULL);
|
|
V_2 = ((EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)CastclassSealed((RuntimeObject*)L_4, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var));
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C ** L_5 = __this->get_address_of_DomainUnload_13();
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_6 = V_2;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_7 = V_1;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_8 = InterlockedCompareExchangeImpl<EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *>((EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C **)L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_9 = V_0;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)L_9) == ((RuntimeObject*)(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AppDomain::add_UnhandledException(System.UnhandledExceptionEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_add_UnhandledException_mEEDCA5704AE44AEE033BC4929067895C7EAC9D2D (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_add_UnhandledException_mEEDCA5704AE44AEE033BC4929067895C7EAC9D2D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * V_0 = NULL;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * V_1 = NULL;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * V_2 = NULL;
|
|
{
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_0 = __this->get_UnhandledException_17();
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_1 = V_0;
|
|
V_1 = L_1;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_2 = V_1;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_3 = ___value0;
|
|
Delegate_t * L_4 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1(L_2, L_3, /*hidden argument*/NULL);
|
|
V_2 = ((UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE *)CastclassSealed((RuntimeObject*)L_4, UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE_il2cpp_TypeInfo_var));
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE ** L_5 = __this->get_address_of_UnhandledException_17();
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_6 = V_2;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_7 = V_1;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_8 = InterlockedCompareExchangeImpl<UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE *>((UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE **)L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_9 = V_0;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE *)L_9) == ((RuntimeObject*)(UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE *)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AppDomain::remove_UnhandledException(System.UnhandledExceptionEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_remove_UnhandledException_m7311A7962E7B103E494F18E20EF8F9F18136A881 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomain_remove_UnhandledException_m7311A7962E7B103E494F18E20EF8F9F18136A881_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * V_0 = NULL;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * V_1 = NULL;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * V_2 = NULL;
|
|
{
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_0 = __this->get_UnhandledException_17();
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_1 = V_0;
|
|
V_1 = L_1;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_2 = V_1;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_3 = ___value0;
|
|
Delegate_t * L_4 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D(L_2, L_3, /*hidden argument*/NULL);
|
|
V_2 = ((UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE *)CastclassSealed((RuntimeObject*)L_4, UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE_il2cpp_TypeInfo_var));
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE ** L_5 = __this->get_address_of_UnhandledException_17();
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_6 = V_2;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_7 = V_1;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_8 = InterlockedCompareExchangeImpl<UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE *>((UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE **)L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_9 = V_0;
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE *)L_9) == ((RuntimeObject*)(UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE *)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Conversion methods for marshalling of: System.AppDomainSetup
|
|
IL2CPP_EXTERN_C void AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshal_pinvoke(const AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306& unmarshaled, AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___domain_initializer_args_18Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'domain_initializer_args' of type 'AppDomainSetup'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___domain_initializer_args_18Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshal_pinvoke_back(const AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshaled_pinvoke& marshaled, AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306& unmarshaled)
|
|
{
|
|
Exception_t* ___domain_initializer_args_18Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'domain_initializer_args' of type 'AppDomainSetup'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___domain_initializer_args_18Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.AppDomainSetup
|
|
IL2CPP_EXTERN_C void AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshal_pinvoke_cleanup(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: System.AppDomainSetup
|
|
IL2CPP_EXTERN_C void AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshal_com(const AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306& unmarshaled, AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___domain_initializer_args_18Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'domain_initializer_args' of type 'AppDomainSetup'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___domain_initializer_args_18Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshal_com_back(const AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshaled_com& marshaled, AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306& unmarshaled)
|
|
{
|
|
Exception_t* ___domain_initializer_args_18Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'domain_initializer_args' of type 'AppDomainSetup'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___domain_initializer_args_18Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.AppDomainSetup
|
|
IL2CPP_EXTERN_C void AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshal_com_cleanup(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void System.AppDomainSetup::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomainSetup__ctor_m08CCAEFA9CF12E89DA8954FE7614BC7E2DABF26B (AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AppDomainSetup::.ctor(System.AppDomainSetup)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomainSetup__ctor_m5DC21E2AA507414DB813606F4519DE8F16019941 (AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * __this, AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * ___setup0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_0 = ___setup0;
|
|
NullCheck(L_0);
|
|
String_t* L_1 = L_0->get_application_base_0();
|
|
__this->set_application_base_0(L_1);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_2 = ___setup0;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = L_2->get_application_name_1();
|
|
__this->set_application_name_1(L_3);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_4 = ___setup0;
|
|
NullCheck(L_4);
|
|
String_t* L_5 = L_4->get_cache_path_2();
|
|
__this->set_cache_path_2(L_5);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_6 = ___setup0;
|
|
NullCheck(L_6);
|
|
String_t* L_7 = L_6->get_configuration_file_3();
|
|
__this->set_configuration_file_3(L_7);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_8 = ___setup0;
|
|
NullCheck(L_8);
|
|
String_t* L_9 = L_8->get_dynamic_base_4();
|
|
__this->set_dynamic_base_4(L_9);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_10 = ___setup0;
|
|
NullCheck(L_10);
|
|
String_t* L_11 = L_10->get_license_file_5();
|
|
__this->set_license_file_5(L_11);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_12 = ___setup0;
|
|
NullCheck(L_12);
|
|
String_t* L_13 = L_12->get_private_bin_path_6();
|
|
__this->set_private_bin_path_6(L_13);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_14 = ___setup0;
|
|
NullCheck(L_14);
|
|
String_t* L_15 = L_14->get_private_bin_path_probe_7();
|
|
__this->set_private_bin_path_probe_7(L_15);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_16 = ___setup0;
|
|
NullCheck(L_16);
|
|
String_t* L_17 = L_16->get_shadow_copy_directories_8();
|
|
__this->set_shadow_copy_directories_8(L_17);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_18 = ___setup0;
|
|
NullCheck(L_18);
|
|
String_t* L_19 = L_18->get_shadow_copy_files_9();
|
|
__this->set_shadow_copy_files_9(L_19);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_20 = ___setup0;
|
|
NullCheck(L_20);
|
|
bool L_21 = L_20->get_publisher_policy_10();
|
|
__this->set_publisher_policy_10(L_21);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_22 = ___setup0;
|
|
NullCheck(L_22);
|
|
bool L_23 = L_22->get_path_changed_11();
|
|
__this->set_path_changed_11(L_23);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_24 = ___setup0;
|
|
NullCheck(L_24);
|
|
int32_t L_25 = L_24->get_loader_optimization_12();
|
|
__this->set_loader_optimization_12(L_25);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_26 = ___setup0;
|
|
NullCheck(L_26);
|
|
bool L_27 = L_26->get_disallow_binding_redirects_13();
|
|
__this->set_disallow_binding_redirects_13(L_27);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_28 = ___setup0;
|
|
NullCheck(L_28);
|
|
bool L_29 = L_28->get_disallow_code_downloads_14();
|
|
__this->set_disallow_code_downloads_14(L_29);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_30 = ___setup0;
|
|
NullCheck(L_30);
|
|
RuntimeObject * L_31 = L_30->get__activationArguments_15();
|
|
__this->set__activationArguments_15(L_31);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_32 = ___setup0;
|
|
NullCheck(L_32);
|
|
RuntimeObject * L_33 = L_32->get_domain_initializer_16();
|
|
__this->set_domain_initializer_16(L_33);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_34 = ___setup0;
|
|
NullCheck(L_34);
|
|
RuntimeObject * L_35 = L_34->get_application_trust_17();
|
|
__this->set_application_trust_17(L_35);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_36 = ___setup0;
|
|
NullCheck(L_36);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_37 = L_36->get_domain_initializer_args_18();
|
|
__this->set_domain_initializer_args_18(L_37);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_38 = ___setup0;
|
|
NullCheck(L_38);
|
|
bool L_39 = L_38->get_disallow_appbase_probe_19();
|
|
__this->set_disallow_appbase_probe_19(L_39);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_40 = ___setup0;
|
|
NullCheck(L_40);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = L_40->get_configuration_bytes_20();
|
|
__this->set_configuration_bytes_20(L_41);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.AppDomainSetup::GetAppBase(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomainSetup_GetAppBase_m2FC944AE3C9D781BFE9BDE817433A6E100D7D9F4 (String_t* ___appBase0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomainSetup_GetAppBase_m2FC944AE3C9D781BFE9BDE817433A6E100D7D9F4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t G_B9_0 = 0;
|
|
String_t* G_B9_1 = NULL;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B8_1 = NULL;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B10_1 = 0;
|
|
String_t* G_B10_2 = NULL;
|
|
{
|
|
String_t* L_0 = ___appBase0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return (String_t*)NULL;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
String_t* L_1 = ___appBase0;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_2) < ((int32_t)8)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_3 = ___appBase0;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = String_ToLower_m5287204D93C9DDC4DF84581ADD756D0FDE2BA5A8(L_3, /*hidden argument*/NULL);
|
|
NullCheck(L_4);
|
|
bool L_5 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_4, _stringLiteralA91E4897CA9F429677AFC57ED00D90DE8D3C7001, /*hidden argument*/NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = ___appBase0;
|
|
NullCheck(L_6);
|
|
String_t* L_7 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_6, 7, /*hidden argument*/NULL);
|
|
___appBase0 = L_7;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_8 = ((Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields*)il2cpp_codegen_static_fields_for(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var))->get_DirectorySeparatorChar_2();
|
|
if ((((int32_t)L_8) == ((int32_t)((int32_t)47))))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_9 = ___appBase0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_10 = ((Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields*)il2cpp_codegen_static_fields_for(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var))->get_DirectorySeparatorChar_2();
|
|
NullCheck(L_9);
|
|
String_t* L_11 = String_Replace_m276641366A463205C185A9B3DC0E24ECB95122C9(L_9, ((int32_t)47), L_10, /*hidden argument*/NULL);
|
|
___appBase0 = L_11;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
String_t* L_12 = ___appBase0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
|
|
String_t* L_13 = Path_GetFullPath_m58677E6FFAFB7BB4A23011CE50F76487226EDE20(L_12, /*hidden argument*/NULL);
|
|
___appBase0 = L_13;
|
|
Il2CppChar L_14 = ((Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields*)il2cpp_codegen_static_fields_for(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var))->get_DirectorySeparatorChar_2();
|
|
if ((((int32_t)L_14) == ((int32_t)((int32_t)47))))
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_15 = ___appBase0;
|
|
NullCheck(L_15);
|
|
bool L_16 = String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49(L_15, _stringLiteral8D2121E848D7D4440855F4CD9BE95697511F5B31, 4, /*hidden argument*/NULL);
|
|
V_2 = L_16;
|
|
String_t* L_17 = ___appBase0;
|
|
bool L_18 = V_2;
|
|
G_B8_0 = ((int32_t)58);
|
|
G_B8_1 = L_17;
|
|
if (L_18)
|
|
{
|
|
G_B9_0 = ((int32_t)58);
|
|
G_B9_1 = L_17;
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
G_B10_0 = 2;
|
|
G_B10_1 = G_B8_0;
|
|
G_B10_2 = G_B8_1;
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
G_B10_0 = 6;
|
|
G_B10_1 = G_B9_0;
|
|
G_B10_2 = G_B9_1;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
NullCheck(G_B10_2);
|
|
int32_t L_19 = String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D(G_B10_2, G_B10_1, G_B10_0, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_19) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_20 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_20, _stringLiteralD843D80A2F384FD1A7FA2B7BCC94906BB5ECF01C, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, AppDomainSetup_GetAppBase_m2FC944AE3C9D781BFE9BDE817433A6E100D7D9F4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
String_t* L_21 = ___appBase0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
|
|
String_t* L_22 = Path_GetDirectoryName_m61922AA6D7B48EACBA36FF41A1B28F506CFB8A97(L_21, /*hidden argument*/NULL);
|
|
V_0 = L_22;
|
|
String_t* L_23 = V_0;
|
|
if (!L_23)
|
|
{
|
|
goto IL_00af;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_24 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_25 = Path_GetInvalidPathChars_m0C84DE22306A8BB60AC6FF5486B9270DA99C6B76(/*hidden argument*/NULL);
|
|
NullCheck(L_24);
|
|
int32_t L_26 = String_LastIndexOfAny_mF16934C2FD438FE77DEF59BF748E438675844892(L_24, L_25, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_26) < ((int32_t)0)))
|
|
{
|
|
goto IL_00af;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_27 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralAC7CD7F3C6C1C87FD47E724B1525CEC6EF5F83D3, /*hidden argument*/NULL);
|
|
String_t* L_28 = ___appBase0;
|
|
String_t* L_29 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(L_27, L_28, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_30, L_29, _stringLiteral7A8D9C17D83CD5114AAF55461B9388B1FF601303, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, AppDomainSetup_GetAppBase_m2FC944AE3C9D781BFE9BDE817433A6E100D7D9F4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00af:
|
|
{
|
|
String_t* L_31 = ___appBase0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
|
|
String_t* L_32 = Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E(L_31, /*hidden argument*/NULL);
|
|
V_1 = L_32;
|
|
String_t* L_33 = V_1;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00e2;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_34 = V_1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_35 = Path_GetInvalidFileNameChars_m40A585AC38CB7E1FD9274EB8F9C3F8DACBCFB7E5(/*hidden argument*/NULL);
|
|
NullCheck(L_34);
|
|
int32_t L_36 = String_LastIndexOfAny_mF16934C2FD438FE77DEF59BF748E438675844892(L_34, L_35, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_36) < ((int32_t)0)))
|
|
{
|
|
goto IL_00e2;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_37 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralCF29354CC728AFD448CCF3A16E28BF6917590BEF, /*hidden argument*/NULL);
|
|
String_t* L_38 = ___appBase0;
|
|
String_t* L_39 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(L_37, L_38, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_40 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_40, L_39, _stringLiteral7A8D9C17D83CD5114AAF55461B9388B1FF601303, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, AppDomainSetup_GetAppBase_m2FC944AE3C9D781BFE9BDE817433A6E100D7D9F4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00e2:
|
|
{
|
|
String_t* L_41 = ___appBase0;
|
|
return L_41;
|
|
}
|
|
}
|
|
// System.String System.AppDomainSetup::get_ApplicationBase()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomainSetup_get_ApplicationBase_mF644882409BB7CAF59E481600E02733D5CF5C578 (AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_application_base_0();
|
|
String_t* L_1 = AppDomainSetup_GetAppBase_m2FC944AE3C9D781BFE9BDE817433A6E100D7D9F4(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.String System.AppDomainSetup::get_LicenseFile()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomainSetup_get_LicenseFile_mF15AC0328CB9C99BB56183BE934B0CB208066C18 (AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_license_file_5();
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.AppDomainUnloadedException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomainUnloadedException__ctor_m2673FE982D10437784B22198CAD3A7CD6BDE6A7A (AppDomainUnloadedException_t8DFC322660E43B2A11853B62BF43078F42496A35 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AppDomainUnloadedException__ctor_m2673FE982D10437784B22198CAD3A7CD6BDE6A7A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral08F4C4501CAF720D78CA66D59ADDA8B814A3CF45, /*hidden argument*/NULL);
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146234348), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AppDomainUnloadedException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomainUnloadedException__ctor_m9F864CCBD87F4C2E87252C8570FD49A799B8AE9A (AppDomainUnloadedException_t8DFC322660E43B2A11853B62BF43078F42496A35 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ApplicationException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_m367884FC6156A7F473CC3CE5BA78F8EC5180CADD (ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ApplicationException__ctor_m367884FC6156A7F473CC3CE5BA78F8EC5180CADD_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralE8E3FC9CD74FAD4F2DF7E31E4DF694DF5218FA93, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
|
|
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146232832), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ApplicationException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_mDC26CE8ECD0DDA5C8FA50C8E8B2614F3B50FC308 (ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 * __this, String_t* ___message0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ApplicationException__ctor_mDC26CE8ECD0DDA5C8FA50C8E8B2614F3B50FC308_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
|
|
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146232832), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ApplicationException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_m0AF8988654AD1CA2DCA8EC12E6D46563E4EE703F (ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ApplicationException__ctor_m0AF8988654AD1CA2DCA8EC12E6D46563E4EE703F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
Exception_t * L_1 = ___innerException1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
|
|
Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146232832), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ApplicationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_mFF30CCDE8B078E0ED2E206EEB39611840367607A (ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ApplicationException__ctor_mFF30CCDE8B078E0ED2E206EEB39611840367607A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
|
|
Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean System.ArgIterator::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArgIterator_Equals_mA4D50273AEA724B8E431B2B8780EBB6D4D82C17E (ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855 * __this, RuntimeObject * ___o0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArgIterator_Equals_mA4D50273AEA724B8E431B2B8780EBB6D4D82C17E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralA441D4B6031D34A3BF43B24C227C74E8F3B68292, /*hidden argument*/NULL);
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ArgIterator_Equals_mA4D50273AEA724B8E431B2B8780EBB6D4D82C17E_RuntimeMethod_var);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ArgIterator_Equals_mA4D50273AEA724B8E431B2B8780EBB6D4D82C17E_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___o0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855 * _thisAdjusted = reinterpret_cast<ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855 *>(__this + _offset);
|
|
return ArgIterator_Equals_mA4D50273AEA724B8E431B2B8780EBB6D4D82C17E(_thisAdjusted, ___o0, method);
|
|
}
|
|
// System.Int32 System.ArgIterator::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArgIterator_GetHashCode_m8C8F2147A6C155B50AA4D7E70F58A6804017D57D (ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
intptr_t* L_0 = __this->get_address_of_sig_0();
|
|
int32_t L_1 = IntPtr_GetHashCode_m0A6AE0C85A4AEEA127235FB5A32056F630E3749A((intptr_t*)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ArgIterator_GetHashCode_m8C8F2147A6C155B50AA4D7E70F58A6804017D57D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855 * _thisAdjusted = reinterpret_cast<ArgIterator_tCF0D2A1A1BD140821E37286E2D7AC6267479F855 *>(__this + _offset);
|
|
return ArgIterator_GetHashCode_m8C8F2147A6C155B50AA4D7E70F58A6804017D57D(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ArgumentException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m77591C20EDA3ADEE2FAF1987321D686E249326C5 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArgumentException__ctor_m77591C20EDA3ADEE2FAF1987321D686E249326C5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF7623357202A0F46697BF67CA5E89239746A567B, /*hidden argument*/NULL);
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1BF85DCCECA37FCD88A0884AF3C4D03566911BF0 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
Exception_t * L_1 = ___innerException1;
|
|
SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentException::.ctor(System.String,System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8E5D9390593273B9774DBD2E967805E8EDE668E3 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, Exception_t * ___innerException2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
Exception_t * L_1 = ___innerException2;
|
|
SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
String_t* L_2 = ___paramName1;
|
|
__this->set_m_paramName_17(L_2);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
String_t* L_1 = ___paramName1;
|
|
__this->set_m_paramName_17(L_1);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_2, _stringLiteral06F7CD62F004714FEB4927B0E84014F91B0FF599, /*hidden argument*/NULL);
|
|
__this->set_m_paramName_17(L_3);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ArgumentException::get_Message()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArgumentException_get_Message_m23FEA6788F6D9BF5A73F59428DA74307035FAF61 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArgumentException_get_Message_m23FEA6788F6D9BF5A73F59428DA74307035FAF61_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
{
|
|
String_t* L_0 = Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD(__this, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
String_t* L_1 = __this->get_m_paramName_17();
|
|
bool L_2 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_1, /*hidden argument*/NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3;
|
|
String_t* L_5 = __this->get_m_paramName_17();
|
|
NullCheck(L_4);
|
|
ArrayElementTypeCheck (L_4, L_5);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
|
|
String_t* L_6 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral882B41A3FF2AADD3EC5D6045584E1EA6D42DB8EE, L_4, /*hidden argument*/NULL);
|
|
V_1 = L_6;
|
|
String_t* L_7 = V_0;
|
|
String_t* L_8 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
|
|
String_t* L_9 = V_1;
|
|
String_t* L_10 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_7, L_8, L_9, /*hidden argument*/NULL);
|
|
return L_10;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
return L_11;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException_GetObjectData_m838F8806302102BE3C42D60D5306761FD788F26E (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArgumentException_GetObjectData_m838F8806302102BE3C42D60D5306761FD788F26E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ArgumentException_GetObjectData_m838F8806302102BE3C42D60D5306761FD788F26E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_3 = ___context1;
|
|
Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6(__this, L_2, L_3, /*hidden argument*/NULL);
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
|
|
String_t* L_5 = __this->get_m_paramName_17();
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
|
|
NullCheck(L_4);
|
|
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_4, _stringLiteral06F7CD62F004714FEB4927B0E84014F91B0FF599, L_5, L_7, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ArgumentNullException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510 (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8A9B2426D23E9F4EF08CC6C33D917C1C0E6D1F99, /*hidden argument*/NULL);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467261), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentNullException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8A9B2426D23E9F4EF08CC6C33D917C1C0E6D1F99, /*hidden argument*/NULL);
|
|
String_t* L_1 = ___paramName0;
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467261), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message1;
|
|
String_t* L_1 = ___paramName0;
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467261), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentNullException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m08CA10B3D754F6AE5C8488D186E0B877974528FD (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.String System.ArgumentOutOfRangeException::get_RangeMessage()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArgumentOutOfRangeException_get_RangeMessage_m6E0D55DD4CCE7312D3BE08D2BE74A79128ED095C (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArgumentOutOfRangeException_get_RangeMessage_m6E0D55DD4CCE7312D3BE08D2BE74A79128ED095C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ((ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields*)il2cpp_codegen_static_fields_for(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var))->get__rangeMessage_18();
|
|
il2cpp_codegen_memory_barrier();
|
|
if (L_0)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFB499AED03084DC7A8ECBDE5DADA639999536566, /*hidden argument*/NULL);
|
|
il2cpp_codegen_memory_barrier();
|
|
((ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields*)il2cpp_codegen_static_fields_for(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var))->set__rangeMessage_18(L_1);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
String_t* L_2 = ((ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields*)il2cpp_codegen_static_fields_for(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var))->get__rangeMessage_18();
|
|
il2cpp_codegen_memory_barrier();
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m215F35137EDD190A037E2E9BDA3BF5DC056FD7C3 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ArgumentOutOfRangeException_get_RangeMessage_m6E0D55DD4CCE7312D3BE08D2BE74A79128ED095C(/*hidden argument*/NULL);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233086), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ArgumentOutOfRangeException_get_RangeMessage_m6E0D55DD4CCE7312D3BE08D2BE74A79128ED095C(/*hidden argument*/NULL);
|
|
String_t* L_1 = ___paramName0;
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233086), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message1;
|
|
String_t* L_1 = ___paramName0;
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233086), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message2;
|
|
String_t* L_1 = ___paramName0;
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
RuntimeObject * L_2 = ___actualValue1;
|
|
__this->set_m_actualValue_19(L_2);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233086), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ArgumentOutOfRangeException::get_Message()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArgumentOutOfRangeException_get_Message_m053C3F0C28F661EC585459207993AC43A7C85D04 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArgumentOutOfRangeException_get_Message_m053C3F0C28F661EC585459207993AC43A7C85D04_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
{
|
|
String_t* L_0 = ArgumentException_get_Message_m23FEA6788F6D9BF5A73F59428DA74307035FAF61(__this, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
RuntimeObject * L_1 = __this->get_m_actualValue_19();
|
|
if (!L_1)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
|
|
RuntimeObject * L_4 = __this->get_m_actualValue_19();
|
|
NullCheck(L_4);
|
|
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_4);
|
|
NullCheck(L_3);
|
|
ArrayElementTypeCheck (L_3, L_5);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
|
|
String_t* L_6 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralF34A8D05E49CE8FD12BC29CE2498D88ED92B36A1, L_3, /*hidden argument*/NULL);
|
|
V_1 = L_6;
|
|
String_t* L_7 = V_0;
|
|
if (L_7)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
String_t* L_9 = V_0;
|
|
String_t* L_10 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
|
|
String_t* L_11 = V_1;
|
|
String_t* L_12 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_9, L_10, L_11, /*hidden argument*/NULL);
|
|
return L_12;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
String_t* L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentOutOfRangeException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException_GetObjectData_mE3EA7003D14E82558A2D76E878BF3235BF88D965 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArgumentOutOfRangeException_GetObjectData_mE3EA7003D14E82558A2D76E878BF3235BF88D965_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ArgumentOutOfRangeException_GetObjectData_mE3EA7003D14E82558A2D76E878BF3235BF88D965_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_3 = ___context1;
|
|
ArgumentException_GetObjectData_m838F8806302102BE3C42D60D5306761FD788F26E(__this, L_2, L_3, /*hidden argument*/NULL);
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
|
|
RuntimeObject * L_5 = __this->get_m_actualValue_19();
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
|
|
NullCheck(L_4);
|
|
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_4, _stringLiteral44BF3B2BCF19307DAFB65F2F710F3C10BF3E7609, L_5, L_7, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m70423E62C9103D310DC95B96E2014E7282036664 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArgumentOutOfRangeException__ctor_m70423E62C9103D310DC95B96E2014E7282036664_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
|
|
NullCheck(L_2);
|
|
RuntimeObject * L_5 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_2, _stringLiteral44BF3B2BCF19307DAFB65F2F710F3C10BF3E7609, L_4, /*hidden argument*/NULL);
|
|
__this->set_m_actualValue_19(L_5);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ArithmeticException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m8F13CB2C5B293239D87D5D7CD065630DE2C9C4D9 (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArithmeticException__ctor_m8F13CB2C5B293239D87D5D7CD065630DE2C9C4D9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral686EE057F16502D2AF6F909365560FA9928BF54C, /*hidden argument*/NULL);
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024362), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArithmeticException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_mAE18F94959F9827DEA553C7C2F3C5568BEC81CCF (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * __this, String_t* ___message0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024362), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArithmeticException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m1412E36F7AF7D25CF6A00670AE2296E88DA85F5F (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
Exception_t * L_1 = ___innerException1;
|
|
SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024362), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArithmeticException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_mE39E53B845DB39374DFC9B613B87342A4D05C672 (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Array System.Array::CreateInstance(System.Type,System.Int64[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311 (Type_t * ___elementType0, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___lengths1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_0 = ___lengths1;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_2 = ___lengths1;
|
|
NullCheck(L_2);
|
|
if ((((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, _stringLiteralD99412487FA1DE75405C1F410AFB3F05A3953A9A, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_4 = ___lengths1;
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))));
|
|
V_0 = L_5;
|
|
V_1 = 0;
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_6 = ___lengths1;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
int64_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
V_2 = L_9;
|
|
int64_t L_10 = V_2;
|
|
if ((((int64_t)L_10) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_11 = V_2;
|
|
if ((((int64_t)L_11) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteralA573B540D2DDE90BA6DA3B9D6286C8EC60C10044, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = V_0;
|
|
int32_t L_14 = V_1;
|
|
int64_t L_15 = V_2;
|
|
NullCheck(L_13);
|
|
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(((int32_t)((int32_t)L_15))));
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_18 = ___lengths1;
|
|
NullCheck(L_18);
|
|
if ((((int32_t)L_17) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_19 = ___elementType0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_20 = V_0;
|
|
RuntimeArray * L_21 = Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207(L_19, L_20, /*hidden argument*/NULL);
|
|
return L_21;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::System.Collections.ICollection.get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_System_Collections_ICollection_get_Count_mF0B85564BCAAFBFC80CFECA18C947E0D00DE784F (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.Array::System.Collections.IList.get_IsReadOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_System_Collections_IList_get_IsReadOnly_m7A3D7AEF53C701ADB4B5E9326EED2D30E90299F4 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Object System.Array::System.Collections.IList.get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_System_Collections_IList_get_Item_mF5DECDCEEB51800E488B91E7198C7553B63E9A4B (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
RuntimeObject * L_1 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(__this, L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.Array::System.Collections.IList.set_Item(System.Int32,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_System_Collections_IList_set_Item_mF6BD821618D0B9C9043A54AC53056AD354D66953 (RuntimeArray * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = ___value1;
|
|
int32_t L_1 = ___index0;
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::System.Collections.IList.Add(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_System_Collections_IList_Add_mB8090E69C05684525C3D8F1704EC6A4D42422BE3 (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_System_Collections_IList_Add_mB8090E69C05684525C3D8F1704EC6A4D42422BE3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral19D727C5849D9F3D7033B755C67B0B5CD9A0315D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Array_System_Collections_IList_Add_mB8090E69C05684525C3D8F1704EC6A4D42422BE3_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Boolean System.Array::System.Collections.IList.Contains(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_System_Collections_IList_Contains_mED1986103168425F87B87D7E66F55EEDE0067948 (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
int32_t L_1 = Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE(__this, L_0, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Void System.Array::System.Collections.IList.Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_System_Collections_IList_Clear_m7E1DF866EB3B3AAC6EE3E15BDF42CF26BD539F96 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(__this, 0, /*hidden argument*/NULL);
|
|
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL);
|
|
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::System.Collections.IList.IndexOf(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_System_Collections_IList_IndexOf_mD196C0707A00C8BE3F56D09BE2EE5B039B54B70F (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
int32_t L_1 = Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE(__this, L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.Array::System.Collections.IList.Insert(System.Int32,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_System_Collections_IList_Insert_mD042AFFF13A4E0A9D844432EDE0C0754CEDD3867 (RuntimeArray * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_System_Collections_IList_Insert_mD042AFFF13A4E0A9D844432EDE0C0754CEDD3867_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral19D727C5849D9F3D7033B755C67B0B5CD9A0315D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Array_System_Collections_IList_Insert_mD042AFFF13A4E0A9D844432EDE0C0754CEDD3867_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Void System.Array::System.Collections.IList.Remove(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_System_Collections_IList_Remove_m61014B3F0F98B648ECBA28D81C85A17D887569B6 (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_System_Collections_IList_Remove_m61014B3F0F98B648ECBA28D81C85A17D887569B6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral19D727C5849D9F3D7033B755C67B0B5CD9A0315D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Array_System_Collections_IList_Remove_m61014B3F0F98B648ECBA28D81C85A17D887569B6_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Void System.Array::System.Collections.IList.RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_System_Collections_IList_RemoveAt_mC2C423CFCFFB6F619EE6B76519A3AD0D1BB9BB54 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_System_Collections_IList_RemoveAt_mC2C423CFCFFB6F619EE6B76519A3AD0D1BB9BB54_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral19D727C5849D9F3D7033B755C67B0B5CD9A0315D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Array_System_Collections_IList_RemoveAt_mC2C423CFCFFB6F619EE6B76519A3AD0D1BB9BB54_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Void System.Array::CopyTo(System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_1 = ___array0;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_1, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_2) == ((int32_t)1)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(__this, 0, /*hidden argument*/NULL);
|
|
RuntimeArray * L_5 = ___array0;
|
|
int32_t L_6 = ___index1;
|
|
int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL);
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6(__this, L_4, L_5, L_6, L_7, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Object System.Array::Clone()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_System_Collections_IStructuralComparable_CompareTo_m8847B4F97B5630FAC8088A7CCAC38019A48B0314 (RuntimeArray * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_System_Collections_IStructuralComparable_CompareTo_m8847B4F97B5630FAC8088A7CCAC38019A48B0314_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeArray * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
RuntimeObject * V_3 = NULL;
|
|
RuntimeObject * V_4 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___other0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject * L_1 = ___other0;
|
|
V_0 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_1, RuntimeArray_il2cpp_TypeInfo_var));
|
|
RuntimeArray * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL);
|
|
RuntimeArray * L_4 = V_0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_4, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)L_5)))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, _stringLiteral7F2FCC733B74AEB86335058889C314E313748F83, _stringLiteralD0941E68DA8F38151FF86A61FC59F7C5CF9FCAA2, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Array_System_Collections_IStructuralComparable_CompareTo_m8847B4F97B5630FAC8088A7CCAC38019A48B0314_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
V_1 = 0;
|
|
V_2 = 0;
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
int32_t L_7 = V_1;
|
|
RuntimeObject * L_8 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(__this, L_7, /*hidden argument*/NULL);
|
|
V_3 = L_8;
|
|
RuntimeArray * L_9 = V_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
RuntimeObject * L_11 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_9, L_10, /*hidden argument*/NULL);
|
|
V_4 = L_11;
|
|
RuntimeObject* L_12 = ___comparer1;
|
|
RuntimeObject * L_13 = V_3;
|
|
RuntimeObject * L_14 = V_4;
|
|
NullCheck(L_12);
|
|
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_12, L_13, L_14);
|
|
V_2 = L_15;
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
RuntimeArray * L_18 = V_0;
|
|
NullCheck(L_18);
|
|
int32_t L_19 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_18, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_17) >= ((int32_t)L_19)))
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = V_2;
|
|
if (!L_20)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
int32_t L_21 = V_2;
|
|
return L_21;
|
|
}
|
|
}
|
|
// System.Boolean System.Array::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_System_Collections_IStructuralEquatable_Equals_m67D550D3F7DD3BEAA7B45AF229F22E1FAA072B66 (RuntimeArray * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_System_Collections_IStructuralEquatable_Equals_m67D550D3F7DD3BEAA7B45AF229F22E1FAA072B66_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeArray * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
RuntimeObject * V_2 = NULL;
|
|
RuntimeObject * V_3 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___other0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject * L_1 = ___other0;
|
|
if ((!(((RuntimeObject*)(RuntimeArray *)__this) == ((RuntimeObject*)(RuntimeObject *)L_1))))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
RuntimeObject * L_2 = ___other0;
|
|
V_0 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_2, RuntimeArray_il2cpp_TypeInfo_var));
|
|
RuntimeArray * L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_4 = V_0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_4, /*hidden argument*/NULL);
|
|
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_5) == ((int32_t)L_6)))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
V_1 = 0;
|
|
goto IL_0049;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
int32_t L_7 = V_1;
|
|
RuntimeObject * L_8 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(__this, L_7, /*hidden argument*/NULL);
|
|
V_2 = L_8;
|
|
RuntimeArray * L_9 = V_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
RuntimeObject * L_11 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_9, L_10, /*hidden argument*/NULL);
|
|
V_3 = L_11;
|
|
RuntimeObject* L_12 = ___comparer1;
|
|
RuntimeObject * L_13 = V_2;
|
|
RuntimeObject * L_14 = V_3;
|
|
NullCheck(L_12);
|
|
bool L_15 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_il2cpp_TypeInfo_var, L_12, L_13, L_14);
|
|
if (L_15)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
RuntimeArray * L_18 = V_0;
|
|
NullCheck(L_18);
|
|
int32_t L_19 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_18, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_17) < ((int32_t)L_19)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::CombineHashCodes(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_CombineHashCodes_m4831474CA5E80807B35DFD4DCBF2574540D90E14 (int32_t ___h10, int32_t ___h21, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___h10;
|
|
int32_t L_1 = ___h10;
|
|
int32_t L_2 = ___h21;
|
|
return ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_0<<(int32_t)5)), (int32_t)L_1))^(int32_t)L_2));
|
|
}
|
|
}
|
|
// System.Int32 System.Array::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_System_Collections_IStructuralEquatable_GetHashCode_mA7EFA715B4EF2F7E446553B2225BE067D1E44745 (RuntimeArray * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_System_Collections_IStructuralEquatable_GetHashCode_mA7EFA715B4EF2F7E446553B2225BE067D1E44745_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___comparer0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralD32C0B5C9D09FE2946F0D3970CAE922B4EC90A3C, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_System_Collections_IStructuralEquatable_GetHashCode_mA7EFA715B4EF2F7E446553B2225BE067D1E44745_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_2) >= ((int32_t)8)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
G_B5_0 = 0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL);
|
|
G_B5_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)8));
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_1 = G_B5_0;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
RuntimeObject* L_5 = ___comparer0;
|
|
int32_t L_6 = V_1;
|
|
RuntimeObject * L_7 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(__this, L_6, /*hidden argument*/NULL);
|
|
NullCheck(L_5);
|
|
int32_t L_8 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_il2cpp_TypeInfo_var, L_5, L_7);
|
|
int32_t L_9 = Array_CombineHashCodes_m4831474CA5E80807B35DFD4DCBF2574540D90E14(L_4, L_8, /*hidden argument*/NULL);
|
|
V_0 = L_9;
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
int32_t L_12 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::BinarySearch(System.Array,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_m166DFC7F443777EBFF29F92F2D792997A49DAA08 (RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_BinarySearch_m166DFC7F443777EBFF29F92F2D792997A49DAA08_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_BinarySearch_m166DFC7F443777EBFF29F92F2D792997A49DAA08_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
RuntimeArray * L_3 = ___array0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_3, 0, /*hidden argument*/NULL);
|
|
RuntimeArray * L_5 = ___array0;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_5, /*hidden argument*/NULL);
|
|
RuntimeObject * L_7 = ___value1;
|
|
int32_t L_8 = Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F(L_2, L_4, L_6, L_7, (RuntimeObject*)NULL, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Void System.Array::Copy(System.Array,System.Array,System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m0048B7322E29EBFDD2909ED26EF97CE10C44C588 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int64_t ___length2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Copy_m0048B7322E29EBFDD2909ED26EF97CE10C44C588_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = ___length2;
|
|
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = ___length2;
|
|
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_Copy_m0048B7322E29EBFDD2909ED26EF97CE10C44C588_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
RuntimeArray * L_3 = ___sourceArray0;
|
|
RuntimeArray * L_4 = ___destinationArray1;
|
|
int64_t L_5 = ___length2;
|
|
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434(L_3, L_4, (((int32_t)((int32_t)L_5))), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Copy(System.Array,System.Int64,System.Array,System.Int64,System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542 (RuntimeArray * ___sourceArray0, int64_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int64_t ___destinationIndex3, int64_t ___length4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = ___sourceIndex1;
|
|
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = ___sourceIndex1;
|
|
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralCAEEAB05C2A175307D7167265BB744072B8D72BE, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int64_t L_3 = ___destinationIndex3;
|
|
if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_4 = ___destinationIndex3;
|
|
if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralCA96269491D1B54BAE78372F8D395C9208E1C361, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
int64_t L_6 = ___length4;
|
|
if ((((int64_t)L_6) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_7 = ___length4;
|
|
if ((((int64_t)L_7) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
RuntimeArray * L_9 = ___sourceArray0;
|
|
int64_t L_10 = ___sourceIndex1;
|
|
RuntimeArray * L_11 = ___destinationArray2;
|
|
int64_t L_12 = ___destinationIndex3;
|
|
int64_t L_13 = ___length4;
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6(L_9, (((int32_t)((int32_t)L_10))), L_11, (((int32_t)((int32_t)L_12))), (((int32_t)((int32_t)L_13))), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::CopyTo(System.Array,System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_m3CA31C8758AB92E091DF1469077ED9DB13415B97 (RuntimeArray * __this, RuntimeArray * ___array0, int64_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_CopyTo_m3CA31C8758AB92E091DF1469077ED9DB13415B97_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = ___index1;
|
|
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = ___index1;
|
|
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_CopyTo_m3CA31C8758AB92E091DF1469077ED9DB13415B97_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
RuntimeArray * L_3 = ___array0;
|
|
int64_t L_4 = ___index1;
|
|
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7(__this, L_3, (((int32_t)((int32_t)L_4))), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int64 System.Array::get_LongLength()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Array_get_LongLength_m9C506B10DB4FB16C0A2F5059C5C08F8D3B0C2D9A (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, 0, /*hidden argument*/NULL);
|
|
V_0 = (((int64_t)((int64_t)L_0)));
|
|
V_1 = 1;
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
int64_t L_1 = V_0;
|
|
int32_t L_2 = V_1;
|
|
int32_t L_3 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, L_2, /*hidden argument*/NULL);
|
|
V_0 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_1, (int64_t)(((int64_t)((int64_t)L_3)))));
|
|
int32_t L_4 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_5 = V_1;
|
|
int32_t L_6 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_5) < ((int32_t)L_6)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Int64 System.Array::GetLongLength(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Array_GetLongLength_m86426B9200B4FCD2C1867FCD9356AA75550D7633 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___dimension0;
|
|
int32_t L_1 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, L_0, /*hidden argument*/NULL);
|
|
return (((int64_t)((int64_t)L_1)));
|
|
}
|
|
}
|
|
// System.Object System.Array::GetValue(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mB1145BA5883B1EC313933460EB49B80436507821 (RuntimeArray * __this, int64_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_GetValue_mB1145BA5883B1EC313933460EB49B80436507821_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = ___index0;
|
|
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = ___index0;
|
|
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_GetValue_mB1145BA5883B1EC313933460EB49B80436507821_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int64_t L_3 = ___index0;
|
|
RuntimeObject * L_4 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(__this, (((int32_t)((int32_t)L_3))), /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Object System.Array::GetValue(System.Int64,System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196 (RuntimeArray * __this, int64_t ___index10, int64_t ___index21, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = ___index10;
|
|
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = ___index10;
|
|
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralA2BF42BFCABC8FAE659BF90BD0F026411D146676, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int64_t L_3 = ___index21;
|
|
if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_4 = ___index21;
|
|
if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral85144172F82F20D22E554672D1927DE158BB79A8, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
int64_t L_6 = ___index10;
|
|
int64_t L_7 = ___index21;
|
|
RuntimeObject * L_8 = Array_GetValue_mEC23FDFB21649A4D9D90D6EA363CCE4E58D676A0(__this, (((int32_t)((int32_t)L_6))), (((int32_t)((int32_t)L_7))), /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Object System.Array::GetValue(System.Int64,System.Int64,System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020 (RuntimeArray * __this, int64_t ___index10, int64_t ___index21, int64_t ___index32, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = ___index10;
|
|
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = ___index10;
|
|
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralA2BF42BFCABC8FAE659BF90BD0F026411D146676, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int64_t L_3 = ___index21;
|
|
if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_4 = ___index21;
|
|
if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral85144172F82F20D22E554672D1927DE158BB79A8, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
int64_t L_6 = ___index32;
|
|
if ((((int64_t)L_6) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_7 = ___index32;
|
|
if ((((int64_t)L_7) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralF34463B5B4D8E56E5BA46302DE551ABB85C709D2, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
int64_t L_9 = ___index10;
|
|
int64_t L_10 = ___index21;
|
|
int64_t L_11 = ___index32;
|
|
RuntimeObject * L_12 = Array_GetValue_mA5B92FA4128EA88A676AB446C957C6C1D3D3D900(__this, (((int32_t)((int32_t)L_9))), (((int32_t)((int32_t)L_10))), (((int32_t)((int32_t)L_11))), /*hidden argument*/NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
// System.Object System.Array::GetValue(System.Int64[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0 (RuntimeArray * __this, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___indices0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_0 = ___indices0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral1E01512B1E7D3EA5B69D1F71AC90A9451071D646, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL);
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_3 = ___indices0;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, _stringLiteral226F66629D3BEDCC2E8003A076001F365A2F0A80, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_5 = ___indices0;
|
|
NullCheck(L_5);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))));
|
|
V_0 = L_6;
|
|
V_1 = 0;
|
|
goto IL_0060;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_7 = ___indices0;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
int64_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
V_2 = L_10;
|
|
int64_t L_11 = V_2;
|
|
if ((((int64_t)L_11) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_12 = V_2;
|
|
if ((((int64_t)L_12) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_13 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_13, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_14 = V_0;
|
|
int32_t L_15 = V_1;
|
|
int64_t L_16 = V_2;
|
|
NullCheck(L_14);
|
|
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (int32_t)(((int32_t)((int32_t)L_16))));
|
|
int32_t L_17 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
int32_t L_18 = V_1;
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_19 = ___indices0;
|
|
NullCheck(L_19);
|
|
if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_20 = V_0;
|
|
RuntimeObject * L_21 = Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C(__this, L_20, /*hidden argument*/NULL);
|
|
return L_21;
|
|
}
|
|
}
|
|
// System.Boolean System.Array::get_IsFixedSize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_get_IsFixedSize_mFCFD0E6786406ECC58C4B7F18B669DADC722CA80 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.Array::get_IsReadOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_get_IsReadOnly_mA3C9CCBD31776DDDB6F063662420010D2A5E0A64 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Array::get_IsSynchronized()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_get_IsSynchronized_m2A2A62F1E2A1CDB27061593550EAC7D26C1C8693 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Object System.Array::get_SyncRoot()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_get_SyncRoot_m2E775E57CB0563A4DC780EF206A61C0100F98ED1 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return __this;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::BinarySearch(System.Array,System.Int32,System.Int32,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_m3B677B774A91CC8383246DA219E53D2DEA0112F8 (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
int32_t L_1 = ___index1;
|
|
int32_t L_2 = ___length2;
|
|
RuntimeObject * L_3 = ___value3;
|
|
int32_t L_4 = Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F(L_0, L_1, L_2, L_3, (RuntimeObject*)NULL, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::BinarySearch(System.Array,System.Object,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_m1C4BF209146D7DF552578B0CFBFB641DDD8A90B7 (RuntimeArray * ___array0, RuntimeObject * ___value1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_BinarySearch_m1C4BF209146D7DF552578B0CFBFB641DDD8A90B7_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_BinarySearch_m1C4BF209146D7DF552578B0CFBFB641DDD8A90B7_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
RuntimeArray * L_3 = ___array0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_3, 0, /*hidden argument*/NULL);
|
|
RuntimeArray * L_5 = ___array0;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_5, /*hidden argument*/NULL);
|
|
RuntimeObject * L_7 = ___value1;
|
|
RuntimeObject* L_8 = ___comparer2;
|
|
int32_t L_9 = Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F(L_2, L_4, L_6, L_7, L_8, /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::BinarySearch(System.Array,System.Int32,System.Int32,System.Object,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
Exception_t * V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
Exception_t * V_8 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
String_t* G_B7_0 = NULL;
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___index1;
|
|
if ((((int32_t)L_2) < ((int32_t)0)))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___length2;
|
|
if ((((int32_t)L_3) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_4 = ___index1;
|
|
if ((((int32_t)L_4) < ((int32_t)0)))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, G_B7_0, _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
RuntimeArray * L_6 = ___array0;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL);
|
|
int32_t L_8 = ___index1;
|
|
int32_t L_9 = ___length2;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))) >= ((int32_t)L_9)))
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
RuntimeArray * L_11 = ___array0;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_11, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_12) == ((int32_t)1)))
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_13 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
|
|
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_13, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
RuntimeObject* L_14 = ___comparer4;
|
|
if (L_14)
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_il2cpp_TypeInfo_var);
|
|
LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * L_15 = ((LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_il2cpp_TypeInfo_var))->get_Default_0();
|
|
___comparer4 = L_15;
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
int32_t L_16 = ___index1;
|
|
V_0 = L_16;
|
|
int32_t L_17 = ___index1;
|
|
int32_t L_18 = ___length2;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18)), (int32_t)1));
|
|
RuntimeArray * L_19 = ___array0;
|
|
V_2 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_19, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = V_2;
|
|
if (!L_20)
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b8;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
int32_t L_21 = V_0;
|
|
int32_t L_22 = V_1;
|
|
int32_t L_23 = Array_GetMedian_mEB009518A8D446B196DCD5BED2D5BC27F1F3789F(L_21, L_22, /*hidden argument*/NULL);
|
|
V_3 = L_23;
|
|
}
|
|
|
|
IL_0085:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
RuntimeObject* L_24 = ___comparer4;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = V_2;
|
|
int32_t L_26 = V_3;
|
|
NullCheck(L_25);
|
|
int32_t L_27 = L_26;
|
|
RuntimeObject * L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
|
|
RuntimeObject * L_29 = ___value3;
|
|
NullCheck(L_24);
|
|
int32_t L_30 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_24, L_28, L_29);
|
|
V_4 = L_30;
|
|
goto IL_00a3;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0094;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0094:
|
|
{ // begin catch(System.Exception)
|
|
V_5 = ((Exception_t *)__exception_local);
|
|
Exception_t * L_31 = V_5;
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_32 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_32, _stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, L_31, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
IL_00a3:
|
|
{
|
|
int32_t L_33 = V_4;
|
|
if (L_33)
|
|
{
|
|
goto IL_00a9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_34 = V_3;
|
|
return L_34;
|
|
}
|
|
|
|
IL_00a9:
|
|
{
|
|
int32_t L_35 = V_4;
|
|
if ((((int32_t)L_35) >= ((int32_t)0)))
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_36 = V_3;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1));
|
|
goto IL_00b8;
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
int32_t L_37 = V_3;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1));
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
int32_t L_38 = V_0;
|
|
int32_t L_39 = V_1;
|
|
if ((((int32_t)L_38) <= ((int32_t)L_39)))
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0106;
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
int32_t L_40 = V_0;
|
|
int32_t L_41 = V_1;
|
|
int32_t L_42 = Array_GetMedian_mEB009518A8D446B196DCD5BED2D5BC27F1F3789F(L_40, L_41, /*hidden argument*/NULL);
|
|
V_6 = L_42;
|
|
}
|
|
|
|
IL_00c7:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
RuntimeObject* L_43 = ___comparer4;
|
|
RuntimeArray * L_44 = ___array0;
|
|
int32_t L_45 = V_6;
|
|
NullCheck(L_44);
|
|
RuntimeObject * L_46 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_44, L_45, /*hidden argument*/NULL);
|
|
RuntimeObject * L_47 = ___value3;
|
|
NullCheck(L_43);
|
|
int32_t L_48 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_43, L_46, L_47);
|
|
V_7 = L_48;
|
|
goto IL_00ea;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_00db;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00db:
|
|
{ // begin catch(System.Exception)
|
|
V_8 = ((Exception_t *)__exception_local);
|
|
Exception_t * L_49 = V_8;
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_50 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_50, _stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, L_49, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_50, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
IL_00ea:
|
|
{
|
|
int32_t L_51 = V_7;
|
|
if (L_51)
|
|
{
|
|
goto IL_00f1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_52 = V_6;
|
|
return L_52;
|
|
}
|
|
|
|
IL_00f1:
|
|
{
|
|
int32_t L_53 = V_7;
|
|
if ((((int32_t)L_53) >= ((int32_t)0)))
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_54 = V_6;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)1));
|
|
goto IL_0102;
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
int32_t L_55 = V_6;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)1));
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
int32_t L_56 = V_0;
|
|
int32_t L_57 = V_1;
|
|
if ((((int32_t)L_56) <= ((int32_t)L_57)))
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
|
|
IL_0106:
|
|
{
|
|
int32_t L_58 = V_0;
|
|
return ((~L_58));
|
|
}
|
|
}
|
|
// System.Int32 System.Array::GetMedian(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetMedian_mEB009518A8D446B196DCD5BED2D5BC27F1F3789F (int32_t ___low0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___low0;
|
|
int32_t L_1 = ___hi1;
|
|
int32_t L_2 = ___low0;
|
|
return ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))>>(int32_t)1))));
|
|
}
|
|
}
|
|
// System.Int32 System.Array::IndexOf(System.Array,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE (RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
RuntimeObject * L_3 = ___value1;
|
|
RuntimeArray * L_4 = ___array0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_4, 0, /*hidden argument*/NULL);
|
|
RuntimeArray * L_6 = ___array0;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL);
|
|
int32_t L_8 = Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135(L_2, L_3, L_5, L_7, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::IndexOf(System.Array,System.Object,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_mA7E8630309C4EF5671DA2FBCB8885DE80A9C2698 (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_IndexOf_mA7E8630309C4EF5671DA2FBCB8885DE80A9C2698_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_IndexOf_mA7E8630309C4EF5671DA2FBCB8885DE80A9C2698_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_2, 0, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
RuntimeArray * L_4 = ___array0;
|
|
RuntimeObject * L_5 = ___value1;
|
|
int32_t L_6 = ___startIndex2;
|
|
RuntimeArray * L_7 = ___array0;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_7, /*hidden argument*/NULL);
|
|
int32_t L_9 = ___startIndex2;
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135(L_4, L_5, L_6, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9)), (int32_t)L_10)), /*hidden argument*/NULL);
|
|
return L_11;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::IndexOf(System.Array,System.Object,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135 (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
RuntimeObject * V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
RuntimeObject * V_7 = NULL;
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_2, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_4 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
|
|
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_4, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
RuntimeArray * L_5 = ___array0;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_5, 0, /*hidden argument*/NULL);
|
|
V_0 = L_6;
|
|
int32_t L_7 = ___startIndex2;
|
|
int32_t L_8 = V_0;
|
|
if ((((int32_t)L_7) < ((int32_t)L_8)))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = ___startIndex2;
|
|
RuntimeArray * L_10 = ___array0;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_10, /*hidden argument*/NULL);
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_9) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_13 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_13, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
int32_t L_14 = ___count3;
|
|
if ((((int32_t)L_14) < ((int32_t)0)))
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = ___count3;
|
|
RuntimeArray * L_16 = ___array0;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_16, /*hidden argument*/NULL);
|
|
int32_t L_18 = ___startIndex2;
|
|
int32_t L_19 = V_0;
|
|
if ((((int32_t)L_15) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)), (int32_t)L_19)))))
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_20 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_20, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
RuntimeArray * L_21 = ___array0;
|
|
V_1 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_21, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
|
|
int32_t L_22 = ___startIndex2;
|
|
int32_t L_23 = ___count3;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)L_23));
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = V_1;
|
|
if (!L_24)
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_25 = ___value1;
|
|
if (L_25)
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_26 = ___startIndex2;
|
|
V_3 = L_26;
|
|
goto IL_008a;
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = V_1;
|
|
int32_t L_28 = V_3;
|
|
NullCheck(L_27);
|
|
int32_t L_29 = L_28;
|
|
RuntimeObject * L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
|
|
if (L_30)
|
|
{
|
|
goto IL_0086;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_31 = V_3;
|
|
return L_31;
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
int32_t L_32 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
int32_t L_33 = V_3;
|
|
int32_t L_34 = V_2;
|
|
if ((((int32_t)L_33) < ((int32_t)L_34)))
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
int32_t L_35 = ___startIndex2;
|
|
V_4 = L_35;
|
|
goto IL_00b2;
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = V_1;
|
|
int32_t L_37 = V_4;
|
|
NullCheck(L_36);
|
|
int32_t L_38 = L_37;
|
|
RuntimeObject * L_39 = (L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
|
|
V_5 = L_39;
|
|
RuntimeObject * L_40 = V_5;
|
|
if (!L_40)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_41 = V_5;
|
|
RuntimeObject * L_42 = ___value1;
|
|
NullCheck(L_41);
|
|
bool L_43 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_41, L_42);
|
|
if (!L_43)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_44 = V_4;
|
|
return L_44;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
int32_t L_45 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1));
|
|
}
|
|
|
|
IL_00b2:
|
|
{
|
|
int32_t L_46 = V_4;
|
|
int32_t L_47 = V_2;
|
|
if ((((int32_t)L_46) < ((int32_t)L_47)))
|
|
{
|
|
goto IL_0095;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
int32_t L_48 = ___startIndex2;
|
|
V_6 = L_48;
|
|
goto IL_00e5;
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
RuntimeArray * L_49 = ___array0;
|
|
int32_t L_50 = V_6;
|
|
NullCheck(L_49);
|
|
RuntimeObject * L_51 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_49, L_50, /*hidden argument*/NULL);
|
|
V_7 = L_51;
|
|
RuntimeObject * L_52 = V_7;
|
|
if (L_52)
|
|
{
|
|
goto IL_00d2;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_53 = ___value1;
|
|
if (L_53)
|
|
{
|
|
goto IL_00df;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_54 = V_6;
|
|
return L_54;
|
|
}
|
|
|
|
IL_00d2:
|
|
{
|
|
RuntimeObject * L_55 = V_7;
|
|
RuntimeObject * L_56 = ___value1;
|
|
NullCheck(L_55);
|
|
bool L_57 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_55, L_56);
|
|
if (!L_57)
|
|
{
|
|
goto IL_00df;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_58 = V_6;
|
|
return L_58;
|
|
}
|
|
|
|
IL_00df:
|
|
{
|
|
int32_t L_59 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)1));
|
|
}
|
|
|
|
IL_00e5:
|
|
{
|
|
int32_t L_60 = V_6;
|
|
int32_t L_61 = V_2;
|
|
if ((((int32_t)L_60) < ((int32_t)L_61)))
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
int32_t L_62 = V_0;
|
|
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_62, (int32_t)1));
|
|
}
|
|
}
|
|
// System.Int32 System.Array::LastIndexOf(System.Array,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_m006743435ADB118F21F84D72A7696BBAC1A13B6F (RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_LastIndexOf_m006743435ADB118F21F84D72A7696BBAC1A13B6F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_LastIndexOf_m006743435ADB118F21F84D72A7696BBAC1A13B6F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
RuntimeObject * L_3 = ___value1;
|
|
RuntimeArray * L_4 = ___array0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_4, /*hidden argument*/NULL);
|
|
RuntimeArray * L_6 = ___array0;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL);
|
|
int32_t L_8 = Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD(L_2, L_3, ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)), L_7, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::LastIndexOf(System.Array,System.Object,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_m1CEBDBF89EEB54640CC5819B2FC71991D1F6AC89 (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_LastIndexOf_m1CEBDBF89EEB54640CC5819B2FC71991D1F6AC89_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_LastIndexOf_m1CEBDBF89EEB54640CC5819B2FC71991D1F6AC89_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
RuntimeObject * L_3 = ___value1;
|
|
int32_t L_4 = ___startIndex2;
|
|
int32_t L_5 = ___startIndex2;
|
|
int32_t L_6 = Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD(L_2, L_3, L_4, ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)), /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::LastIndexOf(System.Array,System.Object,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject * V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
RuntimeObject * V_6 = NULL;
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_2, /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ___startIndex2;
|
|
if ((((int32_t)L_4) < ((int32_t)0)))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___startIndex2;
|
|
RuntimeArray * L_6 = ___array0;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_5) < ((int32_t)L_7)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
int32_t L_9 = ___count3;
|
|
if ((((int32_t)L_9) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
int32_t L_11 = ___count3;
|
|
int32_t L_12 = ___startIndex2;
|
|
if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)))))
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_13 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_13, _stringLiteral29809FBAF5E4FEC88F4127F291473B14B195B3C7, _stringLiteral8C02C6383418D741689393BE88DE4F9BB09E4F45, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
RuntimeArray * L_14 = ___array0;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_14, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_15) == ((int32_t)1)))
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_16 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
|
|
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_16, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
RuntimeArray * L_17 = ___array0;
|
|
V_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_17, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
|
|
int32_t L_18 = ___startIndex2;
|
|
int32_t L_19 = ___count3;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19)), (int32_t)1));
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = V_0;
|
|
if (!L_20)
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_21 = ___value1;
|
|
if (L_21)
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_22 = ___startIndex2;
|
|
V_2 = L_22;
|
|
goto IL_0095;
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_0;
|
|
int32_t L_24 = V_2;
|
|
NullCheck(L_23);
|
|
int32_t L_25 = L_24;
|
|
RuntimeObject * L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
if (L_26)
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_27 = V_2;
|
|
return L_27;
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
int32_t L_28 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1));
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
int32_t L_29 = V_2;
|
|
int32_t L_30 = V_1;
|
|
if ((((int32_t)L_29) >= ((int32_t)L_30)))
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ef;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
int32_t L_31 = ___startIndex2;
|
|
V_3 = L_31;
|
|
goto IL_00b8;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = V_0;
|
|
int32_t L_33 = V_3;
|
|
NullCheck(L_32);
|
|
int32_t L_34 = L_33;
|
|
RuntimeObject * L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
|
|
V_4 = L_35;
|
|
RuntimeObject * L_36 = V_4;
|
|
if (!L_36)
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_37 = V_4;
|
|
RuntimeObject * L_38 = ___value1;
|
|
NullCheck(L_37);
|
|
bool L_39 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_37, L_38);
|
|
if (!L_39)
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_40 = V_3;
|
|
return L_40;
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
int32_t L_41 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1));
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
int32_t L_42 = V_3;
|
|
int32_t L_43 = V_1;
|
|
if ((((int32_t)L_42) >= ((int32_t)L_43)))
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ef;
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
int32_t L_44 = ___startIndex2;
|
|
V_5 = L_44;
|
|
goto IL_00ea;
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
RuntimeArray * L_45 = ___array0;
|
|
int32_t L_46 = V_5;
|
|
NullCheck(L_45);
|
|
RuntimeObject * L_47 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_45, L_46, /*hidden argument*/NULL);
|
|
V_6 = L_47;
|
|
RuntimeObject * L_48 = V_6;
|
|
if (L_48)
|
|
{
|
|
goto IL_00d7;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_49 = ___value1;
|
|
if (L_49)
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_50 = V_5;
|
|
return L_50;
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
RuntimeObject * L_51 = V_6;
|
|
RuntimeObject * L_52 = ___value1;
|
|
NullCheck(L_51);
|
|
bool L_53 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_51, L_52);
|
|
if (!L_53)
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_54 = V_5;
|
|
return L_54;
|
|
}
|
|
|
|
IL_00e4:
|
|
{
|
|
int32_t L_55 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)1));
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
int32_t L_56 = V_5;
|
|
int32_t L_57 = V_1;
|
|
if ((((int32_t)L_56) >= ((int32_t)L_57)))
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
// System.Void System.Array::Reverse(System.Array)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_mF6A81D8EC8E17D7B3BE5F9B4EE763E3D43E57440 (RuntimeArray * ___array0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Reverse_mF6A81D8EC8E17D7B3BE5F9B4EE763E3D43E57440_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_Reverse_mF6A81D8EC8E17D7B3BE5F9B4EE763E3D43E57440_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
RuntimeArray * L_3 = ___array0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_3, 0, /*hidden argument*/NULL);
|
|
RuntimeArray * L_5 = ___array0;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_5, /*hidden argument*/NULL);
|
|
Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B(L_2, L_4, L_6, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Reverse(System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_3 = NULL;
|
|
RuntimeObject * V_4 = NULL;
|
|
RuntimeObject * V_5 = NULL;
|
|
String_t* G_B7_0 = NULL;
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_2, 0, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
int32_t L_4 = ___index1;
|
|
int32_t L_5 = V_0;
|
|
if ((((int32_t)L_4) < ((int32_t)L_5)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___length2;
|
|
if ((((int32_t)L_6) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_7 = ___index1;
|
|
int32_t L_8 = V_0;
|
|
if ((((int32_t)L_7) < ((int32_t)L_8)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B7_0, _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
RuntimeArray * L_10 = ___array0;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_10, /*hidden argument*/NULL);
|
|
int32_t L_12 = ___index1;
|
|
int32_t L_13 = V_0;
|
|
int32_t L_14 = ___length2;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13))))) >= ((int32_t)L_14)))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
RuntimeArray * L_16 = ___array0;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_16, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_17) == ((int32_t)1)))
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_18 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
|
|
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_18, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
int32_t L_19 = ___index1;
|
|
V_1 = L_19;
|
|
int32_t L_20 = ___index1;
|
|
int32_t L_21 = ___length2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_21)), (int32_t)1));
|
|
RuntimeArray * L_22 = ___array0;
|
|
V_3 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_22, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_3;
|
|
if (!L_23)
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = V_3;
|
|
int32_t L_25 = V_1;
|
|
NullCheck(L_24);
|
|
int32_t L_26 = L_25;
|
|
RuntimeObject * L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
|
|
V_4 = L_27;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = V_3;
|
|
int32_t L_29 = V_1;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = V_3;
|
|
int32_t L_31 = V_2;
|
|
NullCheck(L_30);
|
|
int32_t L_32 = L_31;
|
|
RuntimeObject * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
|
|
NullCheck(L_28);
|
|
ArrayElementTypeCheck (L_28, L_33);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(L_29), (RuntimeObject *)L_33);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = V_3;
|
|
int32_t L_35 = V_2;
|
|
RuntimeObject * L_36 = V_4;
|
|
NullCheck(L_34);
|
|
ArrayElementTypeCheck (L_34, L_36);
|
|
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(L_35), (RuntimeObject *)L_36);
|
|
int32_t L_37 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1));
|
|
int32_t L_38 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)1));
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
int32_t L_39 = V_1;
|
|
int32_t L_40 = V_2;
|
|
if ((((int32_t)L_39) < ((int32_t)L_40)))
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
RuntimeArray * L_41 = ___array0;
|
|
int32_t L_42 = V_1;
|
|
NullCheck(L_41);
|
|
RuntimeObject * L_43 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_41, L_42, /*hidden argument*/NULL);
|
|
V_5 = L_43;
|
|
RuntimeArray * L_44 = ___array0;
|
|
RuntimeArray * L_45 = ___array0;
|
|
int32_t L_46 = V_2;
|
|
NullCheck(L_45);
|
|
RuntimeObject * L_47 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_45, L_46, /*hidden argument*/NULL);
|
|
int32_t L_48 = V_1;
|
|
NullCheck(L_44);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_44, L_47, L_48, /*hidden argument*/NULL);
|
|
RuntimeArray * L_49 = ___array0;
|
|
RuntimeObject * L_50 = V_5;
|
|
int32_t L_51 = V_2;
|
|
NullCheck(L_49);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_49, L_50, L_51, /*hidden argument*/NULL);
|
|
int32_t L_52 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)1));
|
|
int32_t L_53 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_53, (int32_t)1));
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
int32_t L_54 = V_1;
|
|
int32_t L_55 = V_2;
|
|
if ((((int32_t)L_54) < ((int32_t)L_55)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::SetValue(System.Object,System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mD1677B396331152BA588E2EEF167F04E832F3849 (RuntimeArray * __this, RuntimeObject * ___value0, int64_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_SetValue_mD1677B396331152BA588E2EEF167F04E832F3849_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = ___index1;
|
|
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = ___index1;
|
|
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_SetValue_mD1677B396331152BA588E2EEF167F04E832F3849_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
RuntimeObject * L_3 = ___value0;
|
|
int64_t L_4 = ___index1;
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(__this, L_3, (((int32_t)((int32_t)L_4))), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::SetValue(System.Object,System.Int64,System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744 (RuntimeArray * __this, RuntimeObject * ___value0, int64_t ___index11, int64_t ___index22, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = ___index11;
|
|
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = ___index11;
|
|
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralA2BF42BFCABC8FAE659BF90BD0F026411D146676, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int64_t L_3 = ___index22;
|
|
if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_4 = ___index22;
|
|
if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral85144172F82F20D22E554672D1927DE158BB79A8, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
RuntimeObject * L_6 = ___value0;
|
|
int64_t L_7 = ___index11;
|
|
int64_t L_8 = ___index22;
|
|
Array_SetValue_mF7A2D69DFE9E9AE0F08A705123C48752D212CF6E(__this, L_6, (((int32_t)((int32_t)L_7))), (((int32_t)((int32_t)L_8))), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::SetValue(System.Object,System.Int64,System.Int64,System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E (RuntimeArray * __this, RuntimeObject * ___value0, int64_t ___index11, int64_t ___index22, int64_t ___index33, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = ___index11;
|
|
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = ___index11;
|
|
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralA2BF42BFCABC8FAE659BF90BD0F026411D146676, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int64_t L_3 = ___index22;
|
|
if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_4 = ___index22;
|
|
if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral85144172F82F20D22E554672D1927DE158BB79A8, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
int64_t L_6 = ___index33;
|
|
if ((((int64_t)L_6) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_7 = ___index33;
|
|
if ((((int64_t)L_7) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralF34463B5B4D8E56E5BA46302DE551ABB85C709D2, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
RuntimeObject * L_9 = ___value0;
|
|
int64_t L_10 = ___index11;
|
|
int64_t L_11 = ___index22;
|
|
int64_t L_12 = ___index33;
|
|
Array_SetValue_m3AC2F0A285B2E7E1BBCD468B28E89E847CBC8C60(__this, L_9, (((int32_t)((int32_t)L_10))), (((int32_t)((int32_t)L_11))), (((int32_t)((int32_t)L_12))), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::SetValue(System.Object,System.Int64[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D (RuntimeArray * __this, RuntimeObject * ___value0, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___indices1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_0 = ___indices1;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral1E01512B1E7D3EA5B69D1F71AC90A9451071D646, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL);
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_3 = ___indices1;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, _stringLiteral226F66629D3BEDCC2E8003A076001F365A2F0A80, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_5 = ___indices1;
|
|
NullCheck(L_5);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))));
|
|
V_0 = L_6;
|
|
V_1 = 0;
|
|
goto IL_0060;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_7 = ___indices1;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
int64_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
V_2 = L_10;
|
|
int64_t L_11 = V_2;
|
|
if ((((int64_t)L_11) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_12 = V_2;
|
|
if ((((int64_t)L_12) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_13 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_13, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_14 = V_0;
|
|
int32_t L_15 = V_1;
|
|
int64_t L_16 = V_2;
|
|
NullCheck(L_14);
|
|
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (int32_t)(((int32_t)((int32_t)L_16))));
|
|
int32_t L_17 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
int32_t L_18 = V_1;
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_19 = ___indices1;
|
|
NullCheck(L_19);
|
|
if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_20 = ___value0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_21 = V_0;
|
|
Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380(__this, L_20, L_21, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Sort(System.Array)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m33A59C114BC9E9D74876BD0C6356D2D8DD383B0E (RuntimeArray * ___array0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Sort_m33A59C114BC9E9D74876BD0C6356D2D8DD383B0E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_Sort_m33A59C114BC9E9D74876BD0C6356D2D8DD383B0E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
RuntimeArray * L_3 = ___array0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_3, 0, /*hidden argument*/NULL);
|
|
RuntimeArray * L_5 = ___array0;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_5, /*hidden argument*/NULL);
|
|
Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_2, (RuntimeArray *)NULL, L_4, L_6, (RuntimeObject*)NULL, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Sort(System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m0A28F9E067B497C87A6DAB08B5614EE93BAC63C1 (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
int32_t L_1 = ___index1;
|
|
int32_t L_2 = ___length2;
|
|
Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_0, (RuntimeArray *)NULL, L_1, L_2, (RuntimeObject*)NULL, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Sort(System.Array,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A (RuntimeArray * ___array0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
RuntimeArray * L_3 = ___array0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_3, 0, /*hidden argument*/NULL);
|
|
RuntimeArray * L_5 = ___array0;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_5, /*hidden argument*/NULL);
|
|
RuntimeObject* L_7 = ___comparer1;
|
|
Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_2, (RuntimeArray *)NULL, L_4, L_6, L_7, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Sort(System.Array,System.Int32,System.Int32,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_mFB179CA0C7D29427781B2F4B86DCCC36DDABE967 (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
int32_t L_1 = ___index1;
|
|
int32_t L_2 = ___length2;
|
|
RuntimeObject* L_3 = ___comparer3;
|
|
Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_0, (RuntimeArray *)NULL, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Sort(System.Array,System.Array)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m82F14E448023AE35C0A0E97D83C0E05B1CA3022E (RuntimeArray * ___keys0, RuntimeArray * ___items1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Sort_m82F14E448023AE35C0A0E97D83C0E05B1CA3022E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___keys0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral5944AE25418CEABCF285DCA1D721B77888DAC89B, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_Sort_m82F14E448023AE35C0A0E97D83C0E05B1CA3022E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___keys0;
|
|
RuntimeArray * L_3 = ___items1;
|
|
RuntimeArray * L_4 = ___keys0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_4, 0, /*hidden argument*/NULL);
|
|
RuntimeArray * L_6 = ___keys0;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL);
|
|
Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_2, L_3, L_5, L_7, (RuntimeObject*)NULL, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Sort(System.Array,System.Array,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m2532902787B0BBF002B3F7FE7D731E96D0452D3F (RuntimeArray * ___keys0, RuntimeArray * ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Sort_m2532902787B0BBF002B3F7FE7D731E96D0452D3F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___keys0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral5944AE25418CEABCF285DCA1D721B77888DAC89B, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_Sort_m2532902787B0BBF002B3F7FE7D731E96D0452D3F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___keys0;
|
|
RuntimeArray * L_3 = ___items1;
|
|
RuntimeArray * L_4 = ___keys0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_4, 0, /*hidden argument*/NULL);
|
|
RuntimeArray * L_6 = ___keys0;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL);
|
|
RuntimeObject* L_8 = ___comparer2;
|
|
Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_2, L_3, L_5, L_7, L_8, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Sort(System.Array,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_mA495EFE386747439EB8D39D9C7D980CE67EC88B4 (RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeArray * L_0 = ___keys0;
|
|
RuntimeArray * L_1 = ___items1;
|
|
int32_t L_2 = ___index2;
|
|
int32_t L_3 = ___length3;
|
|
Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_0, L_1, L_2, L_3, (RuntimeObject*)NULL, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Sort(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80 (RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
String_t* G_B14_0 = NULL;
|
|
{
|
|
RuntimeArray * L_0 = ___keys0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral5944AE25418CEABCF285DCA1D721B77888DAC89B, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___keys0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_2, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_4 = ___items1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_5 = ___items1;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_5, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_6) == ((int32_t)1)))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_7 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
|
|
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_7, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
RuntimeArray * L_8 = ___keys0;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_8, 0, /*hidden argument*/NULL);
|
|
V_0 = L_9;
|
|
RuntimeArray * L_10 = ___items1;
|
|
if (!L_10)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = V_0;
|
|
RuntimeArray * L_12 = ___items1;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_12, 0, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_11) == ((int32_t)L_13)))
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_14, _stringLiteralF75A366185FA685A8394FE9828B6E63715C3E110, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
int32_t L_15 = ___index2;
|
|
int32_t L_16 = V_0;
|
|
if ((((int32_t)L_15) < ((int32_t)L_16)))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = ___length3;
|
|
if ((((int32_t)L_17) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0071;
|
|
}
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
int32_t L_18 = ___length3;
|
|
if ((((int32_t)L_18) < ((int32_t)0)))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
G_B14_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
|
|
goto IL_0066;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
G_B14_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_19 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_19, G_B14_0, _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
RuntimeArray * L_20 = ___keys0;
|
|
NullCheck(L_20);
|
|
int32_t L_21 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_20, /*hidden argument*/NULL);
|
|
int32_t L_22 = ___index2;
|
|
int32_t L_23 = V_0;
|
|
int32_t L_24 = ___length3;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)L_23))))) < ((int32_t)L_24)))
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_25 = ___items1;
|
|
if (!L_25)
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_26 = ___index2;
|
|
int32_t L_27 = V_0;
|
|
RuntimeArray * L_28 = ___items1;
|
|
NullCheck(L_28);
|
|
int32_t L_29 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_28, /*hidden argument*/NULL);
|
|
int32_t L_30 = ___length3;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)L_27))) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)L_30)))))
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_31 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_31, _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
int32_t L_32 = ___length3;
|
|
if ((((int32_t)L_32) <= ((int32_t)1)))
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_33 = ___keys0;
|
|
RuntimeArray * L_34 = ___items1;
|
|
int32_t L_35 = ___index2;
|
|
int32_t L_36 = ___length3;
|
|
RuntimeObject* L_37 = ___comparer4;
|
|
Array_SortImpl_m69441E6855557430ED59346309E0AAA6BFB2305A(L_33, L_34, L_35, L_36, L_37, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator System.Array::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetEnumerator_m3BD9ACCA9512DA3687C8369BF999BA2916F0EA15 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_GetEnumerator_m3BD9ACCA9512DA3687C8369BF999BA2916F0EA15_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * L_0 = (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C *)il2cpp_codegen_object_new(ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C_il2cpp_TypeInfo_var);
|
|
ArrayEnumerator__ctor_mF6431B42D70C8DACACCEC14D1676A6EACA831062(L_0, __this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.Array::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array__ctor_m762F33A3531AC2E0EBD517C35AD49D55BF77F5BC (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::InternalArray__ICollection_get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__ICollection_get_Count_m258EEE9DCC6F1DD962F306641B8CB3D1D3574020 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.Array::InternalArray__ICollection_get_IsReadOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_get_IsReadOnly_m2E88A2A0F2CACCDA2BE7CB47D9218B5E358462A8 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Void System.Array::InternalArray__ICollection_Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Clear_m6BF89179531F325DB05C4BB7E715368EC29D1138 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Clear_m6BF89179531F325DB05C4BB7E715368EC29D1138_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteralBE51AF91F50F81AA82DB4AA438A59E58D533DB76, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Array_InternalArray__ICollection_Clear_m6BF89179531F325DB05C4BB7E715368EC29D1138_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Int32 System.Array::InternalArray__IReadOnlyCollection_get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyCollection_get_Count_mB565FC31A46B4BB7C9D848BFE6D12F2FB5F1D3BC (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.Array::InternalArray__RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__RemoveAt_m23A3E2814F63B0BE35E716E0E2F09DD1B945DF85 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_InternalArray__RemoveAt_m23A3E2814F63B0BE35E716E0E2F09DD1B945DF85_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Array_InternalArray__RemoveAt_m23A3E2814F63B0BE35E716E0E2F09DD1B945DF85_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Int32 System.Array::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, 0, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
V_1 = 1;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
int32_t L_2 = V_1;
|
|
int32_t L_3 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, L_2, /*hidden argument*/NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)L_3));
|
|
int32_t L_4 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_5 = V_1;
|
|
int32_t L_6 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_5) < ((int32_t)L_6)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::get_Rank()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Array_GetRank_m775CE73252FA44EA9265ACF1F6AA463A7CD51F39(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Int32 System.Array::GetRank()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetRank_m775CE73252FA44EA9265ACF1F6AA463A7CD51F39 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
typedef int32_t (*Array_GetRank_m775CE73252FA44EA9265ACF1F6AA463A7CD51F39_ftn) (RuntimeArray *);
|
|
using namespace il2cpp::icalls;
|
|
return ((Array_GetRank_m775CE73252FA44EA9265ACF1F6AA463A7CD51F39_ftn)mscorlib::System::Array::GetRank) (__this);
|
|
}
|
|
// System.Int32 System.Array::GetLength(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method)
|
|
{
|
|
typedef int32_t (*Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359_ftn) (RuntimeArray *, int32_t);
|
|
using namespace il2cpp::icalls;
|
|
return ((Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359_ftn)mscorlib::System::Array::GetLength) (__this, ___dimension0);
|
|
}
|
|
// System.Int32 System.Array::GetLowerBound(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method)
|
|
{
|
|
typedef int32_t (*Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B_ftn) (RuntimeArray *, int32_t);
|
|
using namespace il2cpp::icalls;
|
|
return ((Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B_ftn)mscorlib::System::Array::GetLowerBound) (__this, ___dimension0);
|
|
}
|
|
// System.Object System.Array::GetValue(System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C (RuntimeArray * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___indices0, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject * (*Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C_ftn) (RuntimeArray *, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*);
|
|
using namespace il2cpp::icalls;
|
|
return ((Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C_ftn)mscorlib::System::Array::GetValue) (__this, ___indices0);
|
|
}
|
|
// System.Void System.Array::SetValue(System.Object,System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380 (RuntimeArray * __this, RuntimeObject * ___value0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___indices1, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380_ftn) (RuntimeArray *, RuntimeObject *, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*);
|
|
using namespace il2cpp::icalls;
|
|
((Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380_ftn)mscorlib::System::Array::SetValue) (__this, ___value0, ___indices1);
|
|
}
|
|
// System.Object System.Array::GetValueImpl(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096 (RuntimeArray * __this, int32_t ___pos0, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject * (*Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096_ftn) (RuntimeArray *, int32_t);
|
|
using namespace il2cpp::icalls;
|
|
return ((Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096_ftn)mscorlib::System::Array::GetValueImpl) (__this, ___pos0);
|
|
}
|
|
// System.Void System.Array::SetValueImpl(System.Object,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___pos1, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5_ftn) (RuntimeArray *, RuntimeObject *, int32_t);
|
|
using namespace il2cpp::icalls;
|
|
((Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5_ftn)mscorlib::System::Array::SetValueImpl) (__this, ___value0, ___pos1);
|
|
}
|
|
// System.Boolean System.Array::FastCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_FastCopy_m60EEEAC06AB32A37A7FF6C4EB31B2FB54B170097 (RuntimeArray * ___source0, int32_t ___source_idx1, RuntimeArray * ___dest2, int32_t ___dest_idx3, int32_t ___length4, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*Array_FastCopy_m60EEEAC06AB32A37A7FF6C4EB31B2FB54B170097_ftn) (RuntimeArray *, int32_t, RuntimeArray *, int32_t, int32_t);
|
|
using namespace il2cpp::icalls;
|
|
return ((Array_FastCopy_m60EEEAC06AB32A37A7FF6C4EB31B2FB54B170097_ftn)mscorlib::System::Array::FastCopy) (___source0, ___source_idx1, ___dest2, ___dest_idx3, ___length4);
|
|
}
|
|
// System.Array System.Array::CreateInstanceImpl(System.Type,System.Int32[],System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248 (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___bounds2, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeArray * (*Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248_ftn) (Type_t *, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*);
|
|
using namespace il2cpp::icalls;
|
|
return ((Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248_ftn)mscorlib::System::Array::CreateInstanceImpl) (___elementType0, ___lengths1, ___bounds2);
|
|
}
|
|
// System.Int32 System.Array::GetUpperBound(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetUpperBound_m3BFCEE3EAF66EDFC829270B533D2C2C3907715F4 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___dimension0;
|
|
int32_t L_1 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(__this, L_0, /*hidden argument*/NULL);
|
|
int32_t L_2 = ___dimension0;
|
|
int32_t L_3 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, L_2, /*hidden argument*/NULL);
|
|
return ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_3)), (int32_t)1));
|
|
}
|
|
}
|
|
// System.Object System.Array::GetValue(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_0) == ((int32_t)1)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
int32_t L_2 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(__this, 0, /*hidden argument*/NULL);
|
|
V_0 = L_2;
|
|
int32_t L_3 = ___index0;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_3) < ((int32_t)L_4)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___index0;
|
|
int32_t L_6 = Array_GetUpperBound_m3BFCEE3EAF66EDFC829270B533D2C2C3907715F4(__this, 0, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_5) <= ((int32_t)L_6)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_7 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralFBA88196CE9952C9BF4FA1DBA8CC7F1B418E4773, /*hidden argument*/NULL);
|
|
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_8 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
|
|
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_8, L_7, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
Type_t * L_9 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_9);
|
|
Type_t * L_10 = VirtFuncInvoker0< Type_t * >::Invoke(127 /* System.Type System.Type::GetElementType() */, L_9);
|
|
NullCheck(L_10);
|
|
bool L_11 = Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57(L_10, /*hidden argument*/NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_12 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_12, _stringLiteralB55428CB375AB9C781897FA54736E74AACB5D33C, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
int32_t L_13 = ___index0;
|
|
int32_t L_14 = V_0;
|
|
RuntimeObject * L_15 = Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)), /*hidden argument*/NULL);
|
|
return L_15;
|
|
}
|
|
}
|
|
// System.Object System.Array::GetValue(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mEC23FDFB21649A4D9D90D6EA363CCE4E58D676A0 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_GetValue_mEC23FDFB21649A4D9D90D6EA363CCE4E58D676A0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0;
|
|
int32_t L_2 = ___index10;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1;
|
|
int32_t L_4 = ___index21;
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4);
|
|
V_0 = L_3;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = V_0;
|
|
RuntimeObject * L_6 = Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C(__this, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Object System.Array::GetValue(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mA5B92FA4128EA88A676AB446C957C6C1D3D3D900 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, int32_t ___index32, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_GetValue_mA5B92FA4128EA88A676AB446C957C6C1D3D3D900_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0;
|
|
int32_t L_2 = ___index10;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1;
|
|
int32_t L_4 = ___index21;
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = L_3;
|
|
int32_t L_6 = ___index32;
|
|
NullCheck(L_5);
|
|
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)L_6);
|
|
V_0 = L_5;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = V_0;
|
|
RuntimeObject * L_8 = Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C(__this, L_7, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Void System.Array::SetValue(System.Object,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_0) == ((int32_t)1)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
int32_t L_2 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(__this, 0, /*hidden argument*/NULL);
|
|
V_0 = L_2;
|
|
int32_t L_3 = ___index1;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_3) < ((int32_t)L_4)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___index1;
|
|
int32_t L_6 = Array_GetUpperBound_m3BFCEE3EAF66EDFC829270B533D2C2C3907715F4(__this, 0, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_5) <= ((int32_t)L_6)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_7 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralBC5C4002E88BA9FC743F3B13F5B24641F5F9B9F1, /*hidden argument*/NULL);
|
|
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_8 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
|
|
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_8, L_7, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
Type_t * L_9 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_9);
|
|
Type_t * L_10 = VirtFuncInvoker0< Type_t * >::Invoke(127 /* System.Type System.Type::GetElementType() */, L_9);
|
|
NullCheck(L_10);
|
|
bool L_11 = Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57(L_10, /*hidden argument*/NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_12 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_12, _stringLiteralB55428CB375AB9C781897FA54736E74AACB5D33C, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
RuntimeObject * L_13 = ___value0;
|
|
int32_t L_14 = ___index1;
|
|
int32_t L_15 = V_0;
|
|
Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5(__this, L_13, ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15)), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::SetValue(System.Object,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mF7A2D69DFE9E9AE0F08A705123C48752D212CF6E (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index11, int32_t ___index22, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_SetValue_mF7A2D69DFE9E9AE0F08A705123C48752D212CF6E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0;
|
|
int32_t L_2 = ___index11;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1;
|
|
int32_t L_4 = ___index22;
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4);
|
|
V_0 = L_3;
|
|
RuntimeObject * L_5 = ___value0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0;
|
|
Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380(__this, L_5, L_6, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::SetValue(System.Object,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m3AC2F0A285B2E7E1BBCD468B28E89E847CBC8C60 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index11, int32_t ___index22, int32_t ___index33, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_SetValue_m3AC2F0A285B2E7E1BBCD468B28E89E847CBC8C60_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0;
|
|
int32_t L_2 = ___index11;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1;
|
|
int32_t L_4 = ___index22;
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = L_3;
|
|
int32_t L_6 = ___index33;
|
|
NullCheck(L_5);
|
|
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)L_6);
|
|
V_0 = L_5;
|
|
RuntimeObject * L_7 = ___value0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = V_0;
|
|
Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380(__this, L_7, L_8, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Array System.Array::UnsafeCreateInstance(System.Type,System.Int32[],System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_UnsafeCreateInstance_m3524CE53B16324730C94C54940BB63A5CF67BD53 (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lowerBounds2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = ___elementType0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___lengths1;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = ___lowerBounds2;
|
|
RuntimeArray * L_3 = Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Array System.Array::UnsafeCreateInstance(System.Type,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_UnsafeCreateInstance_mCE4A46E97DE384B6F469D8DEAAD99A0CCB66C9B4 (Type_t * ___elementType0, int32_t ___length11, int32_t ___length22, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = ___elementType0;
|
|
int32_t L_1 = ___length11;
|
|
int32_t L_2 = ___length22;
|
|
RuntimeArray * L_3 = Array_CreateInstance_m5FE74E0701D431412B309031C208BB7F0B62AA05(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Array System.Array::UnsafeCreateInstance(System.Type,System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_UnsafeCreateInstance_m48C48756F11E597154438531519DD9279FEA273B (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = ___elementType0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___lengths1;
|
|
RuntimeArray * L_2 = Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207(L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Array System.Array::CreateInstance(System.Type,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F (Type_t * ___elementType0, int32_t ___length1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0;
|
|
int32_t L_2 = ___length1;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2);
|
|
V_0 = L_1;
|
|
Type_t * L_3 = ___elementType0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = V_0;
|
|
RuntimeArray * L_5 = Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207(L_3, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Array System.Array::CreateInstance(System.Type,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m5FE74E0701D431412B309031C208BB7F0B62AA05 (Type_t * ___elementType0, int32_t ___length11, int32_t ___length22, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_CreateInstance_m5FE74E0701D431412B309031C208BB7F0B62AA05_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0;
|
|
int32_t L_2 = ___length11;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1;
|
|
int32_t L_4 = ___length22;
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4);
|
|
V_0 = L_3;
|
|
Type_t * L_5 = ___elementType0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0;
|
|
RuntimeArray * L_7 = Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207(L_5, L_6, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Array System.Array::CreateInstance(System.Type,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_mA240E55E62250C18ED5DFF119055CF5002C4CE3F (Type_t * ___elementType0, int32_t ___length11, int32_t ___length22, int32_t ___length33, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_CreateInstance_mA240E55E62250C18ED5DFF119055CF5002C4CE3F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0;
|
|
int32_t L_2 = ___length11;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1;
|
|
int32_t L_4 = ___length22;
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = L_3;
|
|
int32_t L_6 = ___length33;
|
|
NullCheck(L_5);
|
|
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)L_6);
|
|
V_0 = L_5;
|
|
Type_t * L_7 = ___elementType0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = V_0;
|
|
RuntimeArray * L_9 = Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207(L_7, L_8, /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Array System.Array::CreateInstance(System.Type,System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207 (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
|
|
{
|
|
Type_t * L_0 = ___elementType0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFEDEA86F850498B9408AA6DD2D9EC98B70FF80A6, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = ___lengths1;
|
|
if (L_3)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = ___lengths1;
|
|
NullCheck(L_5);
|
|
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))) <= ((int32_t)((int32_t)255))))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * L_6 = (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 *)il2cpp_codegen_object_new(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1_il2cpp_TypeInfo_var);
|
|
TypeLoadException__ctor_mEF05D23A192E0B9BFAAA97A77A0FC1BCBE7B4355(L_6, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL;
|
|
Type_t * L_7 = ___elementType0;
|
|
NullCheck(L_7);
|
|
Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(136 /* System.Type System.Type::get_UnderlyingSystemType() */, L_7);
|
|
___elementType0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_8, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
|
|
Type_t * L_9 = ___elementType0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_9, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, _stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, _stringLiteralFEDEA86F850498B9408AA6DD2D9EC98B70FF80A6, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
Type_t * L_12 = ___elementType0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_13 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_14 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_13, /*hidden argument*/NULL);
|
|
NullCheck(L_12);
|
|
bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(142 /* System.Boolean System.Type::Equals(System.Type) */, L_12, L_14);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_16 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_16, _stringLiteral68D59FC714B5460FC26BC3AE971DDFFCC060AA1E, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
Type_t * L_17 = ___elementType0;
|
|
NullCheck(L_17);
|
|
bool L_18 = VirtFuncInvoker0< bool >::Invoke(108 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_17);
|
|
if (!L_18)
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_19 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_19, _stringLiteral95928427D7DAC48D21CF83BD4DC9E14CD6E37988, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
Type_t * L_20 = ___elementType0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_21 = ___lengths1;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_22 = V_0;
|
|
RuntimeArray * L_23 = Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248(L_20, L_21, L_22, /*hidden argument*/NULL);
|
|
return L_23;
|
|
}
|
|
}
|
|
// System.Array System.Array::CreateInstance(System.Type,System.Int32[],System.Int32[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lowerBounds2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
Type_t * L_0 = ___elementType0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFEDEA86F850498B9408AA6DD2D9EC98B70FF80A6, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = ___lengths1;
|
|
if (L_3)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = ___lowerBounds2;
|
|
if (L_5)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_6 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_6, _stringLiteralDAD53F4604A2CA0126F8BD8633CC0B25F089B4E9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
Type_t * L_7 = ___elementType0;
|
|
NullCheck(L_7);
|
|
Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(136 /* System.Type System.Type::get_UnderlyingSystemType() */, L_7);
|
|
___elementType0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_8, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
|
|
Type_t * L_9 = ___elementType0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_9, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, _stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, _stringLiteralFEDEA86F850498B9408AA6DD2D9EC98B70FF80A6, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
Type_t * L_12 = ___elementType0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_13 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_14 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_13, /*hidden argument*/NULL);
|
|
NullCheck(L_12);
|
|
bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(142 /* System.Boolean System.Type::Equals(System.Type) */, L_12, L_14);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_16 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_16, _stringLiteral68D59FC714B5460FC26BC3AE971DDFFCC060AA1E, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
Type_t * L_17 = ___elementType0;
|
|
NullCheck(L_17);
|
|
bool L_18 = VirtFuncInvoker0< bool >::Invoke(108 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_17);
|
|
if (!L_18)
|
|
{
|
|
goto IL_0086;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_19 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_19, _stringLiteral95928427D7DAC48D21CF83BD4DC9E14CD6E37988, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_20 = ___lengths1;
|
|
NullCheck(L_20);
|
|
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))))) >= ((int32_t)1)))
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_21 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral4337CB30685E8A997FBBE9444610966756E1270F, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_22 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_22, L_21, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = ___lengths1;
|
|
NullCheck(L_23);
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_24 = ___lowerBounds2;
|
|
NullCheck(L_24);
|
|
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))))
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_25 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralC2955FD4AA8C860BCAD201C5B579125BC7420A7D, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_26 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_26, L_25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
V_0 = 0;
|
|
goto IL_00fd;
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_27 = ___lengths1;
|
|
int32_t L_28 = V_0;
|
|
NullCheck(L_27);
|
|
int32_t L_29 = L_28;
|
|
int32_t L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
|
|
if ((((int32_t)L_30) >= ((int32_t)0)))
|
|
{
|
|
goto IL_00d3;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_31 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralC4418E14A221309A58063652B326DA6B15B8C48A, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_32 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_32, _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B, L_31, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00d3:
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_33 = ___lowerBounds2;
|
|
int32_t L_34 = V_0;
|
|
NullCheck(L_33);
|
|
int32_t L_35 = L_34;
|
|
int32_t L_36 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_37 = ___lengths1;
|
|
int32_t L_38 = V_0;
|
|
NullCheck(L_37);
|
|
int32_t L_39 = L_38;
|
|
int32_t L_40 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
|
|
if ((((int64_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((int64_t)L_36))), (int64_t)(((int64_t)((int64_t)L_40)))))) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_41 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral49D4CB4A8336299524E887B24A053F8EA368AC73, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_42 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_42, _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B, L_41, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00f9:
|
|
{
|
|
int32_t L_43 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1));
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
int32_t L_44 = V_0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = ___lowerBounds2;
|
|
NullCheck(L_45);
|
|
if ((((int32_t)L_44) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))))
|
|
{
|
|
goto IL_00b8;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_46 = ___lengths1;
|
|
NullCheck(L_46);
|
|
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_46)->max_length))))) <= ((int32_t)((int32_t)255))))
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * L_47 = (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 *)il2cpp_codegen_object_new(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1_il2cpp_TypeInfo_var);
|
|
TypeLoadException__ctor_mEF05D23A192E0B9BFAAA97A77A0FC1BCBE7B4355(L_47, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
Type_t * L_48 = ___elementType0;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_49 = ___lengths1;
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_50 = ___lowerBounds2;
|
|
RuntimeArray * L_51 = Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248(L_48, L_49, L_50, /*hidden argument*/NULL);
|
|
return L_51;
|
|
}
|
|
}
|
|
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___length2;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_3 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
|
|
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_3, _stringLiteral5A9EA65861D4D8200086439273EC2355C3674264, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
RuntimeArray * L_4 = ___array0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_4, 0, /*hidden argument*/NULL);
|
|
V_0 = L_5;
|
|
int32_t L_6 = ___index1;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_6) >= ((int32_t)L_7)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_8 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
|
|
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_8, _stringLiteral4A49B75057888FEF636189A3913772BBD0A0EEA0, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_9 = ___index1;
|
|
int32_t L_10 = V_0;
|
|
___index1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10));
|
|
int32_t L_11 = ___index1;
|
|
RuntimeArray * L_12 = ___array0;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_12, /*hidden argument*/NULL);
|
|
int32_t L_14 = ___length2;
|
|
if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)))))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_15 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
|
|
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_15, _stringLiteral43FBBCBC7E4E152115A172D2183820EC22524224, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
RuntimeArray * L_16 = ___array0;
|
|
int32_t L_17 = ___index1;
|
|
int32_t L_18 = ___length2;
|
|
Array_ClearInternal_m2E812D006B5846D20A11EC233AA13279DA565BF1(L_16, L_17, L_18, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::ClearInternal(System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_ClearInternal_m2E812D006B5846D20A11EC233AA13279DA565BF1 (RuntimeArray * ___a0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*Array_ClearInternal_m2E812D006B5846D20A11EC233AA13279DA565BF1_ftn) (RuntimeArray *, int32_t, int32_t);
|
|
using namespace il2cpp::icalls;
|
|
((Array_ClearInternal_m2E812D006B5846D20A11EC233AA13279DA565BF1_ftn)mscorlib::System::Array::ClearInternal) (___a0, ___index1, ___count2);
|
|
}
|
|
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___sourceArray0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral8B8ACFE3C45E7076004F9D05322FD3A454FD2659, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___destinationArray1;
|
|
if (L_2)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralE08FBA796454E5A33CA3EDAA9395C7DCB2C3C6F4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
RuntimeArray * L_4 = ___sourceArray0;
|
|
RuntimeArray * L_5 = ___sourceArray0;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_5, 0, /*hidden argument*/NULL);
|
|
RuntimeArray * L_7 = ___destinationArray1;
|
|
RuntimeArray * L_8 = ___destinationArray1;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_8, 0, /*hidden argument*/NULL);
|
|
int32_t L_10 = ___length2;
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6(L_4, L_6, L_7, L_9, L_10, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Type_t * V_2 = NULL;
|
|
Type_t * V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
RuntimeObject * V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
RuntimeObject * V_7 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
RuntimeArray * L_0 = ___sourceArray0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral8B8ACFE3C45E7076004F9D05322FD3A454FD2659, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___destinationArray2;
|
|
if (L_2)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralE08FBA796454E5A33CA3EDAA9395C7DCB2C3C6F4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_4 = ___length4;
|
|
if ((((int32_t)L_4) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral73D1C9F8E5B4DB41CF3E8760C3948A89E1FFDA80, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
RuntimeArray * L_7 = ___sourceArray0;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_7, /*hidden argument*/NULL);
|
|
RuntimeArray * L_9 = ___destinationArray2;
|
|
NullCheck(L_9);
|
|
int32_t L_10 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_9, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_8) == ((int32_t)L_10)))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_11 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
|
|
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_11, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
int32_t L_12 = ___sourceIndex1;
|
|
if ((((int32_t)L_12) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral73D1C9F8E5B4DB41CF3E8760C3948A89E1FFDA80, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_14, _stringLiteralCAEEAB05C2A175307D7167265BB744072B8D72BE, L_13, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
int32_t L_15 = ___destinationIndex3;
|
|
if ((((int32_t)L_15) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_16 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral73D1C9F8E5B4DB41CF3E8760C3948A89E1FFDA80, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_17 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_17, _stringLiteralCA96269491D1B54BAE78372F8D395C9208E1C361, L_16, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
RuntimeArray * L_18 = ___sourceArray0;
|
|
int32_t L_19 = ___sourceIndex1;
|
|
RuntimeArray * L_20 = ___destinationArray2;
|
|
int32_t L_21 = ___destinationIndex3;
|
|
int32_t L_22 = ___length4;
|
|
bool L_23 = Array_FastCopy_m60EEEAC06AB32A37A7FF6C4EB31B2FB54B170097(L_18, L_19, L_20, L_21, L_22, /*hidden argument*/NULL);
|
|
if (!L_23)
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
int32_t L_24 = ___sourceIndex1;
|
|
RuntimeArray * L_25 = ___sourceArray0;
|
|
NullCheck(L_25);
|
|
int32_t L_26 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_25, 0, /*hidden argument*/NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)L_26));
|
|
int32_t L_27 = ___destinationIndex3;
|
|
RuntimeArray * L_28 = ___destinationArray2;
|
|
NullCheck(L_28);
|
|
int32_t L_29 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_28, 0, /*hidden argument*/NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_29));
|
|
int32_t L_30 = V_1;
|
|
if ((((int32_t)L_30) >= ((int32_t)0)))
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_31 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_31, _stringLiteralCA96269491D1B54BAE78372F8D395C9208E1C361, _stringLiteralAC3617F3A0C9B39A384E38BCEDF346BE891CAAE5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
int32_t L_32 = V_0;
|
|
RuntimeArray * L_33 = ___sourceArray0;
|
|
NullCheck(L_33);
|
|
int32_t L_34 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_33, /*hidden argument*/NULL);
|
|
int32_t L_35 = ___length4;
|
|
if ((((int32_t)L_32) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)L_35)))))
|
|
{
|
|
goto IL_00ce;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_36 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_36, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00ce:
|
|
{
|
|
int32_t L_37 = V_1;
|
|
RuntimeArray * L_38 = ___destinationArray2;
|
|
NullCheck(L_38);
|
|
int32_t L_39 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_38, /*hidden argument*/NULL);
|
|
int32_t L_40 = ___length4;
|
|
if ((((int32_t)L_37) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_39, (int32_t)L_40)))))
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_41 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_42 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_42, _stringLiteralF1931330233408109E5BEE8AB9BEA8EF37D1BF01, L_41, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
RuntimeArray * L_43 = ___sourceArray0;
|
|
NullCheck(L_43);
|
|
Type_t * L_44 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_43, /*hidden argument*/NULL);
|
|
NullCheck(L_44);
|
|
Type_t * L_45 = VirtFuncInvoker0< Type_t * >::Invoke(127 /* System.Type System.Type::GetElementType() */, L_44);
|
|
V_2 = L_45;
|
|
RuntimeArray * L_46 = ___destinationArray2;
|
|
NullCheck(L_46);
|
|
Type_t * L_47 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_46, /*hidden argument*/NULL);
|
|
NullCheck(L_47);
|
|
Type_t * L_48 = VirtFuncInvoker0< Type_t * >::Invoke(127 /* System.Type System.Type::GetElementType() */, L_47);
|
|
V_3 = L_48;
|
|
RuntimeArray * L_49 = ___sourceArray0;
|
|
RuntimeArray * L_50 = ___destinationArray2;
|
|
if ((!(((RuntimeObject*)(RuntimeArray *)L_49) == ((RuntimeObject*)(RuntimeArray *)L_50))))
|
|
{
|
|
goto IL_010a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_51 = V_0;
|
|
int32_t L_52 = V_1;
|
|
if ((((int32_t)L_51) <= ((int32_t)L_52)))
|
|
{
|
|
goto IL_014f;
|
|
}
|
|
}
|
|
|
|
IL_010a:
|
|
{
|
|
V_4 = 0;
|
|
goto IL_0148;
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
RuntimeArray * L_53 = ___sourceArray0;
|
|
int32_t L_54 = V_0;
|
|
int32_t L_55 = V_4;
|
|
NullCheck(L_53);
|
|
RuntimeObject * L_56 = Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096(L_53, ((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)L_55)), /*hidden argument*/NULL);
|
|
V_5 = L_56;
|
|
}
|
|
|
|
IL_011b:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
RuntimeArray * L_57 = ___destinationArray2;
|
|
RuntimeObject * L_58 = V_5;
|
|
int32_t L_59 = V_1;
|
|
int32_t L_60 = V_4;
|
|
NullCheck(L_57);
|
|
Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5(L_57, L_58, ((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)L_60)), /*hidden argument*/NULL);
|
|
goto IL_0142;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0129;
|
|
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0130;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0129:
|
|
{ // begin catch(System.ArgumentException)
|
|
Exception_t * L_61 = Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5(/*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_61, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
CATCH_0130:
|
|
{ // begin catch(System.Object)
|
|
{
|
|
Type_t * L_62 = V_2;
|
|
Type_t * L_63 = V_3;
|
|
bool L_64 = Array_CanAssignArrayElement_m206A3C328B56DF461C1AC452F01CAAEC0377EAC8(L_62, L_63, /*hidden argument*/NULL);
|
|
if (!L_64)
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_013c:
|
|
{
|
|
Exception_t * L_65 = Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5(/*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_65, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
} // end catch (depth: 1)
|
|
|
|
IL_0142:
|
|
{
|
|
int32_t L_66 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1));
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
int32_t L_67 = V_4;
|
|
int32_t L_68 = ___length4;
|
|
if ((((int32_t)L_67) < ((int32_t)L_68)))
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_014f:
|
|
{
|
|
int32_t L_69 = ___length4;
|
|
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_69, (int32_t)1));
|
|
goto IL_0190;
|
|
}
|
|
|
|
IL_0157:
|
|
{
|
|
RuntimeArray * L_70 = ___sourceArray0;
|
|
int32_t L_71 = V_0;
|
|
int32_t L_72 = V_6;
|
|
NullCheck(L_70);
|
|
RuntimeObject * L_73 = Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096(L_70, ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)L_72)), /*hidden argument*/NULL);
|
|
V_7 = L_73;
|
|
}
|
|
|
|
IL_0163:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
RuntimeArray * L_74 = ___destinationArray2;
|
|
RuntimeObject * L_75 = V_7;
|
|
int32_t L_76 = V_1;
|
|
int32_t L_77 = V_6;
|
|
NullCheck(L_74);
|
|
Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5(L_74, L_75, ((int32_t)il2cpp_codegen_add((int32_t)L_76, (int32_t)L_77)), /*hidden argument*/NULL);
|
|
goto IL_018a;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0171;
|
|
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0178;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0171:
|
|
{ // begin catch(System.ArgumentException)
|
|
Exception_t * L_78 = Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5(/*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_78, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
CATCH_0178:
|
|
{ // begin catch(System.Object)
|
|
{
|
|
Type_t * L_79 = V_2;
|
|
Type_t * L_80 = V_3;
|
|
bool L_81 = Array_CanAssignArrayElement_m206A3C328B56DF461C1AC452F01CAAEC0377EAC8(L_79, L_80, /*hidden argument*/NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_0184;
|
|
}
|
|
}
|
|
|
|
IL_0182:
|
|
{
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0184:
|
|
{
|
|
Exception_t * L_82 = Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5(/*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_82, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var);
|
|
}
|
|
} // end catch (depth: 1)
|
|
|
|
IL_018a:
|
|
{
|
|
int32_t L_83 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_83, (int32_t)1));
|
|
}
|
|
|
|
IL_0190:
|
|
{
|
|
int32_t L_84 = V_6;
|
|
if ((((int32_t)L_84) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0157;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Exception System.Array::CreateArrayTypeMismatchException()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 * L_0 = (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 *)il2cpp_codegen_object_new(ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var);
|
|
ArrayTypeMismatchException__ctor_m1E7F220C883CE2ED1C4AA08ACA96D4E4B1A635F1(L_0, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.Array::CanAssignArrayElement(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_CanAssignArrayElement_m206A3C328B56DF461C1AC452F01CAAEC0377EAC8 (Type_t * ___source0, Type_t * ___target1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = ___source0;
|
|
NullCheck(L_0);
|
|
bool L_1 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_2 = ___source0;
|
|
Type_t * L_3 = ___target1;
|
|
NullCheck(L_2);
|
|
bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_2, L_3);
|
|
return L_4;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
Type_t * L_5 = ___source0;
|
|
NullCheck(L_5);
|
|
bool L_6 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_5, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_7 = ___target1;
|
|
NullCheck(L_7);
|
|
bool L_8 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_7, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
Type_t * L_9 = ___target1;
|
|
NullCheck(L_9);
|
|
bool L_10 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_9, /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_11 = ___source0;
|
|
NullCheck(L_11);
|
|
bool L_12 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_11, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
Type_t * L_13 = ___source0;
|
|
Type_t * L_14 = ___target1;
|
|
NullCheck(L_13);
|
|
bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_13, L_14);
|
|
if (L_15)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_16 = ___target1;
|
|
Type_t * L_17 = ___source0;
|
|
NullCheck(L_16);
|
|
bool L_18 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_16, L_17);
|
|
return L_18;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Void System.Array::ConstrainedCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_ConstrainedCopy_mBC9B69B4C47A053E7DC0F3835C2AF7E754CB4BF0 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeArray * L_0 = ___sourceArray0;
|
|
int32_t L_1 = ___sourceIndex1;
|
|
RuntimeArray * L_2 = ___destinationArray2;
|
|
int32_t L_3 = ___destinationIndex3;
|
|
int32_t L_4 = ___length4;
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6(L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::Initialize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Initialize_m68F53FBC6324F33F3BAF65C6A7A5C06B44494DB7 (RuntimeArray * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Array::SortImpl(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SortImpl_m69441E6855557430ED59346309E0AAA6BFB2305A (RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Array_SortImpl_m69441E6855557430ED59346309E0AAA6BFB2305A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
|
|
SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
{
|
|
RuntimeArray * L_0 = ___keys0;
|
|
V_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
|
|
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_2 = ___items1;
|
|
V_1 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_4 = ___items1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = V_0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = V_1;
|
|
RuntimeObject* L_8 = ___comparer4;
|
|
SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)(&V_2), L_6, L_7, L_8, /*hidden argument*/NULL);
|
|
int32_t L_9 = ___index2;
|
|
int32_t L_10 = ___length3;
|
|
SorterObjectArray_Sort_mC04711981E0EB27D7C4509DE8CFF70B1B7336188((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)(&V_2), L_9, L_10, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
RuntimeArray * L_11 = ___keys0;
|
|
RuntimeArray * L_12 = ___items1;
|
|
RuntimeObject* L_13 = ___comparer4;
|
|
SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)(&V_3), L_11, L_12, L_13, /*hidden argument*/NULL);
|
|
int32_t L_14 = ___index2;
|
|
int32_t L_15 = ___length3;
|
|
SorterGenericArray_Sort_m31959C3FD32EE2D5942031D4B4BE5E5186FC331D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)(&V_3), L_14, L_15, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Array_ArrayEnumerator::.ctor(System.Array)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayEnumerator__ctor_mF6431B42D70C8DACACCEC14D1676A6EACA831062 (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
RuntimeArray * L_0 = ___array0;
|
|
__this->set__array_0(L_0);
|
|
__this->set__index_1((-1));
|
|
RuntimeArray * L_1 = ___array0;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_1, /*hidden argument*/NULL);
|
|
__this->set__endIndex_2(L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.Array_ArrayEnumerator::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayEnumerator_MoveNext_m9DDF97BFEAE8773FA0CBDFE7DCF39D96A8351121 (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get__index_1();
|
|
int32_t L_1 = __this->get__endIndex_2();
|
|
if ((((int32_t)L_0) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->get__index_1();
|
|
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)));
|
|
int32_t L_3 = __this->get__index_1();
|
|
int32_t L_4 = __this->get__endIndex_2();
|
|
return (bool)((((int32_t)L_3) < ((int32_t)L_4))? 1 : 0);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Void System.Array_ArrayEnumerator::Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayEnumerator_Reset_mD816AD0387167D06ACC09E2407F20DD8DF91FF0B (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->set__index_1((-1));
|
|
return;
|
|
}
|
|
}
|
|
// System.Object System.Array_ArrayEnumerator::Clone()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ArrayEnumerator_Clone_m6CE6E38241B4B87AA18C451B3AA79C1FE44A9B46 (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.Array_ArrayEnumerator::get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1 (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = __this->get__index_1();
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, _stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
int32_t L_2 = __this->get__index_1();
|
|
int32_t L_3 = __this->get__endIndex_2();
|
|
if ((((int32_t)L_2) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, _stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
int32_t L_5 = __this->get__index_1();
|
|
if (L_5)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_6 = __this->get__array_0();
|
|
NullCheck(L_6);
|
|
Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_6, /*hidden argument*/NULL);
|
|
NullCheck(L_7);
|
|
Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(127 /* System.Type System.Type::GetElementType() */, L_7);
|
|
NullCheck(L_8);
|
|
bool L_9 = Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57(L_8, /*hidden argument*/NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_10 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_10, _stringLiteralB55428CB375AB9C781897FA54736E74AACB5D33C, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
RuntimeArray * L_11 = __this->get__array_0();
|
|
int32_t L_12 = __this->get__index_1();
|
|
NullCheck(L_11);
|
|
RuntimeObject * L_13 = Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096(L_11, L_12, /*hidden argument*/NULL);
|
|
return L_13;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Conversion methods for marshalling of: System.Array/SorterGenericArray
|
|
IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_pinvoke(const SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891& unmarshaled, SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterGenericArray': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_pinvoke_back(const SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_pinvoke& marshaled, SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891& unmarshaled)
|
|
{
|
|
Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterGenericArray': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.Array/SorterGenericArray
|
|
IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_pinvoke_cleanup(SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: System.Array/SorterGenericArray
|
|
IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_com(const SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891& unmarshaled, SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterGenericArray': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_com_back(const SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_com& marshaled, SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891& unmarshaled)
|
|
{
|
|
Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterGenericArray': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.Array/SorterGenericArray
|
|
IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_com_cleanup(SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void System.Array_SorterGenericArray::.ctor(System.Array,System.Array,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, RuntimeArray * ___keys0, RuntimeArray * ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ___comparer2;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var);
|
|
Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * L_1 = ((Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var))->get_Default_1();
|
|
___comparer2 = L_1;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeArray * L_2 = ___keys0;
|
|
__this->set_keys_0(L_2);
|
|
RuntimeArray * L_3 = ___items1;
|
|
__this->set_items_1(L_3);
|
|
RuntimeObject* L_4 = ___comparer2;
|
|
__this->set_comparer_2(L_4);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___keys0, RuntimeArray * ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + _offset);
|
|
SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89(_thisAdjusted, ___keys0, ___items1, ___comparer2, method);
|
|
}
|
|
// System.Void System.Array_SorterGenericArray::SwapIfGreaterWithItems(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
RuntimeObject * V_1 = NULL;
|
|
{
|
|
int32_t L_0 = ___a0;
|
|
int32_t L_1 = ___b1;
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = __this->get_comparer_2();
|
|
RuntimeArray * L_3 = __this->get_keys_0();
|
|
int32_t L_4 = ___a0;
|
|
NullCheck(L_3);
|
|
RuntimeObject * L_5 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_3, L_4, /*hidden argument*/NULL);
|
|
RuntimeArray * L_6 = __this->get_keys_0();
|
|
int32_t L_7 = ___b1;
|
|
NullCheck(L_6);
|
|
RuntimeObject * L_8 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_6, L_7, /*hidden argument*/NULL);
|
|
NullCheck(L_2);
|
|
int32_t L_9 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_2, L_5, L_8);
|
|
if ((((int32_t)L_9) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_10 = __this->get_keys_0();
|
|
int32_t L_11 = ___a0;
|
|
NullCheck(L_10);
|
|
RuntimeObject * L_12 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_10, L_11, /*hidden argument*/NULL);
|
|
V_0 = L_12;
|
|
RuntimeArray * L_13 = __this->get_keys_0();
|
|
RuntimeArray * L_14 = __this->get_keys_0();
|
|
int32_t L_15 = ___b1;
|
|
NullCheck(L_14);
|
|
RuntimeObject * L_16 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_14, L_15, /*hidden argument*/NULL);
|
|
int32_t L_17 = ___a0;
|
|
NullCheck(L_13);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_13, L_16, L_17, /*hidden argument*/NULL);
|
|
RuntimeArray * L_18 = __this->get_keys_0();
|
|
RuntimeObject * L_19 = V_0;
|
|
int32_t L_20 = ___b1;
|
|
NullCheck(L_18);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_18, L_19, L_20, /*hidden argument*/NULL);
|
|
RuntimeArray * L_21 = __this->get_items_1();
|
|
if (!L_21)
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_22 = __this->get_items_1();
|
|
int32_t L_23 = ___a0;
|
|
NullCheck(L_22);
|
|
RuntimeObject * L_24 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_22, L_23, /*hidden argument*/NULL);
|
|
V_1 = L_24;
|
|
RuntimeArray * L_25 = __this->get_items_1();
|
|
RuntimeArray * L_26 = __this->get_items_1();
|
|
int32_t L_27 = ___b1;
|
|
NullCheck(L_26);
|
|
RuntimeObject * L_28 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_26, L_27, /*hidden argument*/NULL);
|
|
int32_t L_29 = ___a0;
|
|
NullCheck(L_25);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_25, L_28, L_29, /*hidden argument*/NULL);
|
|
RuntimeArray * L_30 = __this->get_items_1();
|
|
RuntimeObject * L_31 = V_1;
|
|
int32_t L_32 = ___b1;
|
|
NullCheck(L_30);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_30, L_31, L_32, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D_AdjustorThunk (RuntimeObject * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + _offset);
|
|
SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D(_thisAdjusted, ___a0, ___b1, method);
|
|
}
|
|
// System.Void System.Array_SorterGenericArray::Swap(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject * V_0 = NULL;
|
|
RuntimeObject * V_1 = NULL;
|
|
{
|
|
RuntimeArray * L_0 = __this->get_keys_0();
|
|
int32_t L_1 = ___i0;
|
|
NullCheck(L_0);
|
|
RuntimeObject * L_2 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_0, L_1, /*hidden argument*/NULL);
|
|
V_0 = L_2;
|
|
RuntimeArray * L_3 = __this->get_keys_0();
|
|
RuntimeArray * L_4 = __this->get_keys_0();
|
|
int32_t L_5 = ___j1;
|
|
NullCheck(L_4);
|
|
RuntimeObject * L_6 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_4, L_5, /*hidden argument*/NULL);
|
|
int32_t L_7 = ___i0;
|
|
NullCheck(L_3);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_3, L_6, L_7, /*hidden argument*/NULL);
|
|
RuntimeArray * L_8 = __this->get_keys_0();
|
|
RuntimeObject * L_9 = V_0;
|
|
int32_t L_10 = ___j1;
|
|
NullCheck(L_8);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_8, L_9, L_10, /*hidden argument*/NULL);
|
|
RuntimeArray * L_11 = __this->get_items_1();
|
|
if (!L_11)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_12 = __this->get_items_1();
|
|
int32_t L_13 = ___i0;
|
|
NullCheck(L_12);
|
|
RuntimeObject * L_14 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_12, L_13, /*hidden argument*/NULL);
|
|
V_1 = L_14;
|
|
RuntimeArray * L_15 = __this->get_items_1();
|
|
RuntimeArray * L_16 = __this->get_items_1();
|
|
int32_t L_17 = ___j1;
|
|
NullCheck(L_16);
|
|
RuntimeObject * L_18 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_16, L_17, /*hidden argument*/NULL);
|
|
int32_t L_19 = ___i0;
|
|
NullCheck(L_15);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_15, L_18, L_19, /*hidden argument*/NULL);
|
|
RuntimeArray * L_20 = __this->get_items_1();
|
|
RuntimeObject * L_21 = V_1;
|
|
int32_t L_22 = ___j1;
|
|
NullCheck(L_20);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_20, L_21, L_22, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3_AdjustorThunk (RuntimeObject * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + _offset);
|
|
SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3(_thisAdjusted, ___i0, ___j1, method);
|
|
}
|
|
// System.Void System.Array_SorterGenericArray::Sort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Sort_m31959C3FD32EE2D5942031D4B4BE5E5186FC331D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___left0;
|
|
int32_t L_1 = ___length1;
|
|
SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterGenericArray_Sort_m31959C3FD32EE2D5942031D4B4BE5E5186FC331D_AdjustorThunk (RuntimeObject * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + _offset);
|
|
SorterGenericArray_Sort_m31959C3FD32EE2D5942031D4B4BE5E5186FC331D(_thisAdjusted, ___left0, ___length1, method);
|
|
}
|
|
// System.Void System.Array_SorterGenericArray::IntrospectiveSort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t * V_0 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
int32_t L_0 = ___length1;
|
|
if ((((int32_t)L_0) >= ((int32_t)2)))
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
}
|
|
|
|
IL_0006:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
int32_t L_1 = ___left0;
|
|
int32_t L_2 = ___length1;
|
|
int32_t L_3 = ___left0;
|
|
RuntimeArray * L_4 = __this->get_keys_0();
|
|
NullCheck(L_4);
|
|
int32_t L_5 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_4, /*hidden argument*/NULL);
|
|
int32_t L_6 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA(L_5, /*hidden argument*/NULL);
|
|
SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_1, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)L_3)), (int32_t)1)), ((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_6)), /*hidden argument*/NULL);
|
|
goto IL_0041;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0026;
|
|
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0034;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0026:
|
|
{ // begin catch(System.IndexOutOfRangeException)
|
|
RuntimeObject* L_7 = __this->get_comparer_2();
|
|
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A(L_7, /*hidden argument*/NULL);
|
|
goto IL_0041;
|
|
} // end catch (depth: 1)
|
|
|
|
CATCH_0034:
|
|
{ // begin catch(System.Exception)
|
|
V_0 = ((Exception_t *)__exception_local);
|
|
Exception_t * L_8 = V_0;
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_9, _stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, L_8, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF_AdjustorThunk (RuntimeObject * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + _offset);
|
|
SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF(_thisAdjusted, ___left0, ___length1, method);
|
|
}
|
|
// System.Void System.Array_SorterGenericArray::IntroSort(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
|
|
IL_0002:
|
|
{
|
|
int32_t L_0 = ___hi1;
|
|
int32_t L_1 = ___lo0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) > ((int32_t)((int32_t)16))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___lo0;
|
|
int32_t L_6 = ___hi1;
|
|
SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_5, L_6, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)3))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = ___lo0;
|
|
int32_t L_9 = ___hi1;
|
|
SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_8, ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_10 = ___lo0;
|
|
int32_t L_11 = ___hi1;
|
|
SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_10, L_11, /*hidden argument*/NULL);
|
|
int32_t L_12 = ___hi1;
|
|
int32_t L_13 = ___hi1;
|
|
SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)), L_13, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
int32_t L_14 = ___lo0;
|
|
int32_t L_15 = ___hi1;
|
|
SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_14, L_15, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
int32_t L_16 = ___depthLimit2;
|
|
if (L_16)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = ___lo0;
|
|
int32_t L_18 = ___hi1;
|
|
SorterGenericArray_Heapsort_m348C661B9B20D60F0A7A41ABB266365D1271028C((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_17, L_18, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
int32_t L_19 = ___depthLimit2;
|
|
___depthLimit2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
|
|
int32_t L_20 = ___lo0;
|
|
int32_t L_21 = ___hi1;
|
|
int32_t L_22 = SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_20, L_21, /*hidden argument*/NULL);
|
|
V_1 = L_22;
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = ___hi1;
|
|
int32_t L_25 = ___depthLimit2;
|
|
SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)), L_24, L_25, /*hidden argument*/NULL);
|
|
int32_t L_26 = V_1;
|
|
___hi1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1));
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
int32_t L_27 = ___hi1;
|
|
int32_t L_28 = ___lo0;
|
|
if ((((int32_t)L_27) > ((int32_t)L_28)))
|
|
{
|
|
goto IL_0002;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + _offset);
|
|
SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D(_thisAdjusted, ___lo0, ___hi1, ___depthLimit2, method);
|
|
}
|
|
// System.Int32 System.Array_SorterGenericArray::PickPivotAndPartition(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject * V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
int32_t L_0 = ___lo0;
|
|
int32_t L_1 = ___hi1;
|
|
int32_t L_2 = ___lo0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2))));
|
|
int32_t L_3 = ___lo0;
|
|
int32_t L_4 = V_0;
|
|
SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_3, L_4, /*hidden argument*/NULL);
|
|
int32_t L_5 = ___lo0;
|
|
int32_t L_6 = ___hi1;
|
|
SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_5, L_6, /*hidden argument*/NULL);
|
|
int32_t L_7 = V_0;
|
|
int32_t L_8 = ___hi1;
|
|
SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_7, L_8, /*hidden argument*/NULL);
|
|
RuntimeArray * L_9 = __this->get_keys_0();
|
|
int32_t L_10 = V_0;
|
|
NullCheck(L_9);
|
|
RuntimeObject * L_11 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_9, L_10, /*hidden argument*/NULL);
|
|
V_1 = L_11;
|
|
int32_t L_12 = V_0;
|
|
int32_t L_13 = ___hi1;
|
|
SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_12, ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_14 = ___lo0;
|
|
V_2 = L_14;
|
|
int32_t L_15 = ___hi1;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1));
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
RuntimeObject* L_16 = __this->get_comparer_2();
|
|
RuntimeArray * L_17 = __this->get_keys_0();
|
|
int32_t L_18 = V_2;
|
|
int32_t L_19 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
|
|
V_2 = L_19;
|
|
NullCheck(L_17);
|
|
RuntimeObject * L_20 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_17, L_19, /*hidden argument*/NULL);
|
|
RuntimeObject * L_21 = V_1;
|
|
NullCheck(L_16);
|
|
int32_t L_22 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_16, L_20, L_21);
|
|
if ((((int32_t)L_22) < ((int32_t)0)))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
RuntimeObject* L_23 = __this->get_comparer_2();
|
|
RuntimeObject * L_24 = V_1;
|
|
RuntimeArray * L_25 = __this->get_keys_0();
|
|
int32_t L_26 = V_3;
|
|
int32_t L_27 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1));
|
|
V_3 = L_27;
|
|
NullCheck(L_25);
|
|
RuntimeObject * L_28 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_25, L_27, /*hidden argument*/NULL);
|
|
NullCheck(L_23);
|
|
int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_23, L_24, L_28);
|
|
if ((((int32_t)L_29) < ((int32_t)0)))
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = V_2;
|
|
int32_t L_31 = V_3;
|
|
if ((((int32_t)L_30) >= ((int32_t)L_31)))
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_32 = V_2;
|
|
int32_t L_33 = V_3;
|
|
SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_32, L_33, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
int32_t L_34 = V_2;
|
|
int32_t L_35 = V_3;
|
|
if ((((int32_t)L_34) < ((int32_t)L_35)))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
int32_t L_36 = V_2;
|
|
int32_t L_37 = ___hi1;
|
|
SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_36, ((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_38 = V_2;
|
|
return L_38;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + _offset);
|
|
return SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839(_thisAdjusted, ___lo0, ___hi1, method);
|
|
}
|
|
// System.Void System.Array_SorterGenericArray::Heapsort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Heapsort_m348C661B9B20D60F0A7A41ABB266365D1271028C (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
int32_t L_0 = ___hi1;
|
|
int32_t L_1 = ___lo0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
|
|
int32_t L_2 = V_0;
|
|
V_1 = ((int32_t)((int32_t)L_2/(int32_t)2));
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_3 = V_1;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___lo0;
|
|
SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_3, L_4, L_5, /*hidden argument*/NULL);
|
|
int32_t L_6 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1));
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_7 = V_1;
|
|
if ((((int32_t)L_7) >= ((int32_t)1)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_0;
|
|
V_2 = L_8;
|
|
goto IL_003c;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
int32_t L_9 = ___lo0;
|
|
int32_t L_10 = ___lo0;
|
|
int32_t L_11 = V_2;
|
|
SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_9, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_12 = V_2;
|
|
int32_t L_13 = ___lo0;
|
|
SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, 1, ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)), L_13, /*hidden argument*/NULL);
|
|
int32_t L_14 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
int32_t L_15 = V_2;
|
|
if ((((int32_t)L_15) > ((int32_t)1)))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterGenericArray_Heapsort_m348C661B9B20D60F0A7A41ABB266365D1271028C_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + _offset);
|
|
SorterGenericArray_Heapsort_m348C661B9B20D60F0A7A41ABB266365D1271028C(_thisAdjusted, ___lo0, ___hi1, method);
|
|
}
|
|
// System.Void System.Array_SorterGenericArray::DownHeap(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
RuntimeObject * V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
RuntimeObject * G_B3_0 = NULL;
|
|
{
|
|
RuntimeArray * L_0 = __this->get_keys_0();
|
|
int32_t L_1 = ___lo2;
|
|
int32_t L_2 = ___i0;
|
|
NullCheck(L_0);
|
|
RuntimeObject * L_3 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_0, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1)), /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
RuntimeArray * L_4 = __this->get_items_1();
|
|
if (L_4)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = NULL;
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
RuntimeArray * L_5 = __this->get_items_1();
|
|
int32_t L_6 = ___lo2;
|
|
int32_t L_7 = ___i0;
|
|
NullCheck(L_5);
|
|
RuntimeObject * L_8 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_5, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_7)), (int32_t)1)), /*hidden argument*/NULL);
|
|
G_B3_0 = L_8;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
V_1 = G_B3_0;
|
|
goto IL_00d4;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
int32_t L_9 = ___i0;
|
|
V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_9));
|
|
int32_t L_10 = V_2;
|
|
int32_t L_11 = ___n1;
|
|
if ((((int32_t)L_10) >= ((int32_t)L_11)))
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = __this->get_comparer_2();
|
|
RuntimeArray * L_13 = __this->get_keys_0();
|
|
int32_t L_14 = ___lo2;
|
|
int32_t L_15 = V_2;
|
|
NullCheck(L_13);
|
|
RuntimeObject * L_16 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_13, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)), (int32_t)1)), /*hidden argument*/NULL);
|
|
RuntimeArray * L_17 = __this->get_keys_0();
|
|
int32_t L_18 = ___lo2;
|
|
int32_t L_19 = V_2;
|
|
NullCheck(L_17);
|
|
RuntimeObject * L_20 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_17, ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)L_19)), /*hidden argument*/NULL);
|
|
NullCheck(L_12);
|
|
int32_t L_21 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_12, L_16, L_20);
|
|
if ((((int32_t)L_21) >= ((int32_t)0)))
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_22 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
RuntimeObject* L_23 = __this->get_comparer_2();
|
|
RuntimeObject * L_24 = V_0;
|
|
RuntimeArray * L_25 = __this->get_keys_0();
|
|
int32_t L_26 = ___lo2;
|
|
int32_t L_27 = V_2;
|
|
NullCheck(L_25);
|
|
RuntimeObject * L_28 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_25, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27)), (int32_t)1)), /*hidden argument*/NULL);
|
|
NullCheck(L_23);
|
|
int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_23, L_24, L_28);
|
|
if ((((int32_t)L_29) >= ((int32_t)0)))
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_30 = __this->get_keys_0();
|
|
RuntimeArray * L_31 = __this->get_keys_0();
|
|
int32_t L_32 = ___lo2;
|
|
int32_t L_33 = V_2;
|
|
NullCheck(L_31);
|
|
RuntimeObject * L_34 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_31, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)L_33)), (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_35 = ___lo2;
|
|
int32_t L_36 = ___i0;
|
|
NullCheck(L_30);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_30, L_34, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)L_36)), (int32_t)1)), /*hidden argument*/NULL);
|
|
RuntimeArray * L_37 = __this->get_items_1();
|
|
if (!L_37)
|
|
{
|
|
goto IL_00d1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_38 = __this->get_items_1();
|
|
RuntimeArray * L_39 = __this->get_items_1();
|
|
int32_t L_40 = ___lo2;
|
|
int32_t L_41 = V_2;
|
|
NullCheck(L_39);
|
|
RuntimeObject * L_42 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_39, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)L_41)), (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_43 = ___lo2;
|
|
int32_t L_44 = ___i0;
|
|
NullCheck(L_38);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_38, L_42, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)L_44)), (int32_t)1)), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_00d1:
|
|
{
|
|
int32_t L_45 = V_2;
|
|
___i0 = L_45;
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
int32_t L_46 = ___i0;
|
|
int32_t L_47 = ___n1;
|
|
if ((((int32_t)L_46) <= ((int32_t)((int32_t)((int32_t)L_47/(int32_t)2)))))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
RuntimeArray * L_48 = __this->get_keys_0();
|
|
RuntimeObject * L_49 = V_0;
|
|
int32_t L_50 = ___lo2;
|
|
int32_t L_51 = ___i0;
|
|
NullCheck(L_48);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_48, L_49, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)L_51)), (int32_t)1)), /*hidden argument*/NULL);
|
|
RuntimeArray * L_52 = __this->get_items_1();
|
|
if (!L_52)
|
|
{
|
|
goto IL_0107;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_53 = __this->get_items_1();
|
|
RuntimeObject * L_54 = V_1;
|
|
int32_t L_55 = ___lo2;
|
|
int32_t L_56 = ___i0;
|
|
NullCheck(L_53);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_53, L_54, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)L_56)), (int32_t)1)), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0107:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360_AdjustorThunk (RuntimeObject * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + _offset);
|
|
SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360(_thisAdjusted, ___i0, ___n1, ___lo2, method);
|
|
}
|
|
// System.Void System.Array_SorterGenericArray::InsertionSort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
RuntimeObject * V_2 = NULL;
|
|
RuntimeObject * V_3 = NULL;
|
|
RuntimeObject * G_B4_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___lo0;
|
|
V_0 = L_0;
|
|
goto IL_00bd;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
V_1 = L_1;
|
|
RuntimeArray * L_2 = __this->get_keys_0();
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
RuntimeObject * L_4 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_2, ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)), /*hidden argument*/NULL);
|
|
V_2 = L_4;
|
|
RuntimeArray * L_5 = __this->get_items_1();
|
|
if (L_5)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
G_B4_0 = NULL;
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
RuntimeArray * L_6 = __this->get_items_1();
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
RuntimeObject * L_8 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_6, ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)), /*hidden argument*/NULL);
|
|
G_B4_0 = L_8;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_3 = G_B4_0;
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeArray * L_9 = __this->get_keys_0();
|
|
RuntimeArray * L_10 = __this->get_keys_0();
|
|
int32_t L_11 = V_1;
|
|
NullCheck(L_10);
|
|
RuntimeObject * L_12 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_10, L_11, /*hidden argument*/NULL);
|
|
int32_t L_13 = V_1;
|
|
NullCheck(L_9);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_9, L_12, ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)), /*hidden argument*/NULL);
|
|
RuntimeArray * L_14 = __this->get_items_1();
|
|
if (!L_14)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_15 = __this->get_items_1();
|
|
RuntimeArray * L_16 = __this->get_items_1();
|
|
int32_t L_17 = V_1;
|
|
NullCheck(L_16);
|
|
RuntimeObject * L_18 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_16, L_17, /*hidden argument*/NULL);
|
|
int32_t L_19 = V_1;
|
|
NullCheck(L_15);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_15, L_18, ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
int32_t L_20 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1));
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
int32_t L_21 = V_1;
|
|
int32_t L_22 = ___lo0;
|
|
if ((((int32_t)L_21) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_23 = __this->get_comparer_2();
|
|
RuntimeObject * L_24 = V_2;
|
|
RuntimeArray * L_25 = __this->get_keys_0();
|
|
int32_t L_26 = V_1;
|
|
NullCheck(L_25);
|
|
RuntimeObject * L_27 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_25, L_26, /*hidden argument*/NULL);
|
|
NullCheck(L_23);
|
|
int32_t L_28 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_23, L_24, L_27);
|
|
if ((((int32_t)L_28) < ((int32_t)0)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
RuntimeArray * L_29 = __this->get_keys_0();
|
|
RuntimeObject * L_30 = V_2;
|
|
int32_t L_31 = V_1;
|
|
NullCheck(L_29);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_29, L_30, ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)), /*hidden argument*/NULL);
|
|
RuntimeArray * L_32 = __this->get_items_1();
|
|
if (!L_32)
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray * L_33 = __this->get_items_1();
|
|
RuntimeObject * L_34 = V_3;
|
|
int32_t L_35 = V_1;
|
|
NullCheck(L_33);
|
|
Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_33, L_34, ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
int32_t L_36 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1));
|
|
}
|
|
|
|
IL_00bd:
|
|
{
|
|
int32_t L_37 = V_0;
|
|
int32_t L_38 = ___hi1;
|
|
if ((((int32_t)L_37) < ((int32_t)L_38)))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + _offset);
|
|
SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB(_thisAdjusted, ___lo0, ___hi1, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Conversion methods for marshalling of: System.Array/SorterObjectArray
|
|
IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_pinvoke(const SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4& unmarshaled, SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterObjectArray'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_pinvoke_back(const SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_pinvoke& marshaled, SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4& unmarshaled)
|
|
{
|
|
Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterObjectArray'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.Array/SorterObjectArray
|
|
IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_pinvoke_cleanup(SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: System.Array/SorterObjectArray
|
|
IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_com(const SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4& unmarshaled, SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterObjectArray'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_com_back(const SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_com& marshaled, SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4& unmarshaled)
|
|
{
|
|
Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterObjectArray'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.Array/SorterObjectArray
|
|
IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_com_cleanup(SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void System.Array_SorterObjectArray::.ctor(System.Object[],System.Object[],System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ___comparer2;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var);
|
|
Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * L_1 = ((Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var))->get_Default_1();
|
|
___comparer2 = L_1;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___keys0;
|
|
__this->set_keys_0(L_2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___items1;
|
|
__this->set_items_1(L_3);
|
|
RuntimeObject* L_4 = ___comparer2;
|
|
__this->set_comparer_2(L_4);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8_AdjustorThunk (RuntimeObject * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + _offset);
|
|
SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8(_thisAdjusted, ___keys0, ___items1, ___comparer2, method);
|
|
}
|
|
// System.Void System.Array_SorterObjectArray::SwapIfGreaterWithItems(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
RuntimeObject * V_1 = NULL;
|
|
{
|
|
int32_t L_0 = ___a0;
|
|
int32_t L_1 = ___b1;
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = __this->get_comparer_2();
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get_keys_0();
|
|
int32_t L_4 = ___a0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = __this->get_keys_0();
|
|
int32_t L_8 = ___b1;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
RuntimeObject * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
NullCheck(L_2);
|
|
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_2, L_6, L_10);
|
|
if ((((int32_t)L_11) <= ((int32_t)0)))
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = __this->get_keys_0();
|
|
int32_t L_13 = ___a0;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
RuntimeObject * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
V_0 = L_15;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = __this->get_keys_0();
|
|
int32_t L_17 = ___a0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = __this->get_keys_0();
|
|
int32_t L_19 = ___b1;
|
|
NullCheck(L_18);
|
|
int32_t L_20 = L_19;
|
|
RuntimeObject * L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
|
|
NullCheck(L_16);
|
|
ArrayElementTypeCheck (L_16, L_21);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (RuntimeObject *)L_21);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = __this->get_keys_0();
|
|
int32_t L_23 = ___b1;
|
|
RuntimeObject * L_24 = V_0;
|
|
NullCheck(L_22);
|
|
ArrayElementTypeCheck (L_22, L_24);
|
|
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_24);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = __this->get_items_1();
|
|
if (!L_25)
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = __this->get_items_1();
|
|
int32_t L_27 = ___a0;
|
|
NullCheck(L_26);
|
|
int32_t L_28 = L_27;
|
|
RuntimeObject * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
|
|
V_1 = L_29;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = __this->get_items_1();
|
|
int32_t L_31 = ___a0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = __this->get_items_1();
|
|
int32_t L_33 = ___b1;
|
|
NullCheck(L_32);
|
|
int32_t L_34 = L_33;
|
|
RuntimeObject * L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
|
|
NullCheck(L_30);
|
|
ArrayElementTypeCheck (L_30, L_35);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(L_31), (RuntimeObject *)L_35);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = __this->get_items_1();
|
|
int32_t L_37 = ___b1;
|
|
RuntimeObject * L_38 = V_1;
|
|
NullCheck(L_36);
|
|
ArrayElementTypeCheck (L_36, L_38);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (RuntimeObject *)L_38);
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929_AdjustorThunk (RuntimeObject * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + _offset);
|
|
SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929(_thisAdjusted, ___a0, ___b1, method);
|
|
}
|
|
// System.Void System.Array_SorterObjectArray::Swap(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject * V_0 = NULL;
|
|
RuntimeObject * V_1 = NULL;
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_keys_0();
|
|
int32_t L_1 = ___i0;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject * L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_0 = L_3;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = __this->get_keys_0();
|
|
int32_t L_5 = ___i0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get_keys_0();
|
|
int32_t L_7 = ___j1;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
RuntimeObject * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
NullCheck(L_4);
|
|
ArrayElementTypeCheck (L_4, L_9);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_9);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = __this->get_keys_0();
|
|
int32_t L_11 = ___j1;
|
|
RuntimeObject * L_12 = V_0;
|
|
NullCheck(L_10);
|
|
ArrayElementTypeCheck (L_10, L_12);
|
|
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (RuntimeObject *)L_12);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = __this->get_items_1();
|
|
if (!L_13)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = __this->get_items_1();
|
|
int32_t L_15 = ___i0;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
RuntimeObject * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
V_1 = L_17;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = __this->get_items_1();
|
|
int32_t L_19 = ___i0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = __this->get_items_1();
|
|
int32_t L_21 = ___j1;
|
|
NullCheck(L_20);
|
|
int32_t L_22 = L_21;
|
|
RuntimeObject * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
|
|
NullCheck(L_18);
|
|
ArrayElementTypeCheck (L_18, L_23);
|
|
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (RuntimeObject *)L_23);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = __this->get_items_1();
|
|
int32_t L_25 = ___j1;
|
|
RuntimeObject * L_26 = V_1;
|
|
NullCheck(L_24);
|
|
ArrayElementTypeCheck (L_24, L_26);
|
|
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_25), (RuntimeObject *)L_26);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833_AdjustorThunk (RuntimeObject * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + _offset);
|
|
SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833(_thisAdjusted, ___i0, ___j1, method);
|
|
}
|
|
// System.Void System.Array_SorterObjectArray::Sort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Sort_mC04711981E0EB27D7C4509DE8CFF70B1B7336188 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___left0;
|
|
int32_t L_1 = ___length1;
|
|
SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterObjectArray_Sort_mC04711981E0EB27D7C4509DE8CFF70B1B7336188_AdjustorThunk (RuntimeObject * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + _offset);
|
|
SorterObjectArray_Sort_mC04711981E0EB27D7C4509DE8CFF70B1B7336188(_thisAdjusted, ___left0, ___length1, method);
|
|
}
|
|
// System.Void System.Array_SorterObjectArray::IntrospectiveSort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t * V_0 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
int32_t L_0 = ___length1;
|
|
if ((((int32_t)L_0) >= ((int32_t)2)))
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
}
|
|
|
|
IL_0006:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
int32_t L_1 = ___left0;
|
|
int32_t L_2 = ___length1;
|
|
int32_t L_3 = ___left0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = __this->get_keys_0();
|
|
NullCheck(L_4);
|
|
int32_t L_5 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA((((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), /*hidden argument*/NULL);
|
|
SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_1, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)L_3)), (int32_t)1)), ((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_5)), /*hidden argument*/NULL);
|
|
goto IL_003e;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0023;
|
|
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0031;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0023:
|
|
{ // begin catch(System.IndexOutOfRangeException)
|
|
RuntimeObject* L_6 = __this->get_comparer_2();
|
|
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A(L_6, /*hidden argument*/NULL);
|
|
goto IL_003e;
|
|
} // end catch (depth: 1)
|
|
|
|
CATCH_0031:
|
|
{ // begin catch(System.Exception)
|
|
V_0 = ((Exception_t *)__exception_local);
|
|
Exception_t * L_7 = V_0;
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_8 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_8, _stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, L_7, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
IL_003e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C_AdjustorThunk (RuntimeObject * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + _offset);
|
|
SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C(_thisAdjusted, ___left0, ___length1, method);
|
|
}
|
|
// System.Void System.Array_SorterObjectArray::IntroSort(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
|
|
IL_0002:
|
|
{
|
|
int32_t L_0 = ___hi1;
|
|
int32_t L_1 = ___lo0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) > ((int32_t)((int32_t)16))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___lo0;
|
|
int32_t L_6 = ___hi1;
|
|
SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_5, L_6, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)3))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = ___lo0;
|
|
int32_t L_9 = ___hi1;
|
|
SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_8, ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_10 = ___lo0;
|
|
int32_t L_11 = ___hi1;
|
|
SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_10, L_11, /*hidden argument*/NULL);
|
|
int32_t L_12 = ___hi1;
|
|
int32_t L_13 = ___hi1;
|
|
SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)), L_13, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
int32_t L_14 = ___lo0;
|
|
int32_t L_15 = ___hi1;
|
|
SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_14, L_15, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
int32_t L_16 = ___depthLimit2;
|
|
if (L_16)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = ___lo0;
|
|
int32_t L_18 = ___hi1;
|
|
SorterObjectArray_Heapsort_m9D5FCC664979AB3CCEBBA1293ED87A1AEA8918F8((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_17, L_18, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
int32_t L_19 = ___depthLimit2;
|
|
___depthLimit2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
|
|
int32_t L_20 = ___lo0;
|
|
int32_t L_21 = ___hi1;
|
|
int32_t L_22 = SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_20, L_21, /*hidden argument*/NULL);
|
|
V_1 = L_22;
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = ___hi1;
|
|
int32_t L_25 = ___depthLimit2;
|
|
SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)), L_24, L_25, /*hidden argument*/NULL);
|
|
int32_t L_26 = V_1;
|
|
___hi1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1));
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
int32_t L_27 = ___hi1;
|
|
int32_t L_28 = ___lo0;
|
|
if ((((int32_t)L_27) > ((int32_t)L_28)))
|
|
{
|
|
goto IL_0002;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + _offset);
|
|
SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3(_thisAdjusted, ___lo0, ___hi1, ___depthLimit2, method);
|
|
}
|
|
// System.Int32 System.Array_SorterObjectArray::PickPivotAndPartition(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject * V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
int32_t L_0 = ___lo0;
|
|
int32_t L_1 = ___hi1;
|
|
int32_t L_2 = ___lo0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2))));
|
|
int32_t L_3 = ___lo0;
|
|
int32_t L_4 = V_0;
|
|
SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_3, L_4, /*hidden argument*/NULL);
|
|
int32_t L_5 = ___lo0;
|
|
int32_t L_6 = ___hi1;
|
|
SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_5, L_6, /*hidden argument*/NULL);
|
|
int32_t L_7 = V_0;
|
|
int32_t L_8 = ___hi1;
|
|
SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_7, L_8, /*hidden argument*/NULL);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = __this->get_keys_0();
|
|
int32_t L_10 = V_0;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
RuntimeObject * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
V_1 = L_12;
|
|
int32_t L_13 = V_0;
|
|
int32_t L_14 = ___hi1;
|
|
SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_13, ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_15 = ___lo0;
|
|
V_2 = L_15;
|
|
int32_t L_16 = ___hi1;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1));
|
|
goto IL_007d;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
RuntimeObject* L_17 = __this->get_comparer_2();
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = __this->get_keys_0();
|
|
int32_t L_19 = V_2;
|
|
int32_t L_20 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
|
|
V_2 = L_20;
|
|
NullCheck(L_18);
|
|
int32_t L_21 = L_20;
|
|
RuntimeObject * L_22 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
|
|
RuntimeObject * L_23 = V_1;
|
|
NullCheck(L_17);
|
|
int32_t L_24 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_17, L_22, L_23);
|
|
if ((((int32_t)L_24) < ((int32_t)0)))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
RuntimeObject* L_25 = __this->get_comparer_2();
|
|
RuntimeObject * L_26 = V_1;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = __this->get_keys_0();
|
|
int32_t L_28 = V_3;
|
|
int32_t L_29 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1));
|
|
V_3 = L_29;
|
|
NullCheck(L_27);
|
|
int32_t L_30 = L_29;
|
|
RuntimeObject * L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
|
|
NullCheck(L_25);
|
|
int32_t L_32 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_25, L_26, L_31);
|
|
if ((((int32_t)L_32) < ((int32_t)0)))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_33 = V_2;
|
|
int32_t L_34 = V_3;
|
|
if ((((int32_t)L_33) >= ((int32_t)L_34)))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_35 = V_2;
|
|
int32_t L_36 = V_3;
|
|
SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_35, L_36, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
int32_t L_37 = V_2;
|
|
int32_t L_38 = V_3;
|
|
if ((((int32_t)L_37) < ((int32_t)L_38)))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
int32_t L_39 = V_2;
|
|
int32_t L_40 = ___hi1;
|
|
SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_39, ((int32_t)il2cpp_codegen_subtract((int32_t)L_40, (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_41 = V_2;
|
|
return L_41;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + _offset);
|
|
return SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06(_thisAdjusted, ___lo0, ___hi1, method);
|
|
}
|
|
// System.Void System.Array_SorterObjectArray::Heapsort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Heapsort_m9D5FCC664979AB3CCEBBA1293ED87A1AEA8918F8 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
int32_t L_0 = ___hi1;
|
|
int32_t L_1 = ___lo0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
|
|
int32_t L_2 = V_0;
|
|
V_1 = ((int32_t)((int32_t)L_2/(int32_t)2));
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_3 = V_1;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___lo0;
|
|
SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_3, L_4, L_5, /*hidden argument*/NULL);
|
|
int32_t L_6 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1));
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_7 = V_1;
|
|
if ((((int32_t)L_7) >= ((int32_t)1)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_0;
|
|
V_2 = L_8;
|
|
goto IL_003c;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
int32_t L_9 = ___lo0;
|
|
int32_t L_10 = ___lo0;
|
|
int32_t L_11 = V_2;
|
|
SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_9, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_12 = V_2;
|
|
int32_t L_13 = ___lo0;
|
|
SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, 1, ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)), L_13, /*hidden argument*/NULL);
|
|
int32_t L_14 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
int32_t L_15 = V_2;
|
|
if ((((int32_t)L_15) > ((int32_t)1)))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterObjectArray_Heapsort_m9D5FCC664979AB3CCEBBA1293ED87A1AEA8918F8_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + _offset);
|
|
SorterObjectArray_Heapsort_m9D5FCC664979AB3CCEBBA1293ED87A1AEA8918F8(_thisAdjusted, ___lo0, ___hi1, method);
|
|
}
|
|
// System.Void System.Array_SorterObjectArray::DownHeap(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
RuntimeObject * V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
RuntimeObject * G_B3_0 = NULL;
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_keys_0();
|
|
int32_t L_1 = ___lo2;
|
|
int32_t L_2 = ___i0;
|
|
NullCheck(L_0);
|
|
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
|
|
RuntimeObject * L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
V_0 = L_4;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get_items_1();
|
|
if (L_5)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = NULL;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get_items_1();
|
|
int32_t L_7 = ___lo2;
|
|
int32_t L_8 = ___i0;
|
|
NullCheck(L_6);
|
|
int32_t L_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)), (int32_t)1));
|
|
RuntimeObject * L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
G_B3_0 = L_10;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_1 = G_B3_0;
|
|
goto IL_00b0;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_11 = ___i0;
|
|
V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_11));
|
|
int32_t L_12 = V_2;
|
|
int32_t L_13 = ___n1;
|
|
if ((((int32_t)L_12) >= ((int32_t)L_13)))
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_14 = __this->get_comparer_2();
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = __this->get_keys_0();
|
|
int32_t L_16 = ___lo2;
|
|
int32_t L_17 = V_2;
|
|
NullCheck(L_15);
|
|
int32_t L_18 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17)), (int32_t)1));
|
|
RuntimeObject * L_19 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = __this->get_keys_0();
|
|
int32_t L_21 = ___lo2;
|
|
int32_t L_22 = V_2;
|
|
NullCheck(L_20);
|
|
int32_t L_23 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)L_22));
|
|
RuntimeObject * L_24 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
|
|
NullCheck(L_14);
|
|
int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_14, L_19, L_24);
|
|
if ((((int32_t)L_25) >= ((int32_t)0)))
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_26 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
RuntimeObject* L_27 = __this->get_comparer_2();
|
|
RuntimeObject * L_28 = V_0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = __this->get_keys_0();
|
|
int32_t L_30 = ___lo2;
|
|
int32_t L_31 = V_2;
|
|
NullCheck(L_29);
|
|
int32_t L_32 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31)), (int32_t)1));
|
|
RuntimeObject * L_33 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
|
|
NullCheck(L_27);
|
|
int32_t L_34 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_27, L_28, L_33);
|
|
if ((((int32_t)L_34) >= ((int32_t)0)))
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = __this->get_keys_0();
|
|
int32_t L_36 = ___lo2;
|
|
int32_t L_37 = ___i0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = __this->get_keys_0();
|
|
int32_t L_39 = ___lo2;
|
|
int32_t L_40 = V_2;
|
|
NullCheck(L_38);
|
|
int32_t L_41 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)L_40)), (int32_t)1));
|
|
RuntimeObject * L_42 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
|
|
NullCheck(L_35);
|
|
ArrayElementTypeCheck (L_35, L_42);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)L_37)), (int32_t)1))), (RuntimeObject *)L_42);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_43 = __this->get_items_1();
|
|
if (!L_43)
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_44 = __this->get_items_1();
|
|
int32_t L_45 = ___lo2;
|
|
int32_t L_46 = ___i0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = __this->get_items_1();
|
|
int32_t L_48 = ___lo2;
|
|
int32_t L_49 = V_2;
|
|
NullCheck(L_47);
|
|
int32_t L_50 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)L_49)), (int32_t)1));
|
|
RuntimeObject * L_51 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_50));
|
|
NullCheck(L_44);
|
|
ArrayElementTypeCheck (L_44, L_51);
|
|
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)L_46)), (int32_t)1))), (RuntimeObject *)L_51);
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
int32_t L_52 = V_2;
|
|
___i0 = L_52;
|
|
}
|
|
|
|
IL_00b0:
|
|
{
|
|
int32_t L_53 = ___i0;
|
|
int32_t L_54 = ___n1;
|
|
if ((((int32_t)L_53) <= ((int32_t)((int32_t)((int32_t)L_54/(int32_t)2)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_55 = __this->get_keys_0();
|
|
int32_t L_56 = ___lo2;
|
|
int32_t L_57 = ___i0;
|
|
RuntimeObject * L_58 = V_0;
|
|
NullCheck(L_55);
|
|
ArrayElementTypeCheck (L_55, L_58);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)L_57)), (int32_t)1))), (RuntimeObject *)L_58);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_59 = __this->get_items_1();
|
|
if (!L_59)
|
|
{
|
|
goto IL_00db;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_60 = __this->get_items_1();
|
|
int32_t L_61 = ___lo2;
|
|
int32_t L_62 = ___i0;
|
|
RuntimeObject * L_63 = V_1;
|
|
NullCheck(L_60);
|
|
ArrayElementTypeCheck (L_60, L_63);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)L_62)), (int32_t)1))), (RuntimeObject *)L_63);
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A_AdjustorThunk (RuntimeObject * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + _offset);
|
|
SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A(_thisAdjusted, ___i0, ___n1, ___lo2, method);
|
|
}
|
|
// System.Void System.Array_SorterObjectArray::InsertionSort(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
RuntimeObject * V_2 = NULL;
|
|
RuntimeObject * V_3 = NULL;
|
|
RuntimeObject * G_B4_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___lo0;
|
|
V_0 = L_0;
|
|
goto IL_0099;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
V_1 = L_1;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = __this->get_keys_0();
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
|
|
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_2 = L_5;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get_items_1();
|
|
if (L_6)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
G_B4_0 = NULL;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = __this->get_items_1();
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
|
|
RuntimeObject * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
G_B4_0 = L_10;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
V_3 = G_B4_0;
|
|
goto IL_005c;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = __this->get_keys_0();
|
|
int32_t L_12 = V_1;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = __this->get_keys_0();
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
int32_t L_15 = L_14;
|
|
RuntimeObject * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
|
|
NullCheck(L_11);
|
|
ArrayElementTypeCheck (L_11, L_16);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))), (RuntimeObject *)L_16);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = __this->get_items_1();
|
|
if (!L_17)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = __this->get_items_1();
|
|
int32_t L_19 = V_1;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = __this->get_items_1();
|
|
int32_t L_21 = V_1;
|
|
NullCheck(L_20);
|
|
int32_t L_22 = L_21;
|
|
RuntimeObject * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
|
|
NullCheck(L_18);
|
|
ArrayElementTypeCheck (L_18, L_23);
|
|
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1))), (RuntimeObject *)L_23);
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_24 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
int32_t L_25 = V_1;
|
|
int32_t L_26 = ___lo0;
|
|
if ((((int32_t)L_25) < ((int32_t)L_26)))
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_27 = __this->get_comparer_2();
|
|
RuntimeObject * L_28 = V_2;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = __this->get_keys_0();
|
|
int32_t L_30 = V_1;
|
|
NullCheck(L_29);
|
|
int32_t L_31 = L_30;
|
|
RuntimeObject * L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
|
|
NullCheck(L_27);
|
|
int32_t L_33 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_27, L_28, L_32);
|
|
if ((((int32_t)L_33) < ((int32_t)0)))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = __this->get_keys_0();
|
|
int32_t L_35 = V_1;
|
|
RuntimeObject * L_36 = V_2;
|
|
NullCheck(L_34);
|
|
ArrayElementTypeCheck (L_34, L_36);
|
|
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1))), (RuntimeObject *)L_36);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_37 = __this->get_items_1();
|
|
if (!L_37)
|
|
{
|
|
goto IL_0095;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = __this->get_items_1();
|
|
int32_t L_39 = V_1;
|
|
RuntimeObject * L_40 = V_3;
|
|
NullCheck(L_38);
|
|
ArrayElementTypeCheck (L_38, L_40);
|
|
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1))), (RuntimeObject *)L_40);
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
int32_t L_41 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
int32_t L_42 = V_0;
|
|
int32_t L_43 = ___hi1;
|
|
if ((((int32_t)L_42) < ((int32_t)L_43)))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + _offset);
|
|
SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2(_thisAdjusted, ___lo0, ___hi1, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ArraySpec::.ctor(System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySpec__ctor_m7829BADEF006060440EBF1330EC85B9FF17CE6B4 (ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 * __this, int32_t ___dimensions0, bool ___bound1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
int32_t L_0 = ___dimensions0;
|
|
__this->set_dimensions_0(L_0);
|
|
bool L_1 = ___bound1;
|
|
__this->set_bound_1(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Type System.ArraySpec::Resolve(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ArraySpec_Resolve_m54EB9F25CDE838BA329A82D02D6114005C75B246 (ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 * __this, Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_bound_1();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_1 = ___type0;
|
|
NullCheck(L_1);
|
|
Type_t * L_2 = VirtFuncInvoker1< Type_t *, int32_t >::Invoke(21 /* System.Type System.Type::MakeArrayType(System.Int32) */, L_1, 1);
|
|
return L_2;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
int32_t L_3 = __this->get_dimensions_0();
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_4 = ___type0;
|
|
NullCheck(L_4);
|
|
Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(20 /* System.Type System.Type::MakeArrayType() */, L_4);
|
|
return L_5;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
Type_t * L_6 = ___type0;
|
|
int32_t L_7 = __this->get_dimensions_0();
|
|
NullCheck(L_6);
|
|
Type_t * L_8 = VirtFuncInvoker1< Type_t *, int32_t >::Invoke(21 /* System.Type System.Type::MakeArrayType(System.Int32) */, L_6, L_7);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Text.StringBuilder System.ArraySpec::Append(System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * ArraySpec_Append_mEA5F3D33185A31FDCF7365E21B65937F2FE17639 (ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArraySpec_Append_mEA5F3D33185A31FDCF7365E21B65937F2FE17639_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->get_bound_1();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_1 = ___sb0;
|
|
NullCheck(L_1);
|
|
StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteral731634FF73E12680BA57A79BB4FFDBF6FA8A8F72, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
StringBuilder_t * L_3 = ___sb0;
|
|
NullCheck(L_3);
|
|
StringBuilder_t * L_4 = StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_3, ((int32_t)91), /*hidden argument*/NULL);
|
|
int32_t L_5 = __this->get_dimensions_0();
|
|
NullCheck(L_4);
|
|
StringBuilder_t * L_6 = StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45(L_4, ((int32_t)44), ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)), /*hidden argument*/NULL);
|
|
NullCheck(L_6);
|
|
StringBuilder_t * L_7 = StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_6, ((int32_t)93), /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.String System.ArraySpec::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArraySpec_ToString_mD91A17CAFE62504A681BA64D57A9A4C9B3E0070F (ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArraySpec_ToString_mD91A17CAFE62504A681BA64D57A9A4C9B3E0070F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
|
|
StringBuilder_t * L_1 = ArraySpec_Append_mEA5F3D33185A31FDCF7365E21B65937F2FE17639(__this, L_0, /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ArrayTypeMismatchException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayTypeMismatchException__ctor_m1E7F220C883CE2ED1C4AA08ACA96D4E4B1A635F1 (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ArrayTypeMismatchException__ctor_m1E7F220C883CE2ED1C4AA08ACA96D4E4B1A635F1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral721C8C5C51906148BF57F662A1D9D497D2658685, /*hidden argument*/NULL);
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233085), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ArrayTypeMismatchException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayTypeMismatchException__ctor_m6BBF48A560D2F52B5B110CF795C82F8089E8247B (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.AssemblyLoadEventArgs::.ctor(System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventArgs__ctor_m1F35C892F2C6D04A5792F741C905D13E163D60E8 (AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * __this, Assembly_t * ___loadedAssembly0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AssemblyLoadEventArgs__ctor_m1F35C892F2C6D04A5792F741C905D13E163D60E8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
|
|
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
|
|
Assembly_t * L_0 = ___loadedAssembly0;
|
|
__this->set_m_loadedAssembly_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.AssemblyLoadEventHandler::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventHandler__ctor_m369E4F3C5E1F387C01BAA9C93C793063EB2C80E2 (AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
|
|
__this->set_method_3(___method1);
|
|
__this->set_m_target_2(___object0);
|
|
}
|
|
// System.Void System.AssemblyLoadEventHandler::Invoke(System.Object,System.AssemblyLoadEventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventHandler_Invoke_m8F8FC0944BD880531B58755B35ACD61D7E980142 (AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * __this, RuntimeObject * ___sender0, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * ___args1, const RuntimeMethod* method)
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
|
|
Delegate_t** delegatesToInvoke;
|
|
il2cpp_array_size_t length;
|
|
if (delegateArrayToInvoke != NULL)
|
|
{
|
|
length = delegateArrayToInvoke->max_length;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
|
|
}
|
|
else
|
|
{
|
|
length = 1;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
|
|
}
|
|
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
Delegate_t* currentDelegate = delegatesToInvoke[i];
|
|
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
|
|
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
|
|
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
|
|
if (!il2cpp_codegen_method_is_virtual(targetMethod))
|
|
{
|
|
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
|
|
}
|
|
bool ___methodIsStatic = MethodIsStatic(targetMethod);
|
|
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
|
|
if (___methodIsStatic)
|
|
{
|
|
if (___parameterCount == 2)
|
|
{
|
|
// open
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___args1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___args1, targetMethod);
|
|
}
|
|
}
|
|
else if (___parameterCount != 2)
|
|
{
|
|
// open
|
|
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker1< AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(targetMethod, ___sender0, ___args1);
|
|
else
|
|
GenericVirtActionInvoker1< AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(targetMethod, ___sender0, ___args1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker1< AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___args1);
|
|
else
|
|
VirtActionInvoker1< AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___args1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___args1) - 1), targetMethod);
|
|
}
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___args1, targetMethod);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(targetMethod, targetThis, ___sender0, ___args1);
|
|
else
|
|
GenericVirtActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(targetMethod, targetThis, ___sender0, ___args1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___args1);
|
|
else
|
|
VirtActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___args1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___sender0) - 1), ___args1, targetMethod);
|
|
}
|
|
if (targetThis == NULL)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___args1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___args1, targetMethod);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// System.IAsyncResult System.AssemblyLoadEventHandler::BeginInvoke(System.Object,System.AssemblyLoadEventArgs,System.AsyncCallback,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AssemblyLoadEventHandler_BeginInvoke_m1ADB392B952FE127E3D6104B95810002A36A7225 (AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * __this, RuntimeObject * ___sender0, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * ___args1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[3] = {0};
|
|
__d_args[0] = ___sender0;
|
|
__d_args[1] = ___args1;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
|
|
}
|
|
// System.Void System.AssemblyLoadEventHandler::EndInvoke(System.IAsyncResult)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventHandler_EndInvoke_m3DE6D4CF1FC884467F0CA5D48BFA9690F3E917E3 (AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.AsyncCallback::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback__ctor_m36AEE927E6AFEE950656BC5F7841682D23DE2EBB (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
|
|
__this->set_method_3(___method1);
|
|
__this->set_m_target_2(___object0);
|
|
}
|
|
// System.Void System.AsyncCallback::Invoke(System.IAsyncResult)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback_Invoke_m1830E56CD41BDD255C144AA16A9426EEE301617C (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * __this, RuntimeObject* ___ar0, const RuntimeMethod* method)
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
|
|
Delegate_t** delegatesToInvoke;
|
|
il2cpp_array_size_t length;
|
|
if (delegateArrayToInvoke != NULL)
|
|
{
|
|
length = delegateArrayToInvoke->max_length;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
|
|
}
|
|
else
|
|
{
|
|
length = 1;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
|
|
}
|
|
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
Delegate_t* currentDelegate = delegatesToInvoke[i];
|
|
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
|
|
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
|
|
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
|
|
if (!il2cpp_codegen_method_is_virtual(targetMethod))
|
|
{
|
|
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
|
|
}
|
|
bool ___methodIsStatic = MethodIsStatic(targetMethod);
|
|
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
|
|
if (___methodIsStatic)
|
|
{
|
|
if (___parameterCount == 1)
|
|
{
|
|
// open
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___ar0, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___ar0, targetMethod);
|
|
}
|
|
}
|
|
else if (___parameterCount != 1)
|
|
{
|
|
// open
|
|
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker0::Invoke(targetMethod, ___ar0);
|
|
else
|
|
GenericVirtActionInvoker0::Invoke(targetMethod, ___ar0);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___ar0);
|
|
else
|
|
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___ar0);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___ar0, targetMethod);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker1< RuntimeObject* >::Invoke(targetMethod, targetThis, ___ar0);
|
|
else
|
|
GenericVirtActionInvoker1< RuntimeObject* >::Invoke(targetMethod, targetThis, ___ar0);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker1< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ar0);
|
|
else
|
|
VirtActionInvoker1< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ar0);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___ar0) - 1), targetMethod);
|
|
}
|
|
if (targetThis == NULL)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___ar0, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___ar0, targetMethod);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// System.IAsyncResult System.AsyncCallback::BeginInvoke(System.IAsyncResult,System.AsyncCallback,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AsyncCallback_BeginInvoke_mE4C005FA524EAFFDF3C40F562AC58CB070F03AC5 (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * __this, RuntimeObject* ___ar0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[2] = {0};
|
|
__d_args[0] = ___ar0;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
|
|
}
|
|
// System.Void System.AsyncCallback::EndInvoke(System.IAsyncResult)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback_EndInvoke_m23ABC7762B20ED65D3C3A2A1C3B240A6F4BF1F3F (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Attribute[] System.Attribute::InternalGetCustomAttributes(System.Reflection.PropertyInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_InternalGetCustomAttributes_m79A1BD09EEADB51067F0EAD54C2FCFED60825FD3 (PropertyInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_InternalGetCustomAttributes_m79A1BD09EEADB51067F0EAD54C2FCFED60825FD3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PropertyInfo_t * L_0 = ___element0;
|
|
Type_t * L_1 = ___type1;
|
|
bool L_2 = ___inherit2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)Castclass((RuntimeObject*)L_3, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Attribute[] System.Attribute::InternalGetCustomAttributes(System.Reflection.EventInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_InternalGetCustomAttributes_m786427FC13FB2D718DF52743D0D56B4F4A4B7C87 (EventInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_InternalGetCustomAttributes_m786427FC13FB2D718DF52743D0D56B4F4A4B7C87_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventInfo_t * L_0 = ___element0;
|
|
Type_t * L_1 = ___type1;
|
|
bool L_2 = ___inherit2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)Castclass((RuntimeObject*)L_3, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Boolean System.Attribute::InternalIsDefined(System.Reflection.PropertyInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_InternalIsDefined_m5C7E046C44198677CBCA00781979A7B3799460B8 (PropertyInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_InternalIsDefined_m5C7E046C44198677CBCA00781979A7B3799460B8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PropertyInfo_t * L_0 = ___element0;
|
|
Type_t * L_1 = ___attributeType1;
|
|
bool L_2 = ___inherit2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
|
|
bool L_3 = MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean System.Attribute::InternalIsDefined(System.Reflection.EventInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_InternalIsDefined_mE8B292CB9DC5662A6C36528E28A23B38664E6A24 (EventInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_InternalIsDefined_mE8B292CB9DC5662A6C36528E28A23B38664E6A24_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventInfo_t * L_0 = ___element0;
|
|
Type_t * L_1 = ___attributeType1;
|
|
bool L_2 = ___inherit2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
|
|
bool L_3 = MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8 (MemberInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
MemberInfo_t * L_0 = ___element0;
|
|
bool L_1 = MemberInfo_op_Equality_m9B77A8811138313780ADCD0A9EE018748B9249D9(L_0, (MemberInfo_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralDECE05484839DF110745B0A800297C33CC078287, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Type_t * L_3 = ___type1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_4 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
Type_t * L_6 = ___type1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
|
|
NullCheck(L_6);
|
|
bool L_9 = VirtFuncInvoker1< bool, Type_t * >::Invoke(137 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_6, L_8);
|
|
if (L_9)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_10 = ___type1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
|
|
bool L_13 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_10, L_12, /*hidden argument*/NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6BB30BF3B61DFE1865F4ABE8C032368ED35891A7, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
MemberInfo_t * L_16 = ___element0;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Reflection.MemberTypes System.Reflection.MemberInfo::get_MemberType() */, L_16);
|
|
V_0 = L_17;
|
|
int32_t L_18 = V_0;
|
|
if ((((int32_t)L_18) == ((int32_t)2)))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_0;
|
|
if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)16)))))
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
MemberInfo_t * L_20 = ___element0;
|
|
Type_t * L_21 = ___type1;
|
|
bool L_22 = ___inherit2;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_23 = Attribute_InternalGetCustomAttributes_m79A1BD09EEADB51067F0EAD54C2FCFED60825FD3(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_20, PropertyInfo_t_il2cpp_TypeInfo_var)), L_21, L_22, /*hidden argument*/NULL);
|
|
return L_23;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
MemberInfo_t * L_24 = ___element0;
|
|
Type_t * L_25 = ___type1;
|
|
bool L_26 = ___inherit2;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_27 = Attribute_InternalGetCustomAttributes_m786427FC13FB2D718DF52743D0D56B4F4A4B7C87(((EventInfo_t *)CastclassClass((RuntimeObject*)L_24, EventInfo_t_il2cpp_TypeInfo_var)), L_25, L_26, /*hidden argument*/NULL);
|
|
return L_27;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
MemberInfo_t * L_28 = ___element0;
|
|
Type_t * L_29 = ___type1;
|
|
bool L_30 = ___inherit2;
|
|
NullCheck(L_28);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_31 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_28, L_29, L_30);
|
|
return ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)IsInst((RuntimeObject*)L_31, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Boolean System.Attribute::IsDefined(System.Reflection.MemberInfo,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_IsDefined_m3456E1BF5B06C7ABFA5F19192A475A854D6C3F43 (MemberInfo_t * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MemberInfo_t * L_0 = ___element0;
|
|
Type_t * L_1 = ___attributeType1;
|
|
bool L_2 = Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293(L_0, L_1, (bool)1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean System.Attribute::IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293 (MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
MemberInfo_t * L_0 = ___element0;
|
|
bool L_1 = MemberInfo_op_Equality_m9B77A8811138313780ADCD0A9EE018748B9249D9(L_0, (MemberInfo_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralDECE05484839DF110745B0A800297C33CC078287, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Type_t * L_3 = ___attributeType1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_4 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
Type_t * L_6 = ___attributeType1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
|
|
NullCheck(L_6);
|
|
bool L_9 = VirtFuncInvoker1< bool, Type_t * >::Invoke(137 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_6, L_8);
|
|
if (L_9)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_10 = ___attributeType1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
|
|
bool L_13 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_10, L_12, /*hidden argument*/NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6BB30BF3B61DFE1865F4ABE8C032368ED35891A7, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
MemberInfo_t * L_16 = ___element0;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Reflection.MemberTypes System.Reflection.MemberInfo::get_MemberType() */, L_16);
|
|
V_0 = L_17;
|
|
int32_t L_18 = V_0;
|
|
if ((((int32_t)L_18) == ((int32_t)2)))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_0;
|
|
if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)16)))))
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
MemberInfo_t * L_20 = ___element0;
|
|
Type_t * L_21 = ___attributeType1;
|
|
bool L_22 = ___inherit2;
|
|
bool L_23 = Attribute_InternalIsDefined_m5C7E046C44198677CBCA00781979A7B3799460B8(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_20, PropertyInfo_t_il2cpp_TypeInfo_var)), L_21, L_22, /*hidden argument*/NULL);
|
|
return L_23;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
MemberInfo_t * L_24 = ___element0;
|
|
Type_t * L_25 = ___attributeType1;
|
|
bool L_26 = ___inherit2;
|
|
bool L_27 = Attribute_InternalIsDefined_mE8B292CB9DC5662A6C36528E28A23B38664E6A24(((EventInfo_t *)CastclassClass((RuntimeObject*)L_24, EventInfo_t_il2cpp_TypeInfo_var)), L_25, L_26, /*hidden argument*/NULL);
|
|
return L_27;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
MemberInfo_t * L_28 = ___element0;
|
|
Type_t * L_29 = ___attributeType1;
|
|
bool L_30 = ___inherit2;
|
|
NullCheck(L_28);
|
|
bool L_31 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_28, L_29, L_30);
|
|
return L_31;
|
|
}
|
|
}
|
|
// System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4 (MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_0 = NULL;
|
|
{
|
|
MemberInfo_t * L_0 = ___element0;
|
|
Type_t * L_1 = ___attributeType1;
|
|
bool L_2 = ___inherit2;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
if ((((RuntimeArray*)L_5)->max_length))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
return (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)NULL;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))) == ((uint32_t)1))))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = 0;
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
return L_9;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC1734285C685E958AD0B932A43A2CF72C6E069BF, /*hidden argument*/NULL);
|
|
AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 * L_11 = (AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 *)il2cpp_codegen_object_new(AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349_il2cpp_TypeInfo_var);
|
|
AmbiguousMatchException__ctor_m1828F14B6EA9C5F008237590CB3C4B0A59C03006(L_11, L_10, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498 (Assembly_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Assembly_t * L_0 = ___element0;
|
|
bool L_1 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_0, (Assembly_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralDECE05484839DF110745B0A800297C33CC078287, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Type_t * L_3 = ___attributeType1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_4 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
Type_t * L_6 = ___attributeType1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
|
|
NullCheck(L_6);
|
|
bool L_9 = VirtFuncInvoker1< bool, Type_t * >::Invoke(137 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_6, L_8);
|
|
if (L_9)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_10 = ___attributeType1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
|
|
bool L_13 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_10, L_12, /*hidden argument*/NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6BB30BF3B61DFE1865F4ABE8C032368ED35891A7, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
Assembly_t * L_16 = ___element0;
|
|
Type_t * L_17 = ___attributeType1;
|
|
bool L_18 = ___inherit2;
|
|
NullCheck(L_16);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(13 /* System.Object[] System.Reflection.Assembly::GetCustomAttributes(System.Type,System.Boolean) */, L_16, L_17, L_18);
|
|
return ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)Castclass((RuntimeObject*)L_19, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.Assembly,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * Attribute_GetCustomAttribute_m2F7052FBA63683DCBD28CA75E300CB453AF531F8 (Assembly_t * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Assembly_t * L_0 = ___element0;
|
|
Type_t * L_1 = ___attributeType1;
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_2 = Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE(L_0, L_1, (bool)1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE (Assembly_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_0 = NULL;
|
|
{
|
|
Assembly_t * L_0 = ___element0;
|
|
Type_t * L_1 = ___attributeType1;
|
|
bool L_2 = ___inherit2;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
if ((((RuntimeArray*)L_5)->max_length))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
return (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)NULL;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))) == ((uint32_t)1))))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = 0;
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
return L_9;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC1734285C685E958AD0B932A43A2CF72C6E069BF, /*hidden argument*/NULL);
|
|
AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 * L_11 = (AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 *)il2cpp_codegen_object_new(AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349_il2cpp_TypeInfo_var);
|
|
AmbiguousMatchException__ctor_m1828F14B6EA9C5F008237590CB3C4B0A59C03006(L_11, L_10, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Void System.Attribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.Attribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_Equals_mCF07CF66D36F64A6F7616756BFD76617398AFDB9 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_Equals_mCF07CF66D36F64A6F7616756BFD76617398AFDB9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
|
|
RuntimeObject * V_1 = NULL;
|
|
RuntimeObject * V_2 = NULL;
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
V_0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
|
|
RuntimeObject * L_2 = ___obj0;
|
|
NullCheck(L_2);
|
|
Type_t * L_3 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_2, /*hidden argument*/NULL);
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
|
|
bool L_5 = RuntimeType_op_Inequality_mA98A719712593FEE5DCCFDB47CCABDB58BEE1B0D(((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_3, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)), L_4, /*hidden argument*/NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
V_1 = __this;
|
|
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_6 = V_0;
|
|
NullCheck(L_6);
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_7 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(51 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_6, ((int32_t)52));
|
|
V_3 = L_7;
|
|
V_4 = 0;
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_8 = V_3;
|
|
int32_t L_9 = V_4;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
FieldInfo_t * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
RuntimeObject * L_12 = V_1;
|
|
NullCheck(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_11, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var)));
|
|
RuntimeObject * L_13 = RtFieldInfo_UnsafeGetValue_m9B9ACFD585730B17FE5E4CE36C3F0BE529D62E3A(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_11, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var)), L_12, /*hidden argument*/NULL);
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_14 = V_3;
|
|
int32_t L_15 = V_4;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
FieldInfo_t * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
RuntimeObject * L_18 = ___obj0;
|
|
NullCheck(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_17, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var)));
|
|
RuntimeObject * L_19 = RtFieldInfo_UnsafeGetValue_m9B9ACFD585730B17FE5E4CE36C3F0BE529D62E3A(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_17, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var)), L_18, /*hidden argument*/NULL);
|
|
V_2 = L_19;
|
|
RuntimeObject * L_20 = V_2;
|
|
bool L_21 = Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C(L_13, L_20, /*hidden argument*/NULL);
|
|
if (L_21)
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_22 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
int32_t L_23 = V_4;
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_24 = V_3;
|
|
NullCheck(L_24);
|
|
if ((((int32_t)L_23) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.Attribute::AreFieldValuesEqual(System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C (RuntimeObject * ___thisValue0, RuntimeObject * ___thatValue1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeArray * V_0 = NULL;
|
|
RuntimeArray * V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
{
|
|
RuntimeObject * L_0 = ___thisValue0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_1 = ___thatValue1;
|
|
if (L_1)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject * L_2 = ___thisValue0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_3 = ___thatValue1;
|
|
if (L_3)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
RuntimeObject * L_4 = ___thisValue0;
|
|
NullCheck(L_4);
|
|
Type_t * L_5 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_4, /*hidden argument*/NULL);
|
|
NullCheck(L_5);
|
|
bool L_6 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_5, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_7 = ___thisValue0;
|
|
NullCheck(L_7);
|
|
Type_t * L_8 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_7, /*hidden argument*/NULL);
|
|
RuntimeObject * L_9 = ___thatValue1;
|
|
NullCheck(L_9);
|
|
Type_t * L_10 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_9, /*hidden argument*/NULL);
|
|
NullCheck(L_8);
|
|
bool L_11 = VirtFuncInvoker1< bool, Type_t * >::Invoke(142 /* System.Boolean System.Type::Equals(System.Type) */, L_8, L_10);
|
|
if (L_11)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
RuntimeObject * L_12 = ___thisValue0;
|
|
V_0 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_12, RuntimeArray_il2cpp_TypeInfo_var));
|
|
RuntimeObject * L_13 = ___thatValue1;
|
|
V_1 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_13, RuntimeArray_il2cpp_TypeInfo_var));
|
|
RuntimeArray * L_14 = V_0;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_14, /*hidden argument*/NULL);
|
|
RuntimeArray * L_16 = V_1;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_16, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_15) == ((int32_t)L_17)))
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
V_2 = 0;
|
|
goto IL_006f;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
RuntimeArray * L_18 = V_0;
|
|
int32_t L_19 = V_2;
|
|
NullCheck(L_18);
|
|
RuntimeObject * L_20 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_18, L_19, /*hidden argument*/NULL);
|
|
RuntimeArray * L_21 = V_1;
|
|
int32_t L_22 = V_2;
|
|
NullCheck(L_21);
|
|
RuntimeObject * L_23 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_21, L_22, /*hidden argument*/NULL);
|
|
bool L_24 = Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C(L_20, L_23, /*hidden argument*/NULL);
|
|
if (L_24)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t L_25 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
int32_t L_26 = V_2;
|
|
RuntimeArray * L_27 = V_0;
|
|
NullCheck(L_27);
|
|
int32_t L_28 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_27, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_26) < ((int32_t)L_28)))
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
RuntimeObject * L_29 = ___thisValue0;
|
|
RuntimeObject * L_30 = ___thatValue1;
|
|
NullCheck(L_29);
|
|
bool L_31 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_29, L_30);
|
|
if (L_31)
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Int32 System.Attribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t * V_0 = NULL;
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_1 = NULL;
|
|
RuntimeObject * V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject * V_4 = NULL;
|
|
{
|
|
Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
Type_t * L_1 = V_0;
|
|
NullCheck(L_1);
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_2 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(51 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_1, ((int32_t)52));
|
|
V_1 = L_2;
|
|
V_2 = NULL;
|
|
V_3 = 0;
|
|
goto IL_0042;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_3 = V_1;
|
|
int32_t L_4 = V_3;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
FieldInfo_t * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_6, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var)));
|
|
RuntimeObject * L_7 = RtFieldInfo_UnsafeGetValue_m9B9ACFD585730B17FE5E4CE36C3F0BE529D62E3A(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_6, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var)), __this, /*hidden argument*/NULL);
|
|
V_4 = L_7;
|
|
RuntimeObject * L_8 = V_4;
|
|
if (!L_8)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_9 = V_4;
|
|
NullCheck(L_9);
|
|
Type_t * L_10 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_9, /*hidden argument*/NULL);
|
|
NullCheck(L_10);
|
|
bool L_11 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_10, /*hidden argument*/NULL);
|
|
if (L_11)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_12 = V_4;
|
|
V_2 = L_12;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
RuntimeObject * L_13 = V_2;
|
|
if (L_13)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_14 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
int32_t L_15 = V_3;
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_16 = V_1;
|
|
NullCheck(L_16);
|
|
if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
RuntimeObject * L_17 = V_2;
|
|
if (!L_17)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_18 = V_2;
|
|
NullCheck(L_18);
|
|
int32_t L_19 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_18);
|
|
return L_19;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
Type_t * L_20 = V_0;
|
|
NullCheck(L_20);
|
|
int32_t L_21 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_20);
|
|
return L_21;
|
|
}
|
|
}
|
|
// System.Object System.Attribute::get_TypeId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Attribute_get_TypeId_m045F268DB761308B99040C3A06CF8BE47E343834 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.Attribute::Match(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_Match_m7390ED5D5B3D592B776C5410269A91E3F816D281 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.Attribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_IsDefaultAttribute_m78412D80A05811A9A38236B28259613B1BA64569 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.AttributeUsageAttribute::.ctor(System.AttributeTargets)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, int32_t ___validOn0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->set_m_attributeTarget_0(((int32_t)32767));
|
|
__this->set_m_inherited_2((bool)1);
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
int32_t L_0 = ___validOn0;
|
|
__this->set_m_attributeTarget_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.AttributeUsageAttribute::get_AllowMultiple()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_AllowMultiple_mF910B0B16B485A8F02C54854FC9A9604B8810FF7 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_m_allowMultiple_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.AttributeUsageAttribute::set_AllowMultiple(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_AllowMultiple_mD819677C280298DDA703CB1B3D0819AD9B6844C4 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___value0;
|
|
__this->set_m_allowMultiple_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.AttributeUsageAttribute::get_Inherited()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_Inherited_mE46032EFECAED37FA15BCEE3384DFA4E9868024F (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_m_inherited_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.AttributeUsageAttribute::set_Inherited(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_Inherited_mCFAF5425443C2E65151F5B8370D09654BA349DD9 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___value0;
|
|
__this->set_m_inherited_2(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.AttributeUsageAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__cctor_mF8E35DDC8310D4D1AF8C15442899BB38317F1DE9 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (AttributeUsageAttribute__cctor_mF8E35DDC8310D4D1AF8C15442899BB38317F1DE9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_0 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)il2cpp_codegen_object_new(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var);
|
|
AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051(L_0, ((int32_t)32767), /*hidden argument*/NULL);
|
|
((AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_StaticFields*)il2cpp_codegen_static_fields_for(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var))->set_Default_3(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.BadImageFormatException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m3AA3D56F804ADB66408EB0FB1EE3BA3CFE065EC0 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BadImageFormatException__ctor_m3AA3D56F804ADB66408EB0FB1EE3BA3CFE065EC0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral88C4304D27482BED2241CE9527351C05CDBBBF8A, /*hidden argument*/NULL);
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024885), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.BadImageFormatException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_mA5C18468FAEC29F4CE61209B9AED6A530EE6023E (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, String_t* ___message0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024885), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.BadImageFormatException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m3A8BBD5E4BDDF39C98370C07015B4EADE131A1F1 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, String_t* ___message0, Exception_t * ___inner1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
Exception_t * L_1 = ___inner1;
|
|
SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024885), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.BadImageFormatException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m0770706AFE893E9F0163DD7AB8C8752D8CAE41B7 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, String_t* ___message0, String_t* ___fileName1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024885), /*hidden argument*/NULL);
|
|
String_t* L_1 = ___fileName1;
|
|
__this->set__fileName_17(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.BadImageFormatException::get_Message()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BadImageFormatException_get_Message_m63D7C6BF3878D29F6B574942B512AFCFF030E68F (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BadImageFormatException_SetMessageField_m2C8D670210E769C795AABA7CF753B6A278036A84(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ((Exception_t *)__this)->get__message_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.BadImageFormatException::SetMessageField()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_SetMessageField_m2C8D670210E769C795AABA7CF753B6A278036A84 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BadImageFormatException_SetMessageField_m2C8D670210E769C795AABA7CF753B6A278036A84_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ((Exception_t *)__this)->get__message_2();
|
|
if (L_0)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = __this->get__fileName_17();
|
|
if (L_1)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)-2146233088)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral88C4304D27482BED2241CE9527351C05CDBBBF8A, /*hidden argument*/NULL);
|
|
((Exception_t *)__this)->set__message_2(L_3);
|
|
return;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
String_t* L_4 = __this->get__fileName_17();
|
|
int32_t L_5 = Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline(__this, /*hidden argument*/NULL);
|
|
String_t* L_6 = FileLoadException_FormatFileLoadExceptionMessage_m0DB5F9435778EFAEB7E4A91987B1C1925CCAA6F6(L_4, L_5, /*hidden argument*/NULL);
|
|
((Exception_t *)__this)->set__message_2(L_6);
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.BadImageFormatException::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BadImageFormatException_ToString_mD518BBE5092DF17432446363042C9BC0E91B609F (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BadImageFormatException_ToString_mD518BBE5092DF17432446363042C9BC0E91B609F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
Type_t * L_0 = Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_0);
|
|
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, __this);
|
|
String_t* L_3 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_1, _stringLiteralCECA32E904728D1645727CB2B9CDEAA153807D77, L_2, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
String_t* L_4 = __this->get__fileName_17();
|
|
if (!L_4)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = __this->get__fileName_17();
|
|
NullCheck(L_5);
|
|
int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_7 = V_0;
|
|
String_t* L_8 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_9;
|
|
String_t* L_11 = __this->get__fileName_17();
|
|
NullCheck(L_10);
|
|
ArrayElementTypeCheck (L_10, L_11);
|
|
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_11);
|
|
String_t* L_12 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE62577734DC95246ED5E8213FAE683CEE96DDAC8, L_10, /*hidden argument*/NULL);
|
|
String_t* L_13 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_7, L_8, L_12, /*hidden argument*/NULL);
|
|
V_0 = L_13;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
Exception_t * L_14 = Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline(__this, /*hidden argument*/NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_15 = V_0;
|
|
Exception_t * L_16 = Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_16);
|
|
String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_16);
|
|
String_t* L_18 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_15, _stringLiteral0EF8991E15895E04C4E0B24686E452411F00B53D, L_17, /*hidden argument*/NULL);
|
|
V_0 = L_18;
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Exception::get_StackTrace() */, __this);
|
|
if (!L_19)
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_20 = V_0;
|
|
String_t* L_21 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
|
|
String_t* L_22 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Exception::get_StackTrace() */, __this);
|
|
String_t* L_23 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_20, L_21, L_22, /*hidden argument*/NULL);
|
|
V_0 = L_23;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
}
|
|
|
|
IL_0090:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
String_t* L_24 = BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78_inline(__this, /*hidden argument*/NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
String_t* L_25 = V_0;
|
|
if (L_25)
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
V_0 = _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6;
|
|
}
|
|
|
|
IL_00a1:
|
|
{
|
|
String_t* L_26 = V_0;
|
|
String_t* L_27 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
|
|
String_t* L_28 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_26, L_27, /*hidden argument*/NULL);
|
|
V_0 = L_28;
|
|
String_t* L_29 = V_0;
|
|
String_t* L_30 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
|
|
String_t* L_31 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_29, L_30, /*hidden argument*/NULL);
|
|
V_0 = L_31;
|
|
String_t* L_32 = V_0;
|
|
String_t* L_33 = BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78_inline(__this, /*hidden argument*/NULL);
|
|
String_t* L_34 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_32, L_33, /*hidden argument*/NULL);
|
|
V_0 = L_34;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_00c8;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00c8:
|
|
{ // begin catch(System.Security.SecurityException)
|
|
goto IL_00cb;
|
|
} // end catch (depth: 1)
|
|
|
|
IL_00cb:
|
|
{
|
|
String_t* L_35 = V_0;
|
|
return L_35;
|
|
}
|
|
}
|
|
// System.Void System.BadImageFormatException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m897E6C06B73FB4B83F49B3DAD834507A8C19C404 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BadImageFormatException__ctor_m897E6C06B73FB4B83F49B3DAD834507A8C19C404_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_2, _stringLiteral3EA8B873C3337C5D440A0BC514F56B96C35623C4, /*hidden argument*/NULL);
|
|
__this->set__fileName_17(L_3);
|
|
}
|
|
|
|
IL_0019:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
|
|
NullCheck(L_4);
|
|
String_t* L_5 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_4, _stringLiteral5864A8D7BB6199A1EFA79008591241930D5E7EF2, /*hidden argument*/NULL);
|
|
__this->set__fusionLog_18(L_5);
|
|
goto IL_0036;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_002c;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_002c:
|
|
{ // begin catch(System.Object)
|
|
__this->set__fusionLog_18((String_t*)NULL);
|
|
goto IL_0036;
|
|
} // end catch (depth: 1)
|
|
|
|
IL_0036:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.BadImageFormatException::get_FusionLog()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get__fusionLog_18();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.BadImageFormatException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_GetObjectData_m5580B939314DA98EF6FCADE83DA3E7C9BE3BD991 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BadImageFormatException_GetObjectData_m5580B939314DA98EF6FCADE83DA3E7C9BE3BD991_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
|
|
String_t* L_3 = __this->get__fileName_17();
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
|
|
NullCheck(L_2);
|
|
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_2, _stringLiteral3EA8B873C3337C5D440A0BC514F56B96C35623C4, L_3, L_5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0023:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
|
|
String_t* L_7 = BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78_inline(__this, /*hidden argument*/NULL);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL);
|
|
NullCheck(L_6);
|
|
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_6, _stringLiteral5864A8D7BB6199A1EFA79008591241930D5E7EF2, L_7, L_9, /*hidden argument*/NULL);
|
|
goto IL_0043;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0040;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0040:
|
|
{ // begin catch(System.Security.SecurityException)
|
|
goto IL_0043;
|
|
} // end catch (depth: 1)
|
|
|
|
IL_0043:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean System.BitConverter::AmILittleEndian()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitConverter_AmILittleEndian_m905B5F8C9D11AF2B785413526A5A1C627735ACC8 (const RuntimeMethod* method)
|
|
{
|
|
double V_0 = 0.0;
|
|
uint8_t* V_1 = NULL;
|
|
{
|
|
V_0 = (1.0);
|
|
V_1 = (uint8_t*)(((uintptr_t)(&V_0)));
|
|
uint8_t* L_0 = V_1;
|
|
int32_t L_1 = *((uint8_t*)L_0);
|
|
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Byte[] System.BitConverter::GetBytes(System.Int16)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverter_GetBytes_mB7DFC7C4705F916C40527A87C9AA6D0EABC23512 (int16_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_GetBytes_mB7DFC7C4705F916C40527A87C9AA6D0EABC23512_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint8_t* V_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B2_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B1_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B3_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B4_0 = NULL;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1;
|
|
V_1 = L_2;
|
|
G_B1_0 = L_1;
|
|
if (!L_2)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
G_B2_0 = G_B1_0;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
G_B3_0 = G_B1_0;
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
V_0 = (uint8_t*)(((uintptr_t)0));
|
|
G_B4_0 = G_B2_0;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
|
|
G_B4_0 = G_B3_0;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
uint8_t* L_5 = V_0;
|
|
int16_t L_6 = ___value0;
|
|
*((int16_t*)L_5) = (int16_t)L_6;
|
|
V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
|
|
return G_B4_0;
|
|
}
|
|
}
|
|
// System.Byte[] System.BitConverter::GetBytes(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverter_GetBytes_mB5BCBAAFE3AE14F2AF1731187C7155A236DF38EA (int32_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_GetBytes_mB5BCBAAFE3AE14F2AF1731187C7155A236DF38EA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint8_t* V_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B2_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B1_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B3_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B4_0 = NULL;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)4);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1;
|
|
V_1 = L_2;
|
|
G_B1_0 = L_1;
|
|
if (!L_2)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
G_B2_0 = G_B1_0;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
G_B3_0 = G_B1_0;
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
V_0 = (uint8_t*)(((uintptr_t)0));
|
|
G_B4_0 = G_B2_0;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
|
|
G_B4_0 = G_B3_0;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
uint8_t* L_5 = V_0;
|
|
int32_t L_6 = ___value0;
|
|
*((int32_t*)L_5) = (int32_t)L_6;
|
|
V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
|
|
return G_B4_0;
|
|
}
|
|
}
|
|
// System.Byte[] System.BitConverter::GetBytes(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverter_GetBytes_m2652D1E20FC48C5953639CE61B2F064C2074CF78 (int64_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_GetBytes_m2652D1E20FC48C5953639CE61B2F064C2074CF78_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint8_t* V_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B2_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B1_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B3_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B4_0 = NULL;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1;
|
|
V_1 = L_2;
|
|
G_B1_0 = L_1;
|
|
if (!L_2)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
G_B2_0 = G_B1_0;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
G_B3_0 = G_B1_0;
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
V_0 = (uint8_t*)(((uintptr_t)0));
|
|
G_B4_0 = G_B2_0;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
|
|
G_B4_0 = G_B3_0;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
uint8_t* L_5 = V_0;
|
|
int64_t L_6 = ___value0;
|
|
*((int64_t*)L_5) = (int64_t)L_6;
|
|
V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
|
|
return G_B4_0;
|
|
}
|
|
}
|
|
// System.Byte[] System.BitConverter::GetBytes(System.UInt16)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverter_GetBytes_m692444BB12DAE2F46C7DDE67B04CF2073DEE1211 (uint16_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_GetBytes_m692444BB12DAE2F46C7DDE67B04CF2073DEE1211_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
uint16_t L_0 = ___value0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = BitConverter_GetBytes_mB7DFC7C4705F916C40527A87C9AA6D0EABC23512((((int16_t)((int16_t)L_0))), /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Byte[] System.BitConverter::GetBytes(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverter_GetBytes_m5795DECB822051D8BBF3EA92DD3B2372E017ADAF (float ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_GetBytes_m5795DECB822051D8BBF3EA92DD3B2372E017ADAF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((int32_t*)(((uintptr_t)(&___value0))));
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = BitConverter_GetBytes_mB5BCBAAFE3AE14F2AF1731187C7155A236DF38EA(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Byte[] System.BitConverter::GetBytes(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverter_GetBytes_mA467343A340BEB9E48750918EE3377291DB25A58 (double ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_GetBytes_mA467343A340BEB9E48750918EE3377291DB25A58_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = *((int64_t*)(((uintptr_t)(&___value0))));
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = BitConverter_GetBytes_m2652D1E20FC48C5953639CE61B2F064C2074CF78(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int16 System.BitConverter::ToInt16(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint8_t* V_0 = NULL;
|
|
uint8_t* V_1 = NULL;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0;
|
|
NullCheck(L_2);
|
|
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_3 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0;
|
|
NullCheck(L_4);
|
|
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)2)))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0;
|
|
int32_t L_6 = ___startIndex1;
|
|
NullCheck(L_5);
|
|
V_1 = (uint8_t*)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)));
|
|
uint8_t* L_7 = V_1;
|
|
V_0 = (uint8_t*)(((uintptr_t)L_7));
|
|
int32_t L_8 = ___startIndex1;
|
|
if (((int32_t)((int32_t)L_8%(int32_t)2)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_9 = V_0;
|
|
int32_t L_10 = *((int16_t*)L_9);
|
|
return (int16_t)L_10;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
bool L_11 = ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
|
|
if (!L_11)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_12 = V_0;
|
|
int32_t L_13 = *((uint8_t*)L_12);
|
|
uint8_t* L_14 = V_0;
|
|
int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)1)));
|
|
return (((int16_t)((int16_t)((int32_t)((int32_t)L_13|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8)))))));
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
uint8_t* L_16 = V_0;
|
|
int32_t L_17 = *((uint8_t*)L_16);
|
|
uint8_t* L_18 = V_0;
|
|
int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)1)));
|
|
return (((int16_t)((int16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_17<<(int32_t)8))|(int32_t)L_19)))));
|
|
}
|
|
}
|
|
// System.Int32 System.BitConverter::ToInt32(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint8_t* V_0 = NULL;
|
|
uint8_t* V_1 = NULL;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0;
|
|
NullCheck(L_2);
|
|
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_3 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0;
|
|
NullCheck(L_4);
|
|
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)4)))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0;
|
|
int32_t L_6 = ___startIndex1;
|
|
NullCheck(L_5);
|
|
V_1 = (uint8_t*)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)));
|
|
uint8_t* L_7 = V_1;
|
|
V_0 = (uint8_t*)(((uintptr_t)L_7));
|
|
int32_t L_8 = ___startIndex1;
|
|
if (((int32_t)((int32_t)L_8%(int32_t)4)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_9 = V_0;
|
|
int32_t L_10 = *((int32_t*)L_9);
|
|
return L_10;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
bool L_11 = ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
|
|
if (!L_11)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_12 = V_0;
|
|
int32_t L_13 = *((uint8_t*)L_12);
|
|
uint8_t* L_14 = V_0;
|
|
int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)1)));
|
|
uint8_t* L_16 = V_0;
|
|
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)2)));
|
|
uint8_t* L_18 = V_0;
|
|
int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)3)));
|
|
return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_13|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)L_17<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_19<<(int32_t)((int32_t)24)))));
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
uint8_t* L_20 = V_0;
|
|
int32_t L_21 = *((uint8_t*)L_20);
|
|
uint8_t* L_22 = V_0;
|
|
int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)1)));
|
|
uint8_t* L_24 = V_0;
|
|
int32_t L_25 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)2)));
|
|
uint8_t* L_26 = V_0;
|
|
int32_t L_27 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)3)));
|
|
return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_21<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_23<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_25<<(int32_t)8))))|(int32_t)L_27));
|
|
}
|
|
}
|
|
// System.Int64 System.BitConverter::ToInt64(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_ToInt64_m28987106F93DB8C163FD4E740B4FEA405CC8A7FA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_ToInt64_m28987106F93DB8C163FD4E740B4FEA405CC8A7FA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint8_t* V_0 = NULL;
|
|
uint8_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0;
|
|
NullCheck(L_2);
|
|
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_3 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0;
|
|
NullCheck(L_4);
|
|
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)8)))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0;
|
|
int32_t L_6 = ___startIndex1;
|
|
NullCheck(L_5);
|
|
V_1 = (uint8_t*)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)));
|
|
uint8_t* L_7 = V_1;
|
|
V_0 = (uint8_t*)(((uintptr_t)L_7));
|
|
int32_t L_8 = ___startIndex1;
|
|
if (((int32_t)((int32_t)L_8%(int32_t)8)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_9 = V_0;
|
|
int64_t L_10 = *((int64_t*)L_9);
|
|
return L_10;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
bool L_11 = ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
|
|
if (!L_11)
|
|
{
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_12 = V_0;
|
|
int32_t L_13 = *((uint8_t*)L_12);
|
|
uint8_t* L_14 = V_0;
|
|
int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)1)));
|
|
uint8_t* L_16 = V_0;
|
|
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)2)));
|
|
uint8_t* L_18 = V_0;
|
|
int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)3)));
|
|
uint8_t* L_20 = V_0;
|
|
int32_t L_21 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, (int32_t)4)));
|
|
uint8_t* L_22 = V_0;
|
|
int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)5)));
|
|
uint8_t* L_24 = V_0;
|
|
int32_t L_25 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)6)));
|
|
uint8_t* L_26 = V_0;
|
|
int32_t L_27 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)7)));
|
|
V_2 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_21|(int32_t)((int32_t)((int32_t)L_23<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)L_25<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_27<<(int32_t)((int32_t)24)))));
|
|
int32_t L_28 = V_2;
|
|
return ((int64_t)((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_13|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)L_17<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_19<<(int32_t)((int32_t)24)))))))))))|(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_28)))<<(int32_t)((int32_t)32)))));
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
uint8_t* L_29 = V_0;
|
|
int32_t L_30 = *((uint8_t*)L_29);
|
|
uint8_t* L_31 = V_0;
|
|
int32_t L_32 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)1)));
|
|
uint8_t* L_33 = V_0;
|
|
int32_t L_34 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_33, (int32_t)2)));
|
|
uint8_t* L_35 = V_0;
|
|
int32_t L_36 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)3)));
|
|
V_3 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_30<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_32<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_34<<(int32_t)8))))|(int32_t)L_36));
|
|
uint8_t* L_37 = V_0;
|
|
int32_t L_38 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)4)));
|
|
uint8_t* L_39 = V_0;
|
|
int32_t L_40 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, (int32_t)5)));
|
|
uint8_t* L_41 = V_0;
|
|
int32_t L_42 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_41, (int32_t)6)));
|
|
uint8_t* L_43 = V_0;
|
|
int32_t L_44 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_43, (int32_t)7)));
|
|
int32_t L_45 = V_3;
|
|
return ((int64_t)((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_38<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_40<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_42<<(int32_t)8))))|(int32_t)L_44))))))))|(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_45)))<<(int32_t)((int32_t)32)))));
|
|
}
|
|
}
|
|
// System.UInt16 System.BitConverter::ToUInt16(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t BitConverter_ToUInt16_m8D6CAA71ACA3A50B5481B836E51FC8D26C14ED90 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_ToUInt16_m8D6CAA71ACA3A50B5481B836E51FC8D26C14ED90_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0;
|
|
NullCheck(L_2);
|
|
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_3 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0;
|
|
NullCheck(L_4);
|
|
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)2)))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0;
|
|
int32_t L_6 = ___startIndex1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
int16_t L_7 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_5, L_6, /*hidden argument*/NULL);
|
|
return (uint16_t)(((int32_t)((uint16_t)L_7)));
|
|
}
|
|
}
|
|
// System.UInt32 System.BitConverter::ToUInt32(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t BitConverter_ToUInt32_mD6A3C2F4BA020691B99FABF863F6FFF6A456FF59 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_ToUInt32_mD6A3C2F4BA020691B99FABF863F6FFF6A456FF59_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0;
|
|
NullCheck(L_2);
|
|
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_3 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0;
|
|
NullCheck(L_4);
|
|
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)4)))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0;
|
|
int32_t L_6 = ___startIndex1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
int32_t L_7 = BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391(L_5, L_6, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.UInt64 System.BitConverter::ToUInt64(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t BitConverter_ToUInt64_m2AB7FBC373C5A2DEB276DDF00289A69C80A84451 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_ToUInt64_m2AB7FBC373C5A2DEB276DDF00289A69C80A84451_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0;
|
|
NullCheck(L_2);
|
|
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_3 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0;
|
|
NullCheck(L_4);
|
|
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)8)))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0;
|
|
int32_t L_6 = ___startIndex1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
int64_t L_7 = BitConverter_ToInt64_m28987106F93DB8C163FD4E740B4FEA405CC8A7FA(L_5, L_6, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Single System.BitConverter::ToSingle(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BitConverter_ToSingle_m5A87B9C607E24D0F283EB39990FAF7ABAB1CBB17 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_ToSingle_m5A87B9C607E24D0F283EB39990FAF7ABAB1CBB17_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0;
|
|
NullCheck(L_2);
|
|
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_3 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0;
|
|
NullCheck(L_4);
|
|
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)4)))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0;
|
|
int32_t L_6 = ___startIndex1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
int32_t L_7 = BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391(L_5, L_6, /*hidden argument*/NULL);
|
|
V_0 = L_7;
|
|
float L_8 = *((float*)(((uintptr_t)(&V_0))));
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Double System.BitConverter::ToDouble(System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double BitConverter_ToDouble_m5C36647E95F4F3FF047B452C9A21A58E466CA295 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_ToDouble_m5C36647E95F4F3FF047B452C9A21A58E466CA295_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0;
|
|
NullCheck(L_2);
|
|
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_3 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0;
|
|
NullCheck(L_4);
|
|
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)8)))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0;
|
|
int32_t L_6 = ___startIndex1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
int64_t L_7 = BitConverter_ToInt64_m28987106F93DB8C163FD4E740B4FEA405CC8A7FA(L_5, L_6, /*hidden argument*/NULL);
|
|
V_0 = L_7;
|
|
double L_8 = *((double*)(((uintptr_t)(&V_0))));
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Char System.BitConverter::GetHexValue(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar BitConverter_GetHexValue_mDB37DC2A53B2CFD01D8FE51C0CF7B8211E8FBBE3 (int32_t ___i0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___i0;
|
|
if ((((int32_t)L_0) >= ((int32_t)((int32_t)10))))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___i0;
|
|
return (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)((int32_t)48))))));
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_2 = ___i0;
|
|
return (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)10))), (int32_t)((int32_t)65))))));
|
|
}
|
|
}
|
|
// System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
uint8_t V_4 = 0x0;
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___startIndex1;
|
|
if ((((int32_t)L_2) < ((int32_t)0)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0;
|
|
NullCheck(L_4);
|
|
if ((((int32_t)L_3) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___startIndex1;
|
|
if ((((int32_t)L_5) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral99DD65011324D0DDDAE2BC2BE40CEFC52DC334BE, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_6, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
int32_t L_8 = ___length2;
|
|
if ((((int32_t)L_8) >= ((int32_t)0)))
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral044F779DD78DC457C66C3F03FB54E04EE4013F70, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
int32_t L_11 = ___startIndex1;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___value0;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = ___length2;
|
|
if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))), (int32_t)L_13)))))
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
int32_t L_16 = ___length2;
|
|
if (L_16)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_17 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
return L_17;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t L_18 = ___length2;
|
|
if ((((int32_t)L_18) <= ((int32_t)((int32_t)715827882))))
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = L_19;
|
|
int32_t L_21 = ((int32_t)715827882);
|
|
RuntimeObject * L_22 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_21);
|
|
NullCheck(L_20);
|
|
ArrayElementTypeCheck (L_20, L_22);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_22);
|
|
String_t* L_23 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral532E128909AB556DD052ED48219FF87E1482B7E8, L_20, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_24 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_24, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_23, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
int32_t L_25 = ___length2;
|
|
V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_25, (int32_t)3));
|
|
int32_t L_26 = V_0;
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_27 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_26);
|
|
V_1 = L_27;
|
|
V_2 = 0;
|
|
int32_t L_28 = ___startIndex1;
|
|
V_3 = L_28;
|
|
V_2 = 0;
|
|
goto IL_00de;
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = ___value0;
|
|
int32_t L_30 = V_3;
|
|
int32_t L_31 = L_30;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
|
|
NullCheck(L_29);
|
|
int32_t L_32 = L_31;
|
|
uint8_t L_33 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
|
|
V_4 = L_33;
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_34 = V_1;
|
|
int32_t L_35 = V_2;
|
|
uint8_t L_36 = V_4;
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_37 = BitConverter_GetHexValue_mDB37DC2A53B2CFD01D8FE51C0CF7B8211E8FBBE3(((int32_t)((int32_t)L_36/(int32_t)((int32_t)16))), /*hidden argument*/NULL);
|
|
NullCheck(L_34);
|
|
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(L_35), (Il2CppChar)L_37);
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_38 = V_1;
|
|
int32_t L_39 = V_2;
|
|
uint8_t L_40 = V_4;
|
|
Il2CppChar L_41 = BitConverter_GetHexValue_mDB37DC2A53B2CFD01D8FE51C0CF7B8211E8FBBE3(((int32_t)((int32_t)L_40%(int32_t)((int32_t)16))), /*hidden argument*/NULL);
|
|
NullCheck(L_38);
|
|
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1))), (Il2CppChar)L_41);
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_42 = V_1;
|
|
int32_t L_43 = V_2;
|
|
NullCheck(L_42);
|
|
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)2))), (Il2CppChar)((int32_t)45));
|
|
int32_t L_44 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)3));
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
int32_t L_45 = V_2;
|
|
int32_t L_46 = V_0;
|
|
if ((((int32_t)L_45) < ((int32_t)L_46)))
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
{
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_47 = V_1;
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_48 = V_1;
|
|
NullCheck(L_48);
|
|
String_t* L_49 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_47, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))), (int32_t)1)), /*hidden argument*/NULL);
|
|
return L_49;
|
|
}
|
|
}
|
|
// System.String System.BitConverter::ToString(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_m6201360C9B19FD17437AA1C88AF1743DCF3442E3 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter_ToString_m6201360C9B19FD17437AA1C88AF1743DCF3442E3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, BitConverter_ToString_m6201360C9B19FD17437AA1C88AF1743DCF3442E3_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___value0;
|
|
NullCheck(L_3);
|
|
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
|
|
String_t* L_4 = BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211(L_2, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))), /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Int64 System.BitConverter::DoubleToInt64Bits(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_mE511B45BE25B2E1D22059420D16055CBA7E1EAA4 (double ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = *((int64_t*)(((uintptr_t)(&___value0))));
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Double System.BitConverter::Int64BitsToDouble(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double BitConverter_Int64BitsToDouble_m9BCBEBF8C6E35A37E6A233B11F97164D9F0BF694 (int64_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
double L_0 = *((double*)(((uintptr_t)(&___value0))));
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.BitConverter::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverter__cctor_m96EE9A8F92BEA2B6D94CE6AD09A88BF603E134E4 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (BitConverter__cctor_m96EE9A8F92BEA2B6D94CE6AD09A88BF603E134E4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = BitConverter_AmILittleEndian_m905B5F8C9D11AF2B785413526A5A1C627735ACC8(/*hidden argument*/NULL);
|
|
((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->set_IsLittleEndian_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Int32 System.Boolean::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737 (bool* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
if (L_0)
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
return 1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737(_thisAdjusted, method);
|
|
}
|
|
// System.String System.Boolean::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301 (bool* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return _stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
return _stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301(_thisAdjusted, method);
|
|
}
|
|
// System.String System.Boolean::ToString(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return _stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
return _stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Boolean System.Boolean::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = *((uint8_t*)__this);
|
|
RuntimeObject * L_2 = ___obj0;
|
|
return (bool)((((int32_t)L_1) == ((int32_t)((*(bool*)((bool*)UnBox(L_2, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))))))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7(_thisAdjusted, ___obj0, method);
|
|
}
|
|
// System.Boolean System.Boolean::Equals(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mD6223639457331BC16211ED4772C5927668DC060 (bool* __this, bool ___obj0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
bool L_1 = ___obj0;
|
|
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Boolean_Equals_mD6223639457331BC16211ED4772C5927668DC060_AdjustorThunk (RuntimeObject * __this, bool ___obj0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_Equals_mD6223639457331BC16211ED4772C5927668DC060(_thisAdjusted, ___obj0, method);
|
|
}
|
|
// System.Int32 System.Boolean::CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD6DC02C9D8E4C868B5A707AFF489D319C7474F1B, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, L_2, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_4 = *((uint8_t*)__this);
|
|
RuntimeObject * L_5 = ___obj0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)((*(bool*)((bool*)UnBox(L_5, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))))))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
int32_t L_6 = *((uint8_t*)__this);
|
|
if (L_6)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return 1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68(_thisAdjusted, ___obj0, method);
|
|
}
|
|
// System.Int32 System.Boolean::CompareTo(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_m0646A70387C90DAF7C85AF4234879E31E4422911 (bool* __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
bool L_1 = ___value0;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
int32_t L_2 = *((uint8_t*)__this);
|
|
if (L_2)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
return 1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Boolean_CompareTo_m0646A70387C90DAF7C85AF4234879E31E4422911_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_CompareTo_m0646A70387C90DAF7C85AF4234879E31E4422911(_thisAdjusted, ___value0, method);
|
|
}
|
|
// System.Boolean System.Boolean::Parse(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F (String_t* ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = (bool)0;
|
|
String_t* L_2 = ___value0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var);
|
|
bool L_3 = Boolean_TryParse_m5EA8C5E47A3BF0223FD368503B36206256937A61(L_2, (bool*)(&V_0), /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2C1B23E451F9B7284192F8746A59CBEFB5F8470A, /*hidden argument*/NULL);
|
|
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_5 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
|
|
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_5, L_4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
bool L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean System.Boolean::TryParse(System.String,System.Boolean&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_m5EA8C5E47A3BF0223FD368503B36206256937A61 (String_t* ___value0, bool* ___result1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_TryParse_m5EA8C5E47A3BF0223FD368503B36206256937A61_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool* L_0 = ___result1;
|
|
*((int8_t*)L_0) = (int8_t)0;
|
|
String_t* L_1 = ___value0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
String_t* L_2 = ___value0;
|
|
NullCheck(_stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612);
|
|
bool L_3 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(_stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612, L_2, 5, /*hidden argument*/NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
bool* L_4 = ___result1;
|
|
*((int8_t*)L_4) = (int8_t)1;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
String_t* L_5 = ___value0;
|
|
NullCheck(_stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD);
|
|
bool L_6 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(_stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD, L_5, 5, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
bool* L_7 = ___result1;
|
|
*((int8_t*)L_7) = (int8_t)0;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
String_t* L_8 = ___value0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var);
|
|
String_t* L_9 = Boolean_TrimWhiteSpaceAndNull_mD8E9241675F8550855A9C956B39EDCE5167E381C(L_8, /*hidden argument*/NULL);
|
|
___value0 = L_9;
|
|
String_t* L_10 = ___value0;
|
|
NullCheck(_stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612);
|
|
bool L_11 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(_stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612, L_10, 5, /*hidden argument*/NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
bool* L_12 = ___result1;
|
|
*((int8_t*)L_12) = (int8_t)1;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
String_t* L_13 = ___value0;
|
|
NullCheck(_stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD);
|
|
bool L_14 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(_stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD, L_13, 5, /*hidden argument*/NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
bool* L_15 = ___result1;
|
|
*((int8_t*)L_15) = (int8_t)0;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.String System.Boolean::TrimWhiteSpaceAndNull(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_TrimWhiteSpaceAndNull_mD8E9241675F8550855A9C956B39EDCE5167E381C (String_t* ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_TrimWhiteSpaceAndNull_mD8E9241675F8550855A9C956B39EDCE5167E381C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
{
|
|
V_0 = 0;
|
|
String_t* L_0 = ___value0;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1));
|
|
V_2 = 0;
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
String_t* L_2 = ___value0;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_2, L_3, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_5 = Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B(L_4, /*hidden argument*/NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = ___value0;
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, L_7, /*hidden argument*/NULL);
|
|
Il2CppChar L_9 = V_2;
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)L_9))))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
int32_t L_11 = V_0;
|
|
String_t* L_12 = ___value0;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_12, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_11) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
String_t* L_14 = ___value0;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
Il2CppChar L_16 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_14, L_15, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_17 = Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B(L_16, /*hidden argument*/NULL);
|
|
if (L_17)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_18 = ___value0;
|
|
int32_t L_19 = V_1;
|
|
NullCheck(L_18);
|
|
Il2CppChar L_20 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_18, L_19, /*hidden argument*/NULL);
|
|
Il2CppChar L_21 = V_2;
|
|
if ((!(((uint32_t)L_20) == ((uint32_t)L_21))))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1));
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
if ((((int32_t)L_23) >= ((int32_t)L_24)))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
String_t* L_25 = ___value0;
|
|
int32_t L_26 = V_0;
|
|
int32_t L_27 = V_1;
|
|
int32_t L_28 = V_0;
|
|
NullCheck(L_25);
|
|
String_t* L_29 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_25, L_26, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_28)), (int32_t)1)), /*hidden argument*/NULL);
|
|
return L_29;
|
|
}
|
|
}
|
|
// System.TypeCode System.Boolean::GetTypeCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetTypeCode_mDA98DB5F00159689F46329C57C3A888F7DB37B88 (bool* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (int32_t)(3);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Boolean_GetTypeCode_mDA98DB5F00159689F46329C57C3A888F7DB37B88_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_GetTypeCode_mDA98DB5F00159689F46329C57C3A888F7DB37B88(_thisAdjusted, method);
|
|
}
|
|
// System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_System_IConvertible_ToBoolean_m0DD28BDDA1CB08D62A712D03811E18AEA4E2624C (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
return (bool)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Boolean_System_IConvertible_ToBoolean_m0DD28BDDA1CB08D62A712D03811E18AEA4E2624C_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToBoolean_m0DD28BDDA1CB08D62A712D03811E18AEA4E2624C(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
|
|
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
|
|
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355_RuntimeMethod_var);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Il2CppChar Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int8_t L_1 = Convert_ToSByte_mE5314E3F9BD2A1FB38C2E8F91065A515DB980349((bool)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int8_t Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
uint8_t L_1 = Convert_ToByte_m2F75DB84C61D7D1D64393FD5756A9C9DE04FF716((bool)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint8_t Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int16_t L_1 = Convert_ToInt16_mE5AC67CF54A1DC058F4FF94444E2BED13D4E41A1((bool)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int16_t Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
uint16_t L_1 = Convert_ToUInt16_mE5DBE88FC67DB81359A27BEC9BC61EE1C4816F7E((bool)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint16_t Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = Convert_ToInt32_m39901AE09C5431063E0EDBD286948E875E747B66((bool)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
uint32_t L_1 = Convert_ToUInt32_m0A1093A798B8004A58C7905A23886132BDC347ED((bool)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int64_t L_1 = Convert_ToInt64_mBF88328347C2C2FC83315E9B950ADD1CF473559E((bool)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int64_t Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
uint64_t L_1 = Convert_ToUInt64_m46350FEF6029990034BDFAB1FBC4F25EAF47B53B((bool)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint64_t Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
float L_1 = Convert_ToSingle_m8C04F9D9C974F7AD8B41E87B5419FFA9EB9C88E7((bool)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
double L_1 = Convert_ToDouble_mF6258103D74509D52040BECC84FB241B09B6CC62((bool)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_mF2C5F32DF4C8DC0938C223031CDDF4AC1E08A0CC((bool)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
|
|
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
|
|
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
|
|
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B_RuntimeMethod_var);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220 (bool* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
bool L_1 = ((bool)L_0);
|
|
RuntimeObject * L_2 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_1);
|
|
Type_t * L_3 = ___type0;
|
|
RuntimeObject* L_4 = ___provider1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject * Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
|
|
return Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220(_thisAdjusted, ___type0, ___provider1, method);
|
|
}
|
|
// System.Void System.Boolean::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Boolean__cctor_mD84E33DC70FD9D37BAEA0AEB64150B59FB2C5852 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Boolean__cctor_mD84E33DC70FD9D37BAEA0AEB64150B59FB2C5852_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))->set_TrueString_5(_stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612);
|
|
((Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))->set_FalseString_6(_stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean System.Buffer::InternalBlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2 (RuntimeArray * ___src0, int32_t ___srcOffsetBytes1, RuntimeArray * ___dst2, int32_t ___dstOffsetBytes3, int32_t ___byteCount4, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2_ftn) (RuntimeArray *, int32_t, RuntimeArray *, int32_t, int32_t);
|
|
using namespace il2cpp::icalls;
|
|
return ((Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2_ftn)mscorlib::System::Buffer::InternalBlockCopy) (___src0, ___srcOffsetBytes1, ___dst2, ___dstOffsetBytes3, ___byteCount4);
|
|
}
|
|
// System.Int32 System.Buffer::IndexOfByte(System.Byte*,System.Byte,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_IndexOfByte_m04E6E27CA0059C3D1F07DF6FEE96517B0A795EB8 (uint8_t* ___src0, uint8_t ___value1, int32_t ___index2, int32_t ___count3, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
uint32_t V_1 = 0;
|
|
uint32_t V_2 = 0;
|
|
uint32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
{
|
|
uint8_t* L_0 = ___src0;
|
|
int32_t L_1 = ___index2;
|
|
V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
int32_t L_2 = ___count3;
|
|
if (L_2)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
uint8_t* L_3 = V_0;
|
|
int32_t L_4 = *((uint8_t*)L_3);
|
|
uint8_t L_5 = ___value1;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)L_5))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_6 = V_0;
|
|
uint8_t* L_7 = ___src0;
|
|
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_6, (intptr_t)L_7))/(int32_t)1))))))));
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_8 = ___count3;
|
|
___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
|
|
uint8_t* L_9 = V_0;
|
|
V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)1));
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
uint8_t* L_10 = V_0;
|
|
if (((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_10)))&(int32_t)3)))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_11 = ___value1;
|
|
uint8_t L_12 = ___value1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_11<<(int32_t)8)), (int32_t)L_12));
|
|
uint32_t L_13 = V_1;
|
|
uint32_t L_14 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_13<<(int32_t)((int32_t)16))), (int32_t)L_14));
|
|
goto IL_0096;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
uint8_t* L_15 = V_0;
|
|
int32_t L_16 = *((uint32_t*)L_15);
|
|
V_2 = L_16;
|
|
uint32_t L_17 = V_2;
|
|
uint32_t L_18 = V_1;
|
|
V_2 = ((int32_t)((int32_t)L_17^(int32_t)L_18));
|
|
uint32_t L_19 = V_2;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)2130640639), (int32_t)L_19));
|
|
uint32_t L_20 = V_2;
|
|
V_2 = ((int32_t)((int32_t)L_20^(int32_t)(-1)));
|
|
uint32_t L_21 = V_2;
|
|
uint32_t L_22 = V_3;
|
|
V_2 = ((int32_t)((int32_t)L_21^(int32_t)L_22));
|
|
uint32_t L_23 = V_2;
|
|
V_2 = ((int32_t)((int32_t)L_23&(int32_t)((int32_t)-2130640640)));
|
|
uint32_t L_24 = V_2;
|
|
if (!L_24)
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_25 = V_0;
|
|
uint8_t* L_26 = ___src0;
|
|
V_4 = (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_25, (intptr_t)L_26))/(int32_t)1))))))));
|
|
uint8_t* L_27 = V_0;
|
|
int32_t L_28 = *((uint8_t*)L_27);
|
|
uint8_t L_29 = ___value1;
|
|
if ((!(((uint32_t)L_28) == ((uint32_t)L_29))))
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = V_4;
|
|
return L_30;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
uint8_t* L_31 = V_0;
|
|
int32_t L_32 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)1)));
|
|
uint8_t L_33 = ___value1;
|
|
if ((!(((uint32_t)L_32) == ((uint32_t)L_33))))
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_34 = V_4;
|
|
return ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1));
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
uint8_t* L_35 = V_0;
|
|
int32_t L_36 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)2)));
|
|
uint8_t L_37 = ___value1;
|
|
if ((!(((uint32_t)L_36) == ((uint32_t)L_37))))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_38 = V_4;
|
|
return ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)2));
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
uint8_t* L_39 = V_0;
|
|
int32_t L_40 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, (int32_t)3)));
|
|
uint8_t L_41 = ___value1;
|
|
if ((!(((uint32_t)L_40) == ((uint32_t)L_41))))
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_42 = V_4;
|
|
return ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)3));
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
int32_t L_43 = ___count3;
|
|
___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)4));
|
|
uint8_t* L_44 = V_0;
|
|
V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_44, (int32_t)4));
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_45 = ___count3;
|
|
if ((((int32_t)L_45) > ((int32_t)3)))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b2;
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
uint8_t* L_46 = V_0;
|
|
int32_t L_47 = *((uint8_t*)L_46);
|
|
uint8_t L_48 = ___value1;
|
|
if ((!(((uint32_t)L_47) == ((uint32_t)L_48))))
|
|
{
|
|
goto IL_00a9;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_49 = V_0;
|
|
uint8_t* L_50 = ___src0;
|
|
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_49, (intptr_t)L_50))/(int32_t)1))))))));
|
|
}
|
|
|
|
IL_00a9:
|
|
{
|
|
int32_t L_51 = ___count3;
|
|
___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)1));
|
|
uint8_t* L_52 = V_0;
|
|
V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_52, (int32_t)1));
|
|
}
|
|
|
|
IL_00b2:
|
|
{
|
|
int32_t L_53 = ___count3;
|
|
if ((((int32_t)L_53) > ((int32_t)0)))
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
// System.Int32 System.Buffer::_ByteLength(System.Array)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer__ByteLength_m35D3BB15D47BB68204C272415AB08FB4B290CA34 (RuntimeArray * ___array0, const RuntimeMethod* method)
|
|
{
|
|
typedef int32_t (*Buffer__ByteLength_m35D3BB15D47BB68204C272415AB08FB4B290CA34_ftn) (RuntimeArray *);
|
|
using namespace il2cpp::icalls;
|
|
return ((Buffer__ByteLength_m35D3BB15D47BB68204C272415AB08FB4B290CA34_ftn)mscorlib::System::Buffer::_ByteLength) (___array0);
|
|
}
|
|
// System.Void System.Buffer::ZeroMemory(System.Byte*,System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_ZeroMemory_mAB17C8C19C2C8DD1F10E232FAE69C2FCBC31CCAC (uint8_t* ___src0, int64_t ___len1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
|
|
IL_0002:
|
|
{
|
|
uint8_t* L_0 = ___src0;
|
|
int64_t L_1 = ___len1;
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)L_1))))) = (int8_t)0;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
int64_t L_2 = ___len1;
|
|
int64_t L_3 = L_2;
|
|
___len1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_3, (int64_t)(((int64_t)((int64_t)1)))));
|
|
if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)0))))))
|
|
{
|
|
goto IL_0002;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Buffer::Memcpy(System.Byte[],System.Int32,System.Byte*,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_mDB0DE0234F1410CA74D01118A783FFB927B73354 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___dest0, int32_t ___destIndex1, uint8_t* ___src2, int32_t ___srcIndex3, int32_t ___len4, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
|
|
{
|
|
int32_t L_0 = ___len4;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___dest0;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1;
|
|
V_1 = L_2;
|
|
if (!L_2)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
V_0 = (uint8_t*)(((uintptr_t)0));
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
uint8_t* L_5 = V_0;
|
|
int32_t L_6 = ___destIndex1;
|
|
uint8_t* L_7 = ___src2;
|
|
int32_t L_8 = ___srcIndex3;
|
|
int32_t L_9 = ___len4;
|
|
Buffer_Memcpy_m4D475106A101E5ED38EB22776EAAFB6D02F63678((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6)), (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)L_8)), L_9, /*hidden argument*/NULL);
|
|
V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Buffer::Memcpy(System.Byte*,System.Int32,System.Byte[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_m440DCCE8D0D13779D26E7B41618066CA98F4DEF3 (uint8_t* ___pDest0, int32_t ___destIndex1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___src2, int32_t ___srcIndex3, int32_t ___len4, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
|
|
{
|
|
int32_t L_0 = ___len4;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___src2;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1;
|
|
V_1 = L_2;
|
|
if (!L_2)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
V_0 = (uint8_t*)(((uintptr_t)0));
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
uint8_t* L_5 = ___pDest0;
|
|
int32_t L_6 = ___destIndex1;
|
|
uint8_t* L_7 = V_0;
|
|
int32_t L_8 = ___srcIndex3;
|
|
int32_t L_9 = ___len4;
|
|
Buffer_Memcpy_m4D475106A101E5ED38EB22776EAAFB6D02F63678((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6)), (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)L_8)), L_9, /*hidden argument*/NULL);
|
|
V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.Buffer::ByteLength(System.Array)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8 (RuntimeArray * ___array0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
RuntimeArray * L_0 = ___array0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___array0;
|
|
int32_t L_3 = Buffer__ByteLength_m35D3BB15D47BB68204C272415AB08FB4B290CA34(L_2, /*hidden argument*/NULL);
|
|
int32_t L_4 = L_3;
|
|
G_B3_0 = L_4;
|
|
if ((((int32_t)L_4) >= ((int32_t)0)))
|
|
{
|
|
G_B4_0 = L_4;
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralB3EEB66EC519D8B1B40897F0EE3BDFC97D6DA28B, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, L_5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
return G_B4_0;
|
|
}
|
|
}
|
|
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353 (RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeArray * L_0 = ___src0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF27FEDE2220BCD326AEE3E86DDFD4EBD0FE58CB9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray * L_2 = ___dst2;
|
|
if (L_2)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralA7F719BF74E49F78DA1A4EDFED258B184A7054FF, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_4 = ___srcOffset1;
|
|
if ((((int32_t)L_4) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, _stringLiteralCA9DBD57FE93DBA1A159E859C91C3D45DCCEA5E0, L_5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
int32_t L_7 = ___dstOffset3;
|
|
if ((((int32_t)L_7) >= ((int32_t)0)))
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_8 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, _stringLiteralDEB3608672319EF258C05F3590E2E46E95BC5F1D, L_8, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
int32_t L_10 = ___count4;
|
|
if ((((int32_t)L_10) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_11 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_11, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
RuntimeArray * L_13 = ___src0;
|
|
int32_t L_14 = ___srcOffset1;
|
|
RuntimeArray * L_15 = ___dst2;
|
|
int32_t L_16 = ___dstOffset3;
|
|
int32_t L_17 = ___count4;
|
|
bool L_18 = Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2(L_13, L_14, L_15, L_16, L_17, /*hidden argument*/NULL);
|
|
if (L_18)
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = ___srcOffset1;
|
|
RuntimeArray * L_20 = ___src0;
|
|
int32_t L_21 = Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8(L_20, /*hidden argument*/NULL);
|
|
int32_t L_22 = ___count4;
|
|
if ((((int32_t)L_19) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_22)))))
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_23 = ___dstOffset3;
|
|
RuntimeArray * L_24 = ___dst2;
|
|
int32_t L_25 = Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8(L_24, /*hidden argument*/NULL);
|
|
int32_t L_26 = ___count4;
|
|
if ((((int32_t)L_23) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)L_26)))))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
String_t* L_27 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_28 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_28, L_27, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Buffer::memcpy4(System.Byte*,System.Byte*,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy4_mDA39112959C9161FBC66E893A249B2A7F06EF771 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
|
|
IL_0002:
|
|
{
|
|
uint8_t* L_0 = ___dest0;
|
|
uint8_t* L_1 = ___src1;
|
|
int32_t L_2 = *((int32_t*)L_1);
|
|
*((int32_t*)L_0) = (int32_t)L_2;
|
|
uint8_t* L_3 = ___dest0;
|
|
uint8_t* L_4 = ___src1;
|
|
int32_t L_5 = *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)4)));
|
|
*((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)4))) = (int32_t)L_5;
|
|
uint8_t* L_6 = ___dest0;
|
|
uint8_t* L_7 = ___src1;
|
|
int32_t L_8 = *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)4)))));
|
|
*((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)4))))) = (int32_t)L_8;
|
|
uint8_t* L_9 = ___dest0;
|
|
uint8_t* L_10 = ___src1;
|
|
int32_t L_11 = *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)4)))));
|
|
*((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)4))))) = (int32_t)L_11;
|
|
uint8_t* L_12 = ___dest0;
|
|
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)((int32_t)16)));
|
|
uint8_t* L_13 = ___src1;
|
|
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)((int32_t)16)));
|
|
int32_t L_14 = ___size2;
|
|
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)((int32_t)16)));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
int32_t L_15 = ___size2;
|
|
if ((((int32_t)L_15) >= ((int32_t)((int32_t)16))))
|
|
{
|
|
goto IL_0002;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
uint8_t* L_16 = ___dest0;
|
|
uint8_t* L_17 = ___src1;
|
|
int32_t L_18 = *((int32_t*)L_17);
|
|
*((int32_t*)L_16) = (int32_t)L_18;
|
|
uint8_t* L_19 = ___dest0;
|
|
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)4));
|
|
uint8_t* L_20 = ___src1;
|
|
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, (int32_t)4));
|
|
int32_t L_21 = ___size2;
|
|
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)4));
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
int32_t L_22 = ___size2;
|
|
if ((((int32_t)L_22) >= ((int32_t)4)))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
uint8_t* L_23 = ___dest0;
|
|
uint8_t* L_24 = ___src1;
|
|
int32_t L_25 = *((uint8_t*)L_24);
|
|
*((int8_t*)L_23) = (int8_t)L_25;
|
|
uint8_t* L_26 = ___dest0;
|
|
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)1));
|
|
uint8_t* L_27 = ___src1;
|
|
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, (int32_t)1));
|
|
int32_t L_28 = ___size2;
|
|
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1));
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
int32_t L_29 = ___size2;
|
|
if ((((int32_t)L_29) > ((int32_t)0)))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Buffer::memcpy2(System.Byte*,System.Byte*,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy2_mAA37EECC87926D9B7F5CBE42C84A7AA6F2E5306E (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
|
|
IL_0002:
|
|
{
|
|
uint8_t* L_0 = ___dest0;
|
|
uint8_t* L_1 = ___src1;
|
|
int32_t L_2 = *((int16_t*)L_1);
|
|
*((int16_t*)L_0) = (int16_t)L_2;
|
|
uint8_t* L_3 = ___dest0;
|
|
uint8_t* L_4 = ___src1;
|
|
int32_t L_5 = *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)2)));
|
|
*((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)2))) = (int16_t)L_5;
|
|
uint8_t* L_6 = ___dest0;
|
|
uint8_t* L_7 = ___src1;
|
|
int32_t L_8 = *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)2)))));
|
|
*((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)2))))) = (int16_t)L_8;
|
|
uint8_t* L_9 = ___dest0;
|
|
uint8_t* L_10 = ___src1;
|
|
int32_t L_11 = *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)2)))));
|
|
*((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)2))))) = (int16_t)L_11;
|
|
uint8_t* L_12 = ___dest0;
|
|
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)8));
|
|
uint8_t* L_13 = ___src1;
|
|
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)8));
|
|
int32_t L_14 = ___size2;
|
|
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)8));
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
int32_t L_15 = ___size2;
|
|
if ((((int32_t)L_15) >= ((int32_t)8)))
|
|
{
|
|
goto IL_0002;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
uint8_t* L_16 = ___dest0;
|
|
uint8_t* L_17 = ___src1;
|
|
int32_t L_18 = *((int16_t*)L_17);
|
|
*((int16_t*)L_16) = (int16_t)L_18;
|
|
uint8_t* L_19 = ___dest0;
|
|
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)2));
|
|
uint8_t* L_20 = ___src1;
|
|
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, (int32_t)2));
|
|
int32_t L_21 = ___size2;
|
|
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)2));
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
int32_t L_22 = ___size2;
|
|
if ((((int32_t)L_22) >= ((int32_t)2)))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_23 = ___size2;
|
|
if ((((int32_t)L_23) <= ((int32_t)0)))
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_24 = ___dest0;
|
|
uint8_t* L_25 = ___src1;
|
|
int32_t L_26 = *((uint8_t*)L_25);
|
|
*((int8_t*)L_24) = (int8_t)L_26;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Buffer::memcpy1(System.Byte*,System.Byte*,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy1_m05CB8A5961029C3F989884D69BE7163043B9A7DF (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_0002:
|
|
{
|
|
uint8_t* L_0 = ___dest0;
|
|
uint8_t* L_1 = ___src1;
|
|
int32_t L_2 = *((uint8_t*)L_1);
|
|
*((int8_t*)L_0) = (int8_t)L_2;
|
|
uint8_t* L_3 = ___dest0;
|
|
uint8_t* L_4 = ___src1;
|
|
int32_t L_5 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)1)));
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)1))) = (int8_t)L_5;
|
|
uint8_t* L_6 = ___dest0;
|
|
uint8_t* L_7 = ___src1;
|
|
int32_t L_8 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)2)));
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)2))) = (int8_t)L_8;
|
|
uint8_t* L_9 = ___dest0;
|
|
uint8_t* L_10 = ___src1;
|
|
int32_t L_11 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)3)));
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)3))) = (int8_t)L_11;
|
|
uint8_t* L_12 = ___dest0;
|
|
uint8_t* L_13 = ___src1;
|
|
int32_t L_14 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)4)));
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)4))) = (int8_t)L_14;
|
|
uint8_t* L_15 = ___dest0;
|
|
uint8_t* L_16 = ___src1;
|
|
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)5)));
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, (int32_t)5))) = (int8_t)L_17;
|
|
uint8_t* L_18 = ___dest0;
|
|
uint8_t* L_19 = ___src1;
|
|
int32_t L_20 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)6)));
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)6))) = (int8_t)L_20;
|
|
uint8_t* L_21 = ___dest0;
|
|
uint8_t* L_22 = ___src1;
|
|
int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)7)));
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, (int32_t)7))) = (int8_t)L_23;
|
|
uint8_t* L_24 = ___dest0;
|
|
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)8));
|
|
uint8_t* L_25 = ___src1;
|
|
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_25, (int32_t)8));
|
|
int32_t L_26 = ___size2;
|
|
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)8));
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
int32_t L_27 = ___size2;
|
|
if ((((int32_t)L_27) >= ((int32_t)8)))
|
|
{
|
|
goto IL_0002;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
uint8_t* L_28 = ___dest0;
|
|
uint8_t* L_29 = ___src1;
|
|
int32_t L_30 = *((uint8_t*)L_29);
|
|
*((int8_t*)L_28) = (int8_t)L_30;
|
|
uint8_t* L_31 = ___dest0;
|
|
uint8_t* L_32 = ___src1;
|
|
int32_t L_33 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_32, (int32_t)1)));
|
|
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)1))) = (int8_t)L_33;
|
|
uint8_t* L_34 = ___dest0;
|
|
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_34, (int32_t)2));
|
|
uint8_t* L_35 = ___src1;
|
|
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)2));
|
|
int32_t L_36 = ___size2;
|
|
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)2));
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
int32_t L_37 = ___size2;
|
|
if ((((int32_t)L_37) >= ((int32_t)2)))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_38 = ___size2;
|
|
if ((((int32_t)L_38) <= ((int32_t)0)))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_39 = ___dest0;
|
|
uint8_t* L_40 = ___src1;
|
|
int32_t L_41 = *((uint8_t*)L_40);
|
|
*((int8_t*)L_39) = (int8_t)L_41;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Buffer::Memcpy(System.Byte*,System.Byte*,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_m4D475106A101E5ED38EB22776EAAFB6D02F63678 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint8_t* L_0 = ___dest0;
|
|
uint8_t* L_1 = ___src1;
|
|
if (!((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_0)))|(int32_t)(((int32_t)((int32_t)(intptr_t)L_1)))))&(int32_t)3)))
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_2 = ___dest0;
|
|
if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_2)))&(int32_t)1)))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_3 = ___src1;
|
|
if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_3)))&(int32_t)1)))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = ___size2;
|
|
if ((((int32_t)L_4) < ((int32_t)1)))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_5 = ___dest0;
|
|
uint8_t* L_6 = ___src1;
|
|
int32_t L_7 = *((uint8_t*)L_6);
|
|
*((int8_t*)L_5) = (int8_t)L_7;
|
|
uint8_t* L_8 = ___dest0;
|
|
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, (int32_t)1));
|
|
uint8_t* L_9 = ___src1;
|
|
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)1));
|
|
int32_t L_10 = ___size2;
|
|
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1));
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
uint8_t* L_11 = ___dest0;
|
|
if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_11)))&(int32_t)2)))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_12 = ___src1;
|
|
if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_12)))&(int32_t)2)))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_13 = ___size2;
|
|
if ((((int32_t)L_13) < ((int32_t)2)))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_14 = ___dest0;
|
|
uint8_t* L_15 = ___src1;
|
|
int32_t L_16 = *((int16_t*)L_15);
|
|
*((int16_t*)L_14) = (int16_t)L_16;
|
|
uint8_t* L_17 = ___dest0;
|
|
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_17, (int32_t)2));
|
|
uint8_t* L_18 = ___src1;
|
|
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)2));
|
|
int32_t L_19 = ___size2;
|
|
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)2));
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
uint8_t* L_20 = ___dest0;
|
|
uint8_t* L_21 = ___src1;
|
|
if (!((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_20)))|(int32_t)(((int32_t)((int32_t)(intptr_t)L_21)))))&(int32_t)1)))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_22 = ___dest0;
|
|
uint8_t* L_23 = ___src1;
|
|
int32_t L_24 = ___size2;
|
|
Buffer_memcpy1_m05CB8A5961029C3F989884D69BE7163043B9A7DF((uint8_t*)(uint8_t*)L_22, (uint8_t*)(uint8_t*)L_23, L_24, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
uint8_t* L_25 = ___dest0;
|
|
uint8_t* L_26 = ___src1;
|
|
if (!((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_25)))|(int32_t)(((int32_t)((int32_t)(intptr_t)L_26)))))&(int32_t)2)))
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_27 = ___dest0;
|
|
uint8_t* L_28 = ___src1;
|
|
int32_t L_29 = ___size2;
|
|
Buffer_memcpy2_mAA37EECC87926D9B7F5CBE42C84A7AA6F2E5306E((uint8_t*)(uint8_t*)L_27, (uint8_t*)(uint8_t*)L_28, L_29, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
uint8_t* L_30 = ___dest0;
|
|
uint8_t* L_31 = ___src1;
|
|
int32_t L_32 = ___size2;
|
|
Buffer_memcpy4_mDA39112959C9161FBC66E893A249B2A7F06EF771((uint8_t*)(uint8_t*)L_30, (uint8_t*)(uint8_t*)L_31, L_32, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Int32 System.Byte::CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861 (uint8_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject * L_1 = ___value0;
|
|
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDD4F9004C2B0F33E8BB2DA348539883E15A3683A, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, L_2, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_4 = *((uint8_t*)__this);
|
|
RuntimeObject * L_5 = ___value0;
|
|
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((*(uint8_t*)((uint8_t*)UnBox(L_5, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))))));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861(_thisAdjusted, ___value0, method);
|
|
}
|
|
// System.Int32 System.Byte::CompareTo(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m928FA81F92D3A4D461F22BB4F82CF9D3B19B8376 (uint8_t* __this, uint8_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
uint8_t L_1 = ___value0;
|
|
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Byte_CompareTo_m928FA81F92D3A4D461F22BB4F82CF9D3B19B8376_AdjustorThunk (RuntimeObject * __this, uint8_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_CompareTo_m928FA81F92D3A4D461F22BB4F82CF9D3B19B8376(_thisAdjusted, ___value0, method);
|
|
}
|
|
// System.Boolean System.Byte::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = *((uint8_t*)__this);
|
|
RuntimeObject * L_2 = ___obj0;
|
|
return (bool)((((int32_t)L_1) == ((int32_t)((*(uint8_t*)((uint8_t*)UnBox(L_2, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))))))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF(_thisAdjusted, ___obj0, method);
|
|
}
|
|
// System.Boolean System.Byte::Equals(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m87DDF4363A9B222224EFCA173189FFA2574A7E16 (uint8_t* __this, uint8_t ___obj0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
uint8_t L_1 = ___obj0;
|
|
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Byte_Equals_m87DDF4363A9B222224EFCA173189FFA2574A7E16_AdjustorThunk (RuntimeObject * __this, uint8_t ___obj0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_Equals_m87DDF4363A9B222224EFCA173189FFA2574A7E16(_thisAdjusted, ___obj0, method);
|
|
}
|
|
// System.Int32 System.Byte::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_m57BA90F7D83EA8E9ECCA68505FFEA649D1C748E0 (uint8_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Byte_GetHashCode_m57BA90F7D83EA8E9ECCA68505FFEA649D1C748E0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_GetHashCode_m57BA90F7D83EA8E9ECCA68505FFEA649D1C748E0(_thisAdjusted, method);
|
|
}
|
|
// System.Byte System.Byte::Parse(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mEFBC459D6ADA0FED490539CD8731E45AE2D2587C (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___s0;
|
|
RuntimeObject* L_1 = ___provider1;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
|
|
uint8_t L_3 = Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26(L_0, 7, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mF53D7EFF3FC8B040EE675E62145287C7F728F772 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___style1;
|
|
NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3(L_0, /*hidden argument*/NULL);
|
|
String_t* L_1 = ___s0;
|
|
int32_t L_2 = ___style1;
|
|
RuntimeObject* L_3 = ___provider2;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL);
|
|
uint8_t L_5 = Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26(L_1, L_2, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * V_1 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
|
|
IL_0002:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
String_t* L_0 = ___s0;
|
|
int32_t L_1 = ___style1;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
|
|
int32_t L_3 = Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
goto IL_001f;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_000d;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_000d:
|
|
{ // begin catch(System.OverflowException)
|
|
V_1 = ((OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)__exception_local);
|
|
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL);
|
|
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_5 = V_1;
|
|
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_6 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
|
|
OverflowException__ctor_m15CD001EEB2E79D7497E101546B04D9A5520357E(L_6, L_4, L_5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
IL_001f:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) < ((int32_t)0)))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_0;
|
|
if ((((int32_t)L_8) <= ((int32_t)((int32_t)255))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL);
|
|
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_10 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
|
|
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_10, L_9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
int32_t L_11 = V_0;
|
|
return (uint8_t)(((int32_t)((uint8_t)L_11)));
|
|
}
|
|
}
|
|
// System.String System.Byte::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m461A53F95948CC32D6646704F994C1F38DD8B263 (uint8_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
|
|
String_t* L_2 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Byte_ToString_m461A53F95948CC32D6646704F994C1F38DD8B263_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_ToString_m461A53F95948CC32D6646704F994C1F38DD8B263(_thisAdjusted, method);
|
|
}
|
|
// System.String System.Byte::ToString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m5F54DEEC2138DAC5587E05890F97866DB78E75BA (uint8_t* __this, String_t* ___format0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
String_t* L_1 = ___format0;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
|
|
String_t* L_3 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Byte_ToString_m5F54DEEC2138DAC5587E05890F97866DB78E75BA_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_ToString_m5F54DEEC2138DAC5587E05890F97866DB78E75BA(_thisAdjusted, ___format0, method);
|
|
}
|
|
// System.String System.Byte::ToString(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m0E74FC03C86ECFB7B6639F93E224A1975374D8F7 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
RuntimeObject* L_1 = ___provider0;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
|
|
String_t* L_3 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Byte_ToString_m0E74FC03C86ECFB7B6639F93E224A1975374D8F7_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_ToString_m0E74FC03C86ECFB7B6639F93E224A1975374D8F7(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.String System.Byte::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
String_t* L_1 = ___format0;
|
|
RuntimeObject* L_2 = ___provider1;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_2, /*hidden argument*/NULL);
|
|
String_t* L_4 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, L_1, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25(_thisAdjusted, ___format0, ___provider1, method);
|
|
}
|
|
// System.TypeCode System.Byte::GetTypeCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetTypeCode_m043F4E13AF78380223AD83B1A86A028020F7A724 (uint8_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (int32_t)(6);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Byte_GetTypeCode_m043F4E13AF78380223AD83B1A86A028020F7A724_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_GetTypeCode_m043F4E13AF78380223AD83B1A86A028020F7A724(_thisAdjusted, method);
|
|
}
|
|
// System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
bool L_1 = Convert_ToBoolean_mC149366F949BE8368C7C7C7BF3830DE15EA40AA8((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_1 = Convert_ToChar_m2FF337FDDCAD52939473E0D7ED3FBFD49A4C2E18((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Il2CppChar Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int8_t L_1 = Convert_ToSByte_m750B83AD00E06419AEDFE4436323AF85520E3E00((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int8_t Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_System_IConvertible_ToByte_mB9C96B9313EFCB55DCD45F90D4B2193A050C99F8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
return (uint8_t)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint8_t Byte_System_IConvertible_ToByte_mB9C96B9313EFCB55DCD45F90D4B2193A050C99F8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToByte_mB9C96B9313EFCB55DCD45F90D4B2193A050C99F8(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int16_t L_1 = Convert_ToInt16_mEC55F68B89662CDBC0E1D7D596EC04153B377E60((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int16_t Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
uint16_t L_1 = Convert_ToUInt16_m7251119DC9E451E9DB0AB5742769643B7F414876((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint16_t Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = Convert_ToInt32_m322C82C3EB50E7389A4A38C4601FD08705CA56CF((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
uint32_t L_1 = Convert_ToUInt32_m4D054799D266E79452F38327EF9D954E0D3F64D3((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int64_t L_1 = Convert_ToInt64_m503ADEC363722EBF6A65F9C9F5619150BF00DDCC((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int64_t Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
uint64_t L_1 = Convert_ToUInt64_mAD731FB7078B5949B0592212E8563C59F1CC7172((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint64_t Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
float L_1 = Convert_ToSingle_m0DC063AF835020D49B1FB600753AFCDA0205609A((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
double L_1 = Convert_ToDouble_mFB12B649AA6A4D71FDA6BD62D88FD785E2452FA5((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_m22A4086CA96BD7E3E1D23660A838AFA0F48946D6((uint8_t)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, _stringLiteral7803EE252527503B67D1EEB0DEB252622746CEBD);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral7803EE252527503B67D1EEB0DEB252622746CEBD);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
|
|
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
|
|
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
|
|
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE_RuntimeMethod_var);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4 (uint8_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint8_t*)__this);
|
|
uint8_t L_1 = ((uint8_t)L_0);
|
|
RuntimeObject * L_2 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_1);
|
|
Type_t * L_3 = ___type0;
|
|
RuntimeObject* L_4 = ___provider1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject * Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
|
|
return Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4(_thisAdjusted, ___type0, ___provider1, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ByteMatcher::AddMapping(System.TermInfoStrings,System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher_AddMapping_m6F17EE5B94E56935034142A2847A83F5E099B708 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, int32_t ___key0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___val1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ByteMatcher_AddMapping_m6F17EE5B94E56935034142A2847A83F5E099B708_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___val1;
|
|
NullCheck(L_0);
|
|
if ((((RuntimeArray*)L_0)->max_length))
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get_map_0();
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___val1;
|
|
int32_t L_3 = ___key0;
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject * L_5 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_4);
|
|
NullCheck(L_1);
|
|
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_1, (RuntimeObject *)(RuntimeObject *)L_2, L_5);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = __this->get_starts_1();
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___val1;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = 0;
|
|
uint8_t L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
int32_t L_10 = ((int32_t)L_9);
|
|
RuntimeObject * L_11 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_10);
|
|
bool L_12 = ((bool)1);
|
|
RuntimeObject * L_13 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_12);
|
|
NullCheck(L_6);
|
|
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_6, L_11, L_13);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ByteMatcher::Sort()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher_Sort_mCA31E5D0C950F75E86DC00A106D3BB6219D29C4F (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ByteMatcher::StartsWith(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ByteMatcher_StartsWith_mE7DCC79999EE153E06F1230A98D1D2CA20D1D4A5 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, int32_t ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ByteMatcher_StartsWith_mE7DCC79999EE153E06F1230A98D1D2CA20D1D4A5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get_starts_1();
|
|
int32_t L_1 = ___c0;
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2);
|
|
NullCheck(L_0);
|
|
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_3);
|
|
return (bool)((!(((RuntimeObject*)(RuntimeObject *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.TermInfoStrings System.ByteMatcher::Match(System.Char[],System.Int32,System.Int32,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteMatcher_Match_mF9866E6C6F2FEC09034695FBED166744F65BA931 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___offset1, int32_t ___length2, int32_t* ___used3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ByteMatcher_Match_mF9866E6C6F2FEC09034695FBED166744F65BA931_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject* V_4 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get_map_0();
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_0);
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_1);
|
|
V_0 = L_2;
|
|
}
|
|
|
|
IL_0011:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_3);
|
|
V_1 = ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_4, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
|
|
V_2 = 0;
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_1;
|
|
int32_t L_6 = V_2;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
uint8_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0;
|
|
int32_t L_10 = ___offset1;
|
|
int32_t L_11 = V_2;
|
|
NullCheck(L_9);
|
|
int32_t L_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11));
|
|
uint16_t L_13 = (uint16_t)(L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)L_13))))
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = V_2;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))), (int32_t)1))) == ((uint32_t)L_15))))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
int32_t* L_16 = ___used3;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
*((int32_t*)L_16) = (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))));
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_18 = __this->get_map_0();
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = V_1;
|
|
NullCheck(L_18);
|
|
RuntimeObject * L_20 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_18, (RuntimeObject *)(RuntimeObject *)L_19);
|
|
V_3 = ((*(int32_t*)((int32_t*)UnBox(L_20, TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var))));
|
|
IL2CPP_LEAVE(0x81, FINALLY_0067);
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
int32_t L_21 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
int32_t L_22 = V_2;
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = V_1;
|
|
NullCheck(L_23);
|
|
if ((((int32_t)L_22) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))))
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
int32_t L_24 = V_2;
|
|
int32_t L_25 = ___length2;
|
|
if ((((int32_t)L_24) < ((int32_t)L_25)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
RuntimeObject* L_26 = V_0;
|
|
NullCheck(L_26);
|
|
bool L_27 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_26);
|
|
if (L_27)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
IL2CPP_LEAVE(0x7B, FINALLY_0067);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_0067;
|
|
}
|
|
|
|
FINALLY_0067:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_28 = V_0;
|
|
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_28, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_29 = V_4;
|
|
if (!L_29)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
RuntimeObject* L_30 = V_4;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_30);
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
IL2CPP_END_FINALLY(103)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(103)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x81, IL_0081)
|
|
IL2CPP_JUMP_TBL(0x7B, IL_007b)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
int32_t* L_31 = ___used3;
|
|
*((int32_t*)L_31) = (int32_t)0;
|
|
return (int32_t)((-1));
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
int32_t L_32 = V_3;
|
|
return L_32;
|
|
}
|
|
}
|
|
// System.Void System.ByteMatcher::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher__ctor_m5F4DEDA840BDF53D47E1A9C3267442295F928144 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ByteMatcher__ctor_m5F4DEDA840BDF53D47E1A9C3267442295F928144_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
|
|
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_0, /*hidden argument*/NULL);
|
|
__this->set_map_0(L_0);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
|
|
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_1, /*hidden argument*/NULL);
|
|
__this->set_starts_1(L_1);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean System.CLRConfig::CheckThrowUnobservedTaskExceptions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CLRConfig_CheckThrowUnobservedTaskExceptions_m7E817CDBB28FAAD9A350E189D536A84EA75A37D3 (const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*CLRConfig_CheckThrowUnobservedTaskExceptions_m7E817CDBB28FAAD9A350E189D536A84EA75A37D3_ftn) ();
|
|
using namespace il2cpp::icalls;
|
|
return ((CLRConfig_CheckThrowUnobservedTaskExceptions_m7E817CDBB28FAAD9A350E189D536A84EA75A37D3_ftn)mscorlib::System::CLRConfig::CheckThrowUnobservedTaskExceptions) ();
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.CLSCompliantAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CLSCompliantAttribute__ctor_m1B684292A6CFF2DDFE4FDE0C45E457C35D03EBC5 (CLSCompliantAttribute_tDC4B8ADF0962285DBD3D530871274CBA04E791E6 * __this, bool ___isCompliant0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
bool L_0 = ___isCompliant0;
|
|
__this->set_m_compliant_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.CannotUnloadAppDomainException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CannotUnloadAppDomainException__ctor_m20216922572B65851E8665AD1294DD90D5402965 (CannotUnloadAppDomainException_t77C958E8438F7A43A17AC069D151A50E9F781A89 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (CannotUnloadAppDomainException__ctor_m20216922572B65851E8665AD1294DD90D5402965_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral15C7457958B8D5AA390C0B6241FAEAE45284DF64, /*hidden argument*/NULL);
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146234347), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.CannotUnloadAppDomainException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CannotUnloadAppDomainException__ctor_m761AA01762FEFEBECF6C2C159E4E1F57D5130A40 (CannotUnloadAppDomainException_t77C958E8438F7A43A17AC069D151A50E9F781A89 * __this, String_t* ___message0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146234347), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.CannotUnloadAppDomainException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CannotUnloadAppDomainException__ctor_m9847387CC489DA8E8F9BC39C46DEA3E0D5636236 (CannotUnloadAppDomainException_t77C958E8438F7A43A17AC069D151A50E9F781A89 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean System.Char::IsLatin1(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931 (Il2CppChar ___ch0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___ch0;
|
|
return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)((int32_t)255)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsAscii(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8 (Il2CppChar ___ch0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___ch0;
|
|
return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)((int32_t)127)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Globalization.UnicodeCategory System.Char::GetLatin1UnicodeCategory(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3 (Il2CppChar ___ch0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields*)il2cpp_codegen_static_fields_for(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))->get_categoryForLatin1_3();
|
|
Il2CppChar L_1 = ___ch0;
|
|
NullCheck(L_0);
|
|
Il2CppChar L_2 = L_1;
|
|
uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
return (int32_t)(L_3);
|
|
}
|
|
}
|
|
// System.Int32 System.Char::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetHashCode_m9FACC936FF239053F0CF62F1C13EB23347CDE5B2 (Il2CppChar* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
int32_t L_1 = *((uint16_t*)__this);
|
|
return ((int32_t)((int32_t)L_0|(int32_t)((int32_t)((int32_t)L_1<<(int32_t)((int32_t)16)))));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Char_GetHashCode_m9FACC936FF239053F0CF62F1C13EB23347CDE5B2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_GetHashCode_m9FACC936FF239053F0CF62F1C13EB23347CDE5B2(_thisAdjusted, method);
|
|
}
|
|
// System.Boolean System.Char::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = *((uint16_t*)__this);
|
|
RuntimeObject * L_2 = ___obj0;
|
|
return (bool)((((int32_t)L_1) == ((int32_t)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_2, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))))))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8(_thisAdjusted, ___obj0, method);
|
|
}
|
|
// System.Boolean System.Char::Equals(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mF5F094BED35D6DE2ACEAE25F6FEF524B8BD9CBAC (Il2CppChar* __this, Il2CppChar ___obj0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
Il2CppChar L_1 = ___obj0;
|
|
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Char_Equals_mF5F094BED35D6DE2ACEAE25F6FEF524B8BD9CBAC_AdjustorThunk (RuntimeObject * __this, Il2CppChar ___obj0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_Equals_mF5F094BED35D6DE2ACEAE25F6FEF524B8BD9CBAC(_thisAdjusted, ___obj0, method);
|
|
}
|
|
// System.Int32 System.Char::CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087 (Il2CppChar* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject * L_1 = ___value0;
|
|
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4803F4151EEE6A399BE429B82E4EDED6135177C0, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, L_2, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_4 = *((uint16_t*)__this);
|
|
RuntimeObject * L_5 = ___value0;
|
|
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_5, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))))));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087(_thisAdjusted, ___value0, method);
|
|
}
|
|
// System.Int32 System.Char::CompareTo(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m77A7EE789DCA50E2E67BFF5935438AC61E6A4A8C (Il2CppChar* __this, Il2CppChar ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
Il2CppChar L_1 = ___value0;
|
|
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Char_CompareTo_m77A7EE789DCA50E2E67BFF5935438AC61E6A4A8C_AdjustorThunk (RuntimeObject * __this, Il2CppChar ___value0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_CompareTo_m77A7EE789DCA50E2E67BFF5935438AC61E6A4A8C(_thisAdjusted, ___value0, method);
|
|
}
|
|
// System.String System.Char::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8 (Il2CppChar* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
String_t* L_1 = Char_ToString_m106C901B4CB0DDEF732750349DAB71498C42C53F(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8(_thisAdjusted, method);
|
|
}
|
|
// System.String System.Char::ToString(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
String_t* L_1 = Char_ToString_m106C901B4CB0DDEF732750349DAB71498C42C53F(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.String System.Char::ToString(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m106C901B4CB0DDEF732750349DAB71498C42C53F (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
String_t* L_1 = String_CreateString_m0E7BBCE09E386877E2B63BF7FA36B956BF221C93(NULL, L_0, 1, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Char System.Char::Parse(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB (String_t* ___s0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___s0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
String_t* L_2 = ___s0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB66A404869995E54B8D48D938E63CA3C7D1C7DCD, /*hidden argument*/NULL);
|
|
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_5 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
|
|
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_5, L_4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
String_t* L_6 = ___s0;
|
|
NullCheck(L_6);
|
|
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, 0, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsDigit(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
if ((((int32_t)L_2) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_3 = ___c0;
|
|
return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
Il2CppChar L_4 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_5 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_4, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_5) == ((int32_t)8))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Char::CheckLetter(System.Globalization.UnicodeCategory)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetter_mD46EA70277A4CDD51568114D46B5C6CB5E5265B6 (int32_t ___uc0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___uc0;
|
|
if ((!(((uint32_t)L_0) <= ((uint32_t)4))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsLetter(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_3 = Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8(L_2, /*hidden argument*/NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = ___c0;
|
|
___c0 = (((int32_t)((uint16_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)32))))));
|
|
Il2CppChar L_5 = ___c0;
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)97))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = ___c0;
|
|
return (bool)((((int32_t)((((int32_t)L_6) > ((int32_t)((int32_t)122)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
Il2CppChar L_7 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_8 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_7, /*hidden argument*/NULL);
|
|
bool L_9 = Char_CheckLetter_mD46EA70277A4CDD51568114D46B5C6CB5E5265B6(L_8, /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
Il2CppChar L_10 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_11 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_10, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_12 = Char_CheckLetter_mD46EA70277A4CDD51568114D46B5C6CB5E5265B6(L_11, /*hidden argument*/NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsWhiteSpaceLatin1(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpaceLatin1_m13356CA19562C77A7D5FE447D9D0D5FAC2663CE0 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
if ((((int32_t)L_0) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___c0;
|
|
if ((((int32_t)L_1) < ((int32_t)((int32_t)9))))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)13))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
Il2CppChar L_3 = ___c0;
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)160))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = ___c0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)133)))))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsWhiteSpace(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_3 = Char_IsWhiteSpaceLatin1_m13356CA19562C77A7D5FE447D9D0D5FAC2663CE0(L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
Il2CppChar L_4 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
bool L_5 = CharUnicodeInfo_IsWhiteSpace_m746D142522BF05468B06174B025F9049EAE2A780(L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsUpper(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsUpper_m94DFB4B66A46914F0588FB7EB42E9BB4A14C3513 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsUpper_m94DFB4B66A46914F0588FB7EB42E9BB4A14C3513_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_3 = Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8(L_2, /*hidden argument*/NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = ___c0;
|
|
if ((((int32_t)L_4) < ((int32_t)((int32_t)65))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_5 = ___c0;
|
|
return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)90)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
Il2CppChar L_6 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_7 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_6, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
Il2CppChar L_8 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_9 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_8, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Char::CheckPunctuation(System.Globalization.UnicodeCategory)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckPunctuation_m907FC59526778DAFBD88DCD8B2C262DD73297571 (int32_t ___uc0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___uc0;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)18)))) <= ((uint32_t)6))))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsPunctuation(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsPunctuation_m2F82DCD9CE2CBED034F8CF39E247BBB065935D51 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsPunctuation_m2F82DCD9CE2CBED034F8CF39E247BBB065935D51_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_3 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_2, /*hidden argument*/NULL);
|
|
bool L_4 = Char_CheckPunctuation_m907FC59526778DAFBD88DCD8B2C262DD73297571(L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Il2CppChar L_5 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_6 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_5, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_7 = Char_CheckPunctuation_m907FC59526778DAFBD88DCD8B2C262DD73297571(L_6, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::CheckLetterOrDigit(System.Globalization.UnicodeCategory)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetterOrDigit_m6494ECB3F3B19DC41364285D1E12B83BC0132CB9 (int32_t ___uc0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___uc0;
|
|
if ((!(((uint32_t)L_0) > ((uint32_t)4))))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___uc0;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)8))))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsLetterOrDigit(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetterOrDigit_mD7307B3157DFA4EC20D58F68ACB6A9793D3A8292 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsLetterOrDigit_mD7307B3157DFA4EC20D58F68ACB6A9793D3A8292_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_3 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_2, /*hidden argument*/NULL);
|
|
bool L_4 = Char_CheckLetterOrDigit_m6494ECB3F3B19DC41364285D1E12B83BC0132CB9(L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Il2CppChar L_5 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_6 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_5, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_7 = Char_CheckLetterOrDigit_m6494ECB3F3B19DC41364285D1E12B83BC0132CB9(L_6, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Char System.Char::ToUpper(System.Char,System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02 (Il2CppChar ___c0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___culture1;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral8F2E7CD784967D6A79ABD59093146FB1F82E336D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = ___culture1;
|
|
NullCheck(L_2);
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * L_3 = VirtFuncInvoker0< TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2);
|
|
Il2CppChar L_4 = ___c0;
|
|
NullCheck(L_3);
|
|
Il2CppChar L_5 = VirtFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_3, L_4);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Char System.Char::ToUpper(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_m5D0AC7F9601D2981E2BCC8710BED485D804CE4DA (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_ToUpper_m5D0AC7F9601D2981E2BCC8710BED485D804CE4DA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_2 = Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02(L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Char System.Char::ToUpperInvariant(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpperInvariant_m2FF95DAB0D20E1EB1E34ECE24F85253269017915 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_ToUpperInvariant_m2FF95DAB0D20E1EB1E34ECE24F85253269017915_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_2 = Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02(L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Char System.Char::ToLower(System.Char,System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160 (Il2CppChar ___c0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___culture1;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral8F2E7CD784967D6A79ABD59093146FB1F82E336D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = ___culture1;
|
|
NullCheck(L_2);
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * L_3 = VirtFuncInvoker0< TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2);
|
|
Il2CppChar L_4 = ___c0;
|
|
NullCheck(L_3);
|
|
Il2CppChar L_5 = VirtFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_3, L_4);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Char System.Char::ToLowerInvariant(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLowerInvariant_m691DAE5E85A00BC3A653CB4F3C0045BF1528641D (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_ToLowerInvariant_m691DAE5E85A00BC3A653CB4F3C0045BF1528641D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_2 = Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160(L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.TypeCode System.Char::GetTypeCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetTypeCode_m7A1E2062075E3B10C48060D3CB572D7A753B907D (Il2CppChar* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (int32_t)(4);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Char_GetTypeCode_m7A1E2062075E3B10C48060D3CB572D7A753B907D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_GetTypeCode_m7A1E2062075E3B10C48060D3CB572D7A753B907D(_thisAdjusted, method);
|
|
}
|
|
// System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C);
|
|
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
|
|
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
|
|
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777_RuntimeMethod_var);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_System_IConvertible_ToChar_mFC5D9E072E60CB2493F51AD5230291F847673562 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Il2CppChar Char_System_IConvertible_ToChar_mFC5D9E072E60CB2493F51AD5230291F847673562_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToChar_mFC5D9E072E60CB2493F51AD5230291F847673562(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int8_t L_1 = Convert_ToSByte_m0D0A382E0BFF2DAE7019CAB2F6309EB48EFFFD94(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int8_t Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
uint8_t L_1 = Convert_ToByte_mF058F63299585352A96AB211EF4DA55B9996ADA5(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint8_t Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int16_t L_1 = Convert_ToInt16_mBAB0E578750A2DE0990F9B301C7CBE2397A61A35(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int16_t Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
uint16_t L_1 = Convert_ToUInt16_m2F8D708D059B3A7FC317AD8A56D492253E359E24(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint16_t Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = Convert_ToInt32_m8BE65713C8D5E0AD45D53B82A5A7BD187BEBA917(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
uint32_t L_1 = Convert_ToUInt32_m123C758E6CB699FCFD9E8ABCF1042C1CD70DE944(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int64_t L_1 = Convert_ToInt64_mAF15CED595F02814C73326AF76050B600CAED358(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int64_t Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
uint64_t L_1 = Convert_ToUInt64_mFCB74BC6F5D944A1894E875C4B8D3D53DE7EFA75(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint64_t Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, _stringLiteralDD1186892A2F5C2BD17CD7D41F90482E39BD02C5);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralDD1186892A2F5C2BD17CD7D41F90482E39BD02C5);
|
|
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
|
|
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
|
|
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830_RuntimeMethod_var);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, _stringLiteral81581597044514BF54D4F97266022FC991F3915E);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral81581597044514BF54D4F97266022FC991F3915E);
|
|
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
|
|
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
|
|
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E_RuntimeMethod_var);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, _stringLiteralE4C3A2D0CC24A4535EF91791064FFE989CBD382A);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralE4C3A2D0CC24A4535EF91791064FFE989CBD382A);
|
|
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
|
|
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
|
|
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB_RuntimeMethod_var);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
|
|
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
|
|
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
|
|
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533_RuntimeMethod_var);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533(_thisAdjusted, ___provider0, method);
|
|
}
|
|
// System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB (Il2CppChar* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = *((uint16_t*)__this);
|
|
Il2CppChar L_1 = ((Il2CppChar)L_0);
|
|
RuntimeObject * L_2 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_1);
|
|
Type_t * L_3 = ___type0;
|
|
RuntimeObject* L_4 = ___provider1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject * Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
|
|
{
|
|
int32_t _offset = 1;
|
|
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
|
|
return Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB(_thisAdjusted, ___type0, ___provider1, method);
|
|
}
|
|
// System.Boolean System.Char::IsControl(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsControl_m32D58EB3C86758859BA4AC8BC075AB54F166F44E (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsControl_m32D58EB3C86758859BA4AC8BC075AB54F166F44E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_3 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_2, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)14)))? 1 : 0);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
Il2CppChar L_4 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_5 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_4, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_5) == ((int32_t)((int32_t)14)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsLetterOrDigit(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetterOrDigit_m99BA6814DA5E508FAA97139C4DFE6368B655E2EB (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsLetterOrDigit_m99BA6814DA5E508FAA97139C4DFE6368B655E2EB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
{
|
|
String_t* L_0 = ___s0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_IsLetterOrDigit_m99BA6814DA5E508FAA97139C4DFE6368B655E2EB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___index1;
|
|
String_t* L_3 = ___s0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_2) >= ((uint32_t)L_4))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Char_IsLetterOrDigit_m99BA6814DA5E508FAA97139C4DFE6368B655E2EB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
String_t* L_6 = ___s0;
|
|
int32_t L_7 = ___index1;
|
|
NullCheck(L_6);
|
|
Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, L_7, /*hidden argument*/NULL);
|
|
V_0 = L_8;
|
|
Il2CppChar L_9 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_10 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_9, /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_11 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_12 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_11, /*hidden argument*/NULL);
|
|
bool L_13 = Char_CheckLetterOrDigit_m6494ECB3F3B19DC41364285D1E12B83BC0132CB9(L_12, /*hidden argument*/NULL);
|
|
return L_13;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
String_t* L_14 = ___s0;
|
|
int32_t L_15 = ___index1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_16 = CharUnicodeInfo_GetUnicodeCategory_m0A7D6F95B25E74A83D25C440EB089151076DF224(L_14, L_15, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_17 = Char_CheckLetterOrDigit_m6494ECB3F3B19DC41364285D1E12B83BC0132CB9(L_16, /*hidden argument*/NULL);
|
|
return L_17;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::CheckNumber(System.Globalization.UnicodeCategory)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckNumber_m8993FC5CD9BEC2CD77509400615ABAB93118489E (int32_t ___uc0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___uc0;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)8))) <= ((uint32_t)2))))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsNumber(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsNumber_m6B4D661D496A7EBCC142740E91F55B01754FC24F (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsNumber_m6B4D661D496A7EBCC142740E91F55B01754FC24F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_3 = Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8(L_2, /*hidden argument*/NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = ___c0;
|
|
if ((((int32_t)L_4) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_5 = ___c0;
|
|
return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
Il2CppChar L_6 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_7 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_6, /*hidden argument*/NULL);
|
|
bool L_8 = Char_CheckNumber_m8993FC5CD9BEC2CD77509400615ABAB93118489E(L_7, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Il2CppChar L_9 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_10 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_9, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_11 = Char_CheckNumber_m8993FC5CD9BEC2CD77509400615ABAB93118489E(L_10, /*hidden argument*/NULL);
|
|
return L_11;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsNumber(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsNumber_m6E7E5B9BD0DBF69581B6B08D25752D9CC29C97B1 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsNumber_m6E7E5B9BD0DBF69581B6B08D25752D9CC29C97B1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
{
|
|
String_t* L_0 = ___s0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_IsNumber_m6E7E5B9BD0DBF69581B6B08D25752D9CC29C97B1_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___index1;
|
|
String_t* L_3 = ___s0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_2) >= ((uint32_t)L_4))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Char_IsNumber_m6E7E5B9BD0DBF69581B6B08D25752D9CC29C97B1_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
String_t* L_6 = ___s0;
|
|
int32_t L_7 = ___index1;
|
|
NullCheck(L_6);
|
|
Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, L_7, /*hidden argument*/NULL);
|
|
V_0 = L_8;
|
|
Il2CppChar L_9 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_10 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_9, /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_11 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_12 = Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8(L_11, /*hidden argument*/NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_13 = V_0;
|
|
if ((((int32_t)L_13) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_14 = V_0;
|
|
return (bool)((((int32_t)((((int32_t)L_14) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
Il2CppChar L_15 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_16 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_15, /*hidden argument*/NULL);
|
|
bool L_17 = Char_CheckNumber_m8993FC5CD9BEC2CD77509400615ABAB93118489E(L_16, /*hidden argument*/NULL);
|
|
return L_17;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
String_t* L_18 = ___s0;
|
|
int32_t L_19 = ___index1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_20 = CharUnicodeInfo_GetUnicodeCategory_m0A7D6F95B25E74A83D25C440EB089151076DF224(L_18, L_19, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_21 = Char_CheckNumber_m8993FC5CD9BEC2CD77509400615ABAB93118489E(L_20, /*hidden argument*/NULL);
|
|
return L_21;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsSurrogate(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_m464F9F75070ACD88165EE4734D617622A6667CB1 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)55296))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___c0;
|
|
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsSurrogate(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___s0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___index1;
|
|
String_t* L_3 = ___s0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_2) >= ((uint32_t)L_4))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
String_t* L_6 = ___s0;
|
|
int32_t L_7 = ___index1;
|
|
NullCheck(L_6);
|
|
Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, L_7, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_9 = Char_IsSurrogate_m464F9F75070ACD88165EE4734D617622A6667CB1(L_8, /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::CheckSymbol(System.Globalization.UnicodeCategory)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckSymbol_m6AD059AD59B3BA00D33FEA502BD9FD73F566AD37 (int32_t ___uc0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___uc0;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)25)))) <= ((uint32_t)3))))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsSymbol(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSymbol_m5F2F2AD31BDB3A9D090B5C12E2A356E3FF600A4F (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsSymbol_m5F2F2AD31BDB3A9D090B5C12E2A356E3FF600A4F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_3 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_2, /*hidden argument*/NULL);
|
|
bool L_4 = Char_CheckSymbol_m6AD059AD59B3BA00D33FEA502BD9FD73F566AD37(L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Il2CppChar L_5 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_6 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_5, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_7 = Char_CheckSymbol_m6AD059AD59B3BA00D33FEA502BD9FD73F566AD37(L_6, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetUnicodeCategory_m07C2D4BEA7C630EF8D87B2244689C5C315EC4914 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_GetUnicodeCategory_m07C2D4BEA7C630EF8D87B2244689C5C315EC4914_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_3 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
Il2CppChar L_4 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_5 = CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9(L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___s0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___index1;
|
|
String_t* L_3 = ___s0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_2) >= ((uint32_t)L_4))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
String_t* L_6 = ___s0;
|
|
int32_t L_7 = ___index1;
|
|
NullCheck(L_6);
|
|
Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, L_7, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_9 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_8, /*hidden argument*/NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_10 = ___s0;
|
|
int32_t L_11 = ___index1;
|
|
NullCheck(L_10);
|
|
Il2CppChar L_12 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_10, L_11, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
int32_t L_13 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_12, /*hidden argument*/NULL);
|
|
return L_13;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
String_t* L_14 = ___s0;
|
|
int32_t L_15 = ___index1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var);
|
|
int32_t L_16 = CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68(L_14, L_15, /*hidden argument*/NULL);
|
|
return L_16;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsHighSurrogate(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)55296))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___c0;
|
|
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)56319)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsHighSurrogate(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___s0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___index1;
|
|
if ((((int32_t)L_2) < ((int32_t)0)))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___index1;
|
|
String_t* L_4 = ___s0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_3) < ((int32_t)L_5)))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_6, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
String_t* L_7 = ___s0;
|
|
int32_t L_8 = ___index1;
|
|
NullCheck(L_7);
|
|
Il2CppChar L_9 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_7, L_8, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_10 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_9, /*hidden argument*/NULL);
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsLowSurrogate(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)56320))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___c0;
|
|
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Char::IsSurrogatePair(System.Char,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogatePair_m186784A2523D247DD43AC669D29A140AE0E992CF (Il2CppChar ___highSurrogate0, Il2CppChar ___lowSurrogate1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___highSurrogate0;
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)55296))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___highSurrogate0;
|
|
if ((((int32_t)L_1) > ((int32_t)((int32_t)56319))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___lowSurrogate1;
|
|
if ((((int32_t)L_2) < ((int32_t)((int32_t)56320))))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_3 = ___lowSurrogate1;
|
|
return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.String System.Char::ConvertFromUtf32(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ConvertFromUtf32_m343A4B419311CC32C466FDEF509E3F44586C193E (int32_t ___utf320, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_ConvertFromUtf32_m343A4B419311CC32C466FDEF509E3F44586C193E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___utf320;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___utf320;
|
|
if ((((int32_t)L_1) > ((int32_t)((int32_t)1114111))))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___utf320;
|
|
if ((((int32_t)L_2) < ((int32_t)((int32_t)55296))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___utf320;
|
|
if ((((int32_t)L_3) > ((int32_t)((int32_t)57343))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8699FAEDABA67877DE15B4C27ACFA9E75A47EDA2, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral025EF8D85887D67A5A3B6311EAD984E8DAFDD7D4, L_4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Char_ConvertFromUtf32_m343A4B419311CC32C466FDEF509E3F44586C193E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
int32_t L_6 = ___utf320;
|
|
if ((((int32_t)L_6) >= ((int32_t)((int32_t)65536))))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = ___utf320;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
String_t* L_8 = Char_ToString_m106C901B4CB0DDEF732750349DAB71498C42C53F((((int32_t)((uint16_t)L_7))), /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
int32_t L_9 = ___utf320;
|
|
___utf320 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)65536)));
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = L_10;
|
|
int32_t L_12 = ___utf320;
|
|
NullCheck(L_11);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_12/(int32_t)((int32_t)1024))), (int32_t)((int32_t)55296)))))));
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = L_11;
|
|
int32_t L_14 = ___utf320;
|
|
NullCheck(L_13);
|
|
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_14%(int32_t)((int32_t)1024))), (int32_t)((int32_t)56320)))))));
|
|
String_t* L_15 = String_CreateString_m394C06654854ADD4C51FF957BE0CC72EF52BAA96(NULL, L_13, /*hidden argument*/NULL);
|
|
return L_15;
|
|
}
|
|
}
|
|
// System.Int32 System.Char::ConvertToUtf32(System.Char,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601 (Il2CppChar ___highSurrogate0, Il2CppChar ___lowSurrogate1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___highSurrogate0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_0, /*hidden argument*/NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3BA5D088825A2BB3865D186C1B5F13FCA57D7FBE, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteralEA19AED74C943D2A2783BB26F4229A162DA1F082, L_2, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
Il2CppChar L_4 = ___lowSurrogate1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_5 = Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C(L_4, /*hidden argument*/NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAA6D5DDB95B6B39F2D84E6E17984CEC320ED0F39, /*hidden argument*/NULL);
|
|
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
|
|
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteral6D8AD060BC78FE7857A50CD1CE647997DE67E87F, L_6, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
Il2CppChar L_8 = ___highSurrogate0;
|
|
Il2CppChar L_9 = ___lowSurrogate1;
|
|
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)((int32_t)55296))), (int32_t)((int32_t)1024))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)56320))))), (int32_t)((int32_t)65536)));
|
|
}
|
|
}
|
|
// System.Void System.Char::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Char__cctor_m36A597E4A09E96474A4F9904DCDEAFE13277CE2D (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Char__cctor_m36A597E4A09E96474A4F9904DCDEAFE13277CE2D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256));
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
|
|
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_102_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
|
|
((Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields*)il2cpp_codegen_static_fields_for(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))->set_categoryForLatin1_3(L_1);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t ASN1_get_Tag_m3C616624BDA30C23FE07926B443BBEE3FA943F19_inline (ASN1_tEEE010B7337B1A5D7B3F25DF65BE462E6704FC22 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint8_t L_0 = __this->get_m_nTag_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_m_stringLength_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * ExceptionDispatchInfo_get_SourceException_m212F50A437B8B18AFECE39F2A9F7231787F45F28_inline (ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Exception_t * L_0 = __this->get_m_Exception_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * AggregateException_get_InnerExceptions_mB81D2B3BD56A3E938B83B0AF766474ED66057040_inline (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_0 = __this->get_m_innerExceptions_17();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_name_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_CodeBase_m65BC5F88190889886BC43A513CAC59A69FFAAD5F_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_codebase_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * AssemblyName_get_Version_m82317447EFD059F46EA783D92CD7AE653AA81D47_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_0 = __this->get_version_13();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * AssemblyName_get_CultureInfo_m611D937A0D0CAEFCAA2F4BCCE7BA936A61A4F6D1_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = __this->get_cultureinfo_6();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline (Exception_t * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get__HResult_11();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline (Exception_t * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Exception_t * L_0 = __this->get__innerException_4();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78_inline (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get__fusionLog_18();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->get__size_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
int32_t L_1 = (int32_t)__this->get__size_2();
|
|
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_1();
|
|
int32_t L_3 = ___index0;
|
|
RuntimeObject * L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3);
|
|
return L_4;
|
|
}
|
|
}
|