| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716 |
- #include "pch-cpp.hpp"
- #ifndef _MSC_VER
- # include <alloca.h>
- #else
- # include <malloc.h>
- #endif
- #include <limits>
- #include <stdint.h>
- template <typename R, typename T1>
- struct VirtualFuncInvoker1
- {
- 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);
- }
- };
- // System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet>
- struct Dictionary_2_tF591ED968D904B93A92B04B711C65E797B9D6E5E;
- // System.Byte[]
- struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
- // System.Char[]
- struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
- // System.IntPtr[]
- struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
- // System.Diagnostics.StackTrace[]
- struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
- // System.Type[]
- struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
- // System.Buffers.ArrayPoolEventSource
- struct ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358;
- // System.Reflection.Assembly
- struct Assembly_t;
- // System.Reflection.Binder
- struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
- // System.Globalization.CultureInfo
- struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98;
- // System.Diagnostics.Tracing.EventSource
- struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A;
- // System.Collections.Hashtable
- struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC;
- // System.Collections.IDictionary
- struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
- // System.Resources.IResourceGroveler
- struct IResourceGroveler_tD738FE6B83F63AC66FDD73BCD3193016FDEBFAB0;
- // System.Reflection.MemberFilter
- struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
- // System.Security.Cryptography.RandomNumberGenerator
- struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50;
- // System.Resources.ResourceManager
- struct ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A;
- // System.Reflection.RuntimeAssembly
- struct RuntimeAssembly_t799877C849878A70E10D25C690D7B0476DAF0B56;
- // System.Runtime.Serialization.SafeSerializationManager
- struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
- // System.String
- struct String_t;
- // System.Type
- struct Type_t;
- // System.Version
- struct Version_tBDAEDED25425A1D09910468B8BD1759115646E3C;
- // System.Void
- struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
- // System.Resources.ResourceManager/CultureNameResourceSetPair
- struct CultureNameResourceSetPair_t7DF2947B0015A29C8148DB0F32695ECB59369A84;
- IL2CPP_EXTERN_C RuntimeClass* ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_il2cpp_TypeInfo_var;
- IL2CPP_EXTERN_C RuntimeClass* EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_il2cpp_TypeInfo_var;
- IL2CPP_EXTERN_C RuntimeClass* MissingManifestResourceException_tAC74F21ADC46CCB2BCC710464434E3B97F72FACB_il2cpp_TypeInfo_var;
- IL2CPP_EXTERN_C RuntimeClass* ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_il2cpp_TypeInfo_var;
- IL2CPP_EXTERN_C RuntimeClass* SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var;
- IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
- IL2CPP_EXTERN_C String_t* _stringLiteral727FAFFC692D108CBB9ED57B1C150923409C145B;
- IL2CPP_EXTERN_C const RuntimeType* SR_tBEDF38F23AB51D7E5F70B7DF620E959CBB17F2CC_0_0_0_var;
- struct Exception_t_marshaled_com;
- struct Exception_t_marshaled_pinvoke;
- 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
- // <Module>
- struct U3CModuleU3E_t714CE6A82874DDA5AE2A392795BDDA5CC05C3CD0
- {
- public:
- public:
- };
- // System.Object
- struct Il2CppArrayBounds;
- // System.Array
- // System.Reflection.MemberInfo
- struct MemberInfo_t : public RuntimeObject
- {
- public:
- public:
- };
- // FxResources.System.Buffers.SR
- struct SR_tBEDF38F23AB51D7E5F70B7DF620E959CBB17F2CC : public RuntimeObject
- {
- public:
- public:
- };
- // System.SR
- struct SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A : public RuntimeObject
- {
- public:
- public:
- };
- struct SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields
- {
- public:
- // System.Resources.ResourceManager System.SR::s_resourceManager
- ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * ___s_resourceManager_0;
- // System.Type System.SR::<ResourceType>k__BackingField
- Type_t * ___U3CResourceTypeU3Ek__BackingField_1;
- public:
- inline static int32_t get_offset_of_s_resourceManager_0() { return static_cast<int32_t>(offsetof(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields, ___s_resourceManager_0)); }
- inline ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * get_s_resourceManager_0() const { return ___s_resourceManager_0; }
- inline ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A ** get_address_of_s_resourceManager_0() { return &___s_resourceManager_0; }
- inline void set_s_resourceManager_0(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * value)
- {
- ___s_resourceManager_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___s_resourceManager_0), (void*)value);
- }
- inline static int32_t get_offset_of_U3CResourceTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields, ___U3CResourceTypeU3Ek__BackingField_1)); }
- inline Type_t * get_U3CResourceTypeU3Ek__BackingField_1() const { return ___U3CResourceTypeU3Ek__BackingField_1; }
- inline Type_t ** get_address_of_U3CResourceTypeU3Ek__BackingField_1() { return &___U3CResourceTypeU3Ek__BackingField_1; }
- inline void set_U3CResourceTypeU3Ek__BackingField_1(Type_t * value)
- {
- ___U3CResourceTypeU3Ek__BackingField_1 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___U3CResourceTypeU3Ek__BackingField_1), (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.Buffers.Utilities
- struct Utilities_tE53ADF500ED6EDD1A665BE9231DE9F5AE3B51DD9 : public RuntimeObject
- {
- public:
- public:
- };
- // System.ValueType
- struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
- {
- public:
- public:
- };
- // Native definition for P/Invoke marshalling of System.ValueType
- struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
- {
- };
- // Native definition for COM marshalling of System.ValueType
- struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
- {
- };
- // System.Boolean
- struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
- {
- 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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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.Enum
- struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
- {
- public:
- public:
- };
- struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
- {
- public:
- // System.Char[] System.Enum::enumSeperatorCharArray
- CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
- public:
- inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
- inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
- inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
- inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
- {
- ___enumSeperatorCharArray_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
- }
- };
- // Native definition for P/Invoke marshalling of System.Enum
- struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
- {
- };
- // Native definition for COM marshalling of System.Enum
- struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_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_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____rng_13;
- // System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
- RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____fastRng_14;
- 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_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__rng_13() const { return ____rng_13; }
- inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__rng_13() { return &____rng_13; }
- inline void set__rng_13(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
- {
- ____rng_13 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
- }
- inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
- inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__fastRng_14() const { return ____fastRng_14; }
- inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__fastRng_14() { return &____fastRng_14; }
- inline void set__fastRng_14(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
- {
- ____fastRng_14 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value);
- }
- };
- // System.Int32
- struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
- {
- 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_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___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.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.UInt32
- struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15
- {
- 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_tE60352A06233E4E69DD198BCC67142159F686B15, ___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.Void
- struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
- {
- public:
- union
- {
- struct
- {
- };
- uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
- };
- public:
- };
- // System.Reflection.BindingFlags
- struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
- {
- 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_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___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.Diagnostics.Tracing.EventSource
- struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A : public RuntimeObject
- {
- public:
- public:
- };
- struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_StaticFields
- {
- public:
- // System.Byte[] System.Diagnostics.Tracing.EventSource::namespaceBytes
- ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___namespaceBytes_1;
- // System.Guid System.Diagnostics.Tracing.EventSource::AspNetEventSourceGuid
- Guid_t ___AspNetEventSourceGuid_2;
- public:
- inline static int32_t get_offset_of_namespaceBytes_1() { return static_cast<int32_t>(offsetof(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_StaticFields, ___namespaceBytes_1)); }
- inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_namespaceBytes_1() const { return ___namespaceBytes_1; }
- inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_namespaceBytes_1() { return &___namespaceBytes_1; }
- inline void set_namespaceBytes_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
- {
- ___namespaceBytes_1 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___namespaceBytes_1), (void*)value);
- }
- inline static int32_t get_offset_of_AspNetEventSourceGuid_2() { return static_cast<int32_t>(offsetof(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_StaticFields, ___AspNetEventSourceGuid_2)); }
- inline Guid_t get_AspNetEventSourceGuid_2() const { return ___AspNetEventSourceGuid_2; }
- inline Guid_t * get_address_of_AspNetEventSourceGuid_2() { return &___AspNetEventSourceGuid_2; }
- inline void set_AspNetEventSourceGuid_2(Guid_t value)
- {
- ___AspNetEventSourceGuid_2 = value;
- }
- };
- struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_ThreadStaticFields
- {
- public:
- // System.Byte System.Diagnostics.Tracing.EventSource::m_EventSourceExceptionRecurenceCount
- uint8_t ___m_EventSourceExceptionRecurenceCount_0;
- public:
- inline static int32_t get_offset_of_m_EventSourceExceptionRecurenceCount_0() { return static_cast<int32_t>(offsetof(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_ThreadStaticFields, ___m_EventSourceExceptionRecurenceCount_0)); }
- inline uint8_t get_m_EventSourceExceptionRecurenceCount_0() const { return ___m_EventSourceExceptionRecurenceCount_0; }
- inline uint8_t* get_address_of_m_EventSourceExceptionRecurenceCount_0() { return &___m_EventSourceExceptionRecurenceCount_0; }
- inline void set_m_EventSourceExceptionRecurenceCount_0(uint8_t value)
- {
- ___m_EventSourceExceptionRecurenceCount_0 = value;
- }
- };
- // 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
- // System.Diagnostics.StackTrace[] System.Exception::captured_traces
- StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
- // System.IntPtr[] System.Exception::native_trace_ips
- IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
- inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
- inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * 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_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
- inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
- inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* 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_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
- inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
- inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
- StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
- StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
- Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
- };
- // System.RuntimeTypeHandle
- struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
- {
- 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_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___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.StringComparison
- struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998
- {
- 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_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___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.Resources.UltimateResourceFallbackLocation
- struct UltimateResourceFallbackLocation_tA4EBEA627CD0C386314EBB60D7A4225C435D0F0B
- {
- public:
- // System.Int32 System.Resources.UltimateResourceFallbackLocation::value__
- int32_t ___value___2;
- public:
- inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UltimateResourceFallbackLocation_tA4EBEA627CD0C386314EBB60D7A4225C435D0F0B, ___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.Buffers.ArrayPoolEventSource
- struct ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 : public EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A
- {
- public:
- public:
- };
- struct ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_StaticFields
- {
- public:
- // System.Buffers.ArrayPoolEventSource System.Buffers.ArrayPoolEventSource::Log
- ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * ___Log_3;
- public:
- inline static int32_t get_offset_of_Log_3() { return static_cast<int32_t>(offsetof(ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_StaticFields, ___Log_3)); }
- inline ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * get_Log_3() const { return ___Log_3; }
- inline ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 ** get_address_of_Log_3() { return &___Log_3; }
- inline void set_Log_3(ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * value)
- {
- ___Log_3 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___Log_3), (void*)value);
- }
- };
- // System.Resources.ResourceManager
- struct ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A : public RuntimeObject
- {
- public:
- // System.String System.Resources.ResourceManager::BaseNameField
- String_t* ___BaseNameField_0;
- // System.Collections.Hashtable System.Resources.ResourceManager::ResourceSets
- Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___ResourceSets_1;
- // System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet> System.Resources.ResourceManager::_resourceSets
- Dictionary_2_tF591ED968D904B93A92B04B711C65E797B9D6E5E * ____resourceSets_2;
- // System.String System.Resources.ResourceManager::moduleDir
- String_t* ___moduleDir_3;
- // System.Reflection.Assembly System.Resources.ResourceManager::MainAssembly
- Assembly_t * ___MainAssembly_4;
- // System.Type System.Resources.ResourceManager::_locationInfo
- Type_t * ____locationInfo_5;
- // System.Type System.Resources.ResourceManager::_userResourceSet
- Type_t * ____userResourceSet_6;
- // System.Globalization.CultureInfo System.Resources.ResourceManager::_neutralResourcesCulture
- CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ____neutralResourcesCulture_7;
- // System.Resources.ResourceManager/CultureNameResourceSetPair System.Resources.ResourceManager::_lastUsedResourceCache
- CultureNameResourceSetPair_t7DF2947B0015A29C8148DB0F32695ECB59369A84 * ____lastUsedResourceCache_8;
- // System.Boolean System.Resources.ResourceManager::_ignoreCase
- bool ____ignoreCase_9;
- // System.Boolean System.Resources.ResourceManager::UseManifest
- bool ___UseManifest_10;
- // System.Boolean System.Resources.ResourceManager::UseSatelliteAssem
- bool ___UseSatelliteAssem_11;
- // System.Resources.UltimateResourceFallbackLocation System.Resources.ResourceManager::_fallbackLoc
- int32_t ____fallbackLoc_12;
- // System.Version System.Resources.ResourceManager::_satelliteContractVersion
- Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ____satelliteContractVersion_13;
- // System.Boolean System.Resources.ResourceManager::_lookedForSatelliteContractVersion
- bool ____lookedForSatelliteContractVersion_14;
- // System.Reflection.Assembly System.Resources.ResourceManager::_callingAssembly
- Assembly_t * ____callingAssembly_15;
- // System.Reflection.RuntimeAssembly System.Resources.ResourceManager::m_callingAssembly
- RuntimeAssembly_t799877C849878A70E10D25C690D7B0476DAF0B56 * ___m_callingAssembly_16;
- // System.Resources.IResourceGroveler System.Resources.ResourceManager::resourceGroveler
- RuntimeObject* ___resourceGroveler_17;
- public:
- inline static int32_t get_offset_of_BaseNameField_0() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___BaseNameField_0)); }
- inline String_t* get_BaseNameField_0() const { return ___BaseNameField_0; }
- inline String_t** get_address_of_BaseNameField_0() { return &___BaseNameField_0; }
- inline void set_BaseNameField_0(String_t* value)
- {
- ___BaseNameField_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___BaseNameField_0), (void*)value);
- }
- inline static int32_t get_offset_of_ResourceSets_1() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___ResourceSets_1)); }
- inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_ResourceSets_1() const { return ___ResourceSets_1; }
- inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_ResourceSets_1() { return &___ResourceSets_1; }
- inline void set_ResourceSets_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
- {
- ___ResourceSets_1 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___ResourceSets_1), (void*)value);
- }
- inline static int32_t get_offset_of__resourceSets_2() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____resourceSets_2)); }
- inline Dictionary_2_tF591ED968D904B93A92B04B711C65E797B9D6E5E * get__resourceSets_2() const { return ____resourceSets_2; }
- inline Dictionary_2_tF591ED968D904B93A92B04B711C65E797B9D6E5E ** get_address_of__resourceSets_2() { return &____resourceSets_2; }
- inline void set__resourceSets_2(Dictionary_2_tF591ED968D904B93A92B04B711C65E797B9D6E5E * value)
- {
- ____resourceSets_2 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____resourceSets_2), (void*)value);
- }
- inline static int32_t get_offset_of_moduleDir_3() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___moduleDir_3)); }
- inline String_t* get_moduleDir_3() const { return ___moduleDir_3; }
- inline String_t** get_address_of_moduleDir_3() { return &___moduleDir_3; }
- inline void set_moduleDir_3(String_t* value)
- {
- ___moduleDir_3 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___moduleDir_3), (void*)value);
- }
- inline static int32_t get_offset_of_MainAssembly_4() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___MainAssembly_4)); }
- inline Assembly_t * get_MainAssembly_4() const { return ___MainAssembly_4; }
- inline Assembly_t ** get_address_of_MainAssembly_4() { return &___MainAssembly_4; }
- inline void set_MainAssembly_4(Assembly_t * value)
- {
- ___MainAssembly_4 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___MainAssembly_4), (void*)value);
- }
- inline static int32_t get_offset_of__locationInfo_5() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____locationInfo_5)); }
- inline Type_t * get__locationInfo_5() const { return ____locationInfo_5; }
- inline Type_t ** get_address_of__locationInfo_5() { return &____locationInfo_5; }
- inline void set__locationInfo_5(Type_t * value)
- {
- ____locationInfo_5 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____locationInfo_5), (void*)value);
- }
- inline static int32_t get_offset_of__userResourceSet_6() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____userResourceSet_6)); }
- inline Type_t * get__userResourceSet_6() const { return ____userResourceSet_6; }
- inline Type_t ** get_address_of__userResourceSet_6() { return &____userResourceSet_6; }
- inline void set__userResourceSet_6(Type_t * value)
- {
- ____userResourceSet_6 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____userResourceSet_6), (void*)value);
- }
- inline static int32_t get_offset_of__neutralResourcesCulture_7() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____neutralResourcesCulture_7)); }
- inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get__neutralResourcesCulture_7() const { return ____neutralResourcesCulture_7; }
- inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of__neutralResourcesCulture_7() { return &____neutralResourcesCulture_7; }
- inline void set__neutralResourcesCulture_7(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
- {
- ____neutralResourcesCulture_7 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____neutralResourcesCulture_7), (void*)value);
- }
- inline static int32_t get_offset_of__lastUsedResourceCache_8() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____lastUsedResourceCache_8)); }
- inline CultureNameResourceSetPair_t7DF2947B0015A29C8148DB0F32695ECB59369A84 * get__lastUsedResourceCache_8() const { return ____lastUsedResourceCache_8; }
- inline CultureNameResourceSetPair_t7DF2947B0015A29C8148DB0F32695ECB59369A84 ** get_address_of__lastUsedResourceCache_8() { return &____lastUsedResourceCache_8; }
- inline void set__lastUsedResourceCache_8(CultureNameResourceSetPair_t7DF2947B0015A29C8148DB0F32695ECB59369A84 * value)
- {
- ____lastUsedResourceCache_8 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____lastUsedResourceCache_8), (void*)value);
- }
- inline static int32_t get_offset_of__ignoreCase_9() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____ignoreCase_9)); }
- inline bool get__ignoreCase_9() const { return ____ignoreCase_9; }
- inline bool* get_address_of__ignoreCase_9() { return &____ignoreCase_9; }
- inline void set__ignoreCase_9(bool value)
- {
- ____ignoreCase_9 = value;
- }
- inline static int32_t get_offset_of_UseManifest_10() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___UseManifest_10)); }
- inline bool get_UseManifest_10() const { return ___UseManifest_10; }
- inline bool* get_address_of_UseManifest_10() { return &___UseManifest_10; }
- inline void set_UseManifest_10(bool value)
- {
- ___UseManifest_10 = value;
- }
- inline static int32_t get_offset_of_UseSatelliteAssem_11() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___UseSatelliteAssem_11)); }
- inline bool get_UseSatelliteAssem_11() const { return ___UseSatelliteAssem_11; }
- inline bool* get_address_of_UseSatelliteAssem_11() { return &___UseSatelliteAssem_11; }
- inline void set_UseSatelliteAssem_11(bool value)
- {
- ___UseSatelliteAssem_11 = value;
- }
- inline static int32_t get_offset_of__fallbackLoc_12() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____fallbackLoc_12)); }
- inline int32_t get__fallbackLoc_12() const { return ____fallbackLoc_12; }
- inline int32_t* get_address_of__fallbackLoc_12() { return &____fallbackLoc_12; }
- inline void set__fallbackLoc_12(int32_t value)
- {
- ____fallbackLoc_12 = value;
- }
- inline static int32_t get_offset_of__satelliteContractVersion_13() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____satelliteContractVersion_13)); }
- inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get__satelliteContractVersion_13() const { return ____satelliteContractVersion_13; }
- inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of__satelliteContractVersion_13() { return &____satelliteContractVersion_13; }
- inline void set__satelliteContractVersion_13(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value)
- {
- ____satelliteContractVersion_13 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____satelliteContractVersion_13), (void*)value);
- }
- inline static int32_t get_offset_of__lookedForSatelliteContractVersion_14() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____lookedForSatelliteContractVersion_14)); }
- inline bool get__lookedForSatelliteContractVersion_14() const { return ____lookedForSatelliteContractVersion_14; }
- inline bool* get_address_of__lookedForSatelliteContractVersion_14() { return &____lookedForSatelliteContractVersion_14; }
- inline void set__lookedForSatelliteContractVersion_14(bool value)
- {
- ____lookedForSatelliteContractVersion_14 = value;
- }
- inline static int32_t get_offset_of__callingAssembly_15() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____callingAssembly_15)); }
- inline Assembly_t * get__callingAssembly_15() const { return ____callingAssembly_15; }
- inline Assembly_t ** get_address_of__callingAssembly_15() { return &____callingAssembly_15; }
- inline void set__callingAssembly_15(Assembly_t * value)
- {
- ____callingAssembly_15 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____callingAssembly_15), (void*)value);
- }
- inline static int32_t get_offset_of_m_callingAssembly_16() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___m_callingAssembly_16)); }
- inline RuntimeAssembly_t799877C849878A70E10D25C690D7B0476DAF0B56 * get_m_callingAssembly_16() const { return ___m_callingAssembly_16; }
- inline RuntimeAssembly_t799877C849878A70E10D25C690D7B0476DAF0B56 ** get_address_of_m_callingAssembly_16() { return &___m_callingAssembly_16; }
- inline void set_m_callingAssembly_16(RuntimeAssembly_t799877C849878A70E10D25C690D7B0476DAF0B56 * value)
- {
- ___m_callingAssembly_16 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___m_callingAssembly_16), (void*)value);
- }
- inline static int32_t get_offset_of_resourceGroveler_17() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___resourceGroveler_17)); }
- inline RuntimeObject* get_resourceGroveler_17() const { return ___resourceGroveler_17; }
- inline RuntimeObject** get_address_of_resourceGroveler_17() { return &___resourceGroveler_17; }
- inline void set_resourceGroveler_17(RuntimeObject* value)
- {
- ___resourceGroveler_17 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___resourceGroveler_17), (void*)value);
- }
- };
- struct ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields
- {
- public:
- // System.Int32 System.Resources.ResourceManager::MagicNumber
- int32_t ___MagicNumber_18;
- // System.Int32 System.Resources.ResourceManager::HeaderVersionNumber
- int32_t ___HeaderVersionNumber_19;
- // System.Type System.Resources.ResourceManager::_minResourceSet
- Type_t * ____minResourceSet_20;
- // System.String System.Resources.ResourceManager::ResReaderTypeName
- String_t* ___ResReaderTypeName_21;
- // System.String System.Resources.ResourceManager::ResSetTypeName
- String_t* ___ResSetTypeName_22;
- // System.String System.Resources.ResourceManager::MscorlibName
- String_t* ___MscorlibName_23;
- // System.Int32 System.Resources.ResourceManager::DEBUG
- int32_t ___DEBUG_24;
- public:
- inline static int32_t get_offset_of_MagicNumber_18() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___MagicNumber_18)); }
- inline int32_t get_MagicNumber_18() const { return ___MagicNumber_18; }
- inline int32_t* get_address_of_MagicNumber_18() { return &___MagicNumber_18; }
- inline void set_MagicNumber_18(int32_t value)
- {
- ___MagicNumber_18 = value;
- }
- inline static int32_t get_offset_of_HeaderVersionNumber_19() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___HeaderVersionNumber_19)); }
- inline int32_t get_HeaderVersionNumber_19() const { return ___HeaderVersionNumber_19; }
- inline int32_t* get_address_of_HeaderVersionNumber_19() { return &___HeaderVersionNumber_19; }
- inline void set_HeaderVersionNumber_19(int32_t value)
- {
- ___HeaderVersionNumber_19 = value;
- }
- inline static int32_t get_offset_of__minResourceSet_20() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ____minResourceSet_20)); }
- inline Type_t * get__minResourceSet_20() const { return ____minResourceSet_20; }
- inline Type_t ** get_address_of__minResourceSet_20() { return &____minResourceSet_20; }
- inline void set__minResourceSet_20(Type_t * value)
- {
- ____minResourceSet_20 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____minResourceSet_20), (void*)value);
- }
- inline static int32_t get_offset_of_ResReaderTypeName_21() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___ResReaderTypeName_21)); }
- inline String_t* get_ResReaderTypeName_21() const { return ___ResReaderTypeName_21; }
- inline String_t** get_address_of_ResReaderTypeName_21() { return &___ResReaderTypeName_21; }
- inline void set_ResReaderTypeName_21(String_t* value)
- {
- ___ResReaderTypeName_21 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___ResReaderTypeName_21), (void*)value);
- }
- inline static int32_t get_offset_of_ResSetTypeName_22() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___ResSetTypeName_22)); }
- inline String_t* get_ResSetTypeName_22() const { return ___ResSetTypeName_22; }
- inline String_t** get_address_of_ResSetTypeName_22() { return &___ResSetTypeName_22; }
- inline void set_ResSetTypeName_22(String_t* value)
- {
- ___ResSetTypeName_22 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___ResSetTypeName_22), (void*)value);
- }
- inline static int32_t get_offset_of_MscorlibName_23() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___MscorlibName_23)); }
- inline String_t* get_MscorlibName_23() const { return ___MscorlibName_23; }
- inline String_t** get_address_of_MscorlibName_23() { return &___MscorlibName_23; }
- inline void set_MscorlibName_23(String_t* value)
- {
- ___MscorlibName_23 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___MscorlibName_23), (void*)value);
- }
- inline static int32_t get_offset_of_DEBUG_24() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___DEBUG_24)); }
- inline int32_t get_DEBUG_24() const { return ___DEBUG_24; }
- inline int32_t* get_address_of_DEBUG_24() { return &___DEBUG_24; }
- inline void set_DEBUG_24(int32_t value)
- {
- ___DEBUG_24 = value;
- }
- };
- // System.SystemException
- struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
- {
- public:
- public:
- };
- // System.Type
- struct Type_t : public MemberInfo_t
- {
- public:
- // System.RuntimeTypeHandle System.Type::_impl
- RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
- public:
- inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
- inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
- inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
- inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
- {
- ____impl_9 = value;
- }
- };
- struct Type_t_StaticFields
- {
- public:
- // System.Reflection.MemberFilter System.Type::FilterAttribute
- MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
- // System.Reflection.MemberFilter System.Type::FilterName
- MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
- // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
- MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
- // System.Object System.Type::Missing
- RuntimeObject * ___Missing_3;
- // System.Char System.Type::Delimiter
- Il2CppChar ___Delimiter_4;
- // System.Type[] System.Type::EmptyTypes
- TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
- // System.Reflection.Binder System.Type::defaultBinder
- Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
- inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
- inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
- inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
- inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
- inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
- inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
- inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
- inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* 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_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
- inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
- inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
- {
- ___defaultBinder_6 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
- }
- };
- // System.Resources.MissingManifestResourceException
- struct MissingManifestResourceException_tAC74F21ADC46CCB2BCC710464434E3B97F72FACB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
- {
- public:
- public:
- };
- #ifdef __clang__
- #pragma clang diagnostic pop
- #endif
- // System.Void System.Diagnostics.Tracing.EventSource::.ctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource__ctor_m269E04845C481161A894037B5656C992F0D49021 (EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A * __this, const RuntimeMethod* method);
- // System.Void System.Buffers.ArrayPoolEventSource::.ctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource__ctor_mD1104A3392C287DC1B37430D004E36CCED62DC2E (ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * __this, const RuntimeMethod* method);
- // System.Type System.SR::get_ResourceType()
- IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * SR_get_ResourceType_mF148E26A9D2AA3BA0B98C21963449A5BA4E3CCA7_inline (const RuntimeMethod* method);
- // System.Void System.Resources.ResourceManager::.ctor(System.Type)
- IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ResourceManager__ctor_mC8A203D5697A2FAD2B336CF3534C21276918BD25 (ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * __this, Type_t * ___resourceSource0, const RuntimeMethod* method);
- // System.Resources.ResourceManager System.SR::get_ResourceManager()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * SR_get_ResourceManager_mEC93DC61FEB777324823B4D16BE4B54480955947 (const RuntimeMethod* method);
- // System.Boolean System.String::Equals(System.String,System.StringComparison)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m62F0586691097AA2EE48F1596A130170BCFBF7F6 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method);
- // System.String System.SR::GetResourceString(System.String,System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetResourceString_m80874FE1DCB8E1B2F7B25D15F51219F5CADE4AD7 (String_t* ___resourceKey0, String_t* ___defaultString1, const RuntimeMethod* method);
- // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method);
- #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.Buffers.ArrayPoolEventSource::.ctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource__ctor_mD1104A3392C287DC1B37430D004E36CCED62DC2E (ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * __this, const RuntimeMethod* method)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_il2cpp_TypeInfo_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- IL2CPP_RUNTIME_CLASS_INIT(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_il2cpp_TypeInfo_var);
- EventSource__ctor_m269E04845C481161A894037B5656C992F0D49021(__this, /*hidden argument*/NULL);
- return;
- }
- }
- // System.Void System.Buffers.ArrayPoolEventSource::.cctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource__cctor_m0C90DD30C25E1937DDCA282D02D3B1CD9A9B46EE (const RuntimeMethod* method)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_il2cpp_TypeInfo_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * L_0 = (ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 *)il2cpp_codegen_object_new(ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_il2cpp_TypeInfo_var);
- ArrayPoolEventSource__ctor_mD1104A3392C287DC1B37430D004E36CCED62DC2E(L_0, /*hidden argument*/NULL);
- ((ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_StaticFields*)il2cpp_codegen_static_fields_for(ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_il2cpp_TypeInfo_var))->set_Log_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.Resources.ResourceManager System.SR::get_ResourceManager()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * SR_get_ResourceManager_mEC93DC61FEB777324823B4D16BE4B54480955947 (const RuntimeMethod* method)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_il2cpp_TypeInfo_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- s_Il2CppMethodInitialized = true;
- }
- ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * G_B2_0 = NULL;
- ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * G_B1_0 = NULL;
- {
- IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * L_0 = ((SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields*)il2cpp_codegen_static_fields_for(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var))->get_s_resourceManager_0();
- ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * L_1 = L_0;
- G_B1_0 = L_1;
- if (L_1)
- {
- G_B2_0 = L_1;
- goto IL_0019;
- }
- }
- {
- IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- Type_t * L_2;
- L_2 = SR_get_ResourceType_mF148E26A9D2AA3BA0B98C21963449A5BA4E3CCA7_inline(/*hidden argument*/NULL);
- ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * L_3 = (ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A *)il2cpp_codegen_object_new(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_il2cpp_TypeInfo_var);
- ResourceManager__ctor_mC8A203D5697A2FAD2B336CF3534C21276918BD25(L_3, L_2, /*hidden argument*/NULL);
- ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * L_4 = L_3;
- ((SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields*)il2cpp_codegen_static_fields_for(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var))->set_s_resourceManager_0(L_4);
- G_B2_0 = L_4;
- }
- IL_0019:
- {
- return G_B2_0;
- }
- }
- // System.String System.SR::GetResourceString(System.String,System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetResourceString_m80874FE1DCB8E1B2F7B25D15F51219F5CADE4AD7 (String_t* ___resourceKey0, String_t* ___defaultString1, const RuntimeMethod* method)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- s_Il2CppMethodInitialized = true;
- }
- String_t* V_0 = NULL;
- il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
- il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
- {
- V_0 = (String_t*)NULL;
- }
- IL_0002:
- try
- {// begin try (depth: 1)
- IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * L_0;
- L_0 = SR_get_ResourceManager_mEC93DC61FEB777324823B4D16BE4B54480955947(/*hidden argument*/NULL);
- String_t* L_1 = ___resourceKey0;
- NullCheck(L_0);
- String_t* L_2;
- L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(9 /* System.String System.Resources.ResourceManager::GetString(System.String) */, L_0, L_1);
- V_0 = L_2;
- goto IL_0013;
- }// end try (depth: 1)
- catch(Il2CppExceptionWrapper& e)
- {
- if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MissingManifestResourceException_tAC74F21ADC46CCB2BCC710464434E3B97F72FACB_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
- {
- IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
- goto CATCH_0010;
- }
- throw e;
- }
- CATCH_0010:
- {// begin catch(System.Resources.MissingManifestResourceException)
- IL2CPP_POP_ACTIVE_EXCEPTION();
- goto IL_0013;
- }// end catch (depth: 1)
- IL_0013:
- {
- String_t* L_3 = ___defaultString1;
- if (!L_3)
- {
- goto IL_0022;
- }
- }
- {
- String_t* L_4 = ___resourceKey0;
- String_t* L_5 = V_0;
- NullCheck(L_4);
- bool L_6;
- L_6 = String_Equals_m62F0586691097AA2EE48F1596A130170BCFBF7F6(L_4, L_5, 4, /*hidden argument*/NULL);
- if (!L_6)
- {
- goto IL_0022;
- }
- }
- {
- String_t* L_7 = ___defaultString1;
- return L_7;
- }
- IL_0022:
- {
- String_t* L_8 = V_0;
- return L_8;
- }
- }
- // System.Type System.SR::get_ResourceType()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * SR_get_ResourceType_mF148E26A9D2AA3BA0B98C21963449A5BA4E3CCA7 (const RuntimeMethod* method)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- Type_t * L_0 = ((SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields*)il2cpp_codegen_static_fields_for(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var))->get_U3CResourceTypeU3Ek__BackingField_1();
- return L_0;
- }
- }
- // System.String System.SR::get_ArgumentException_BufferNotFromPool()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_get_ArgumentException_BufferNotFromPool_mF7E9FA1998CFF097C3844036F63685CE4927FD35 (const RuntimeMethod* method)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral727FAFFC692D108CBB9ED57B1C150923409C145B);
- s_Il2CppMethodInitialized = true;
- }
- {
- IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- String_t* L_0;
- L_0 = SR_GetResourceString_m80874FE1DCB8E1B2F7B25D15F51219F5CADE4AD7(_stringLiteral727FAFFC692D108CBB9ED57B1C150923409C145B, (String_t*)NULL, /*hidden argument*/NULL);
- return L_0;
- }
- }
- // System.Void System.SR::.cctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SR__cctor_m18CAEA8A36502BED2DF824DBAE84AD86782EF211 (const RuntimeMethod* method)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_tBEDF38F23AB51D7E5F70B7DF620E959CBB17F2CC_0_0_0_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (SR_tBEDF38F23AB51D7E5F70B7DF620E959CBB17F2CC_0_0_0_var) };
- IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
- Type_t * L_1;
- L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL);
- ((SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields*)il2cpp_codegen_static_fields_for(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var))->set_U3CResourceTypeU3Ek__BackingField_1(L_1);
- 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.Buffers.Utilities::SelectBucketIndex(System.Int32)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Utilities_SelectBucketIndex_m8A1B5269010C90973FDB9538193CBBBE26091969 (int32_t ___bufferSize0, const RuntimeMethod* method)
- {
- uint32_t V_0 = 0;
- int32_t V_1 = 0;
- {
- int32_t L_0 = ___bufferSize0;
- V_0 = ((int32_t)((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1))>>4));
- V_1 = 0;
- uint32_t L_1 = V_0;
- if ((!(((uint32_t)L_1) > ((uint32_t)((int32_t)65535)))))
- {
- goto IL_0018;
- }
- }
- {
- uint32_t L_2 = V_0;
- V_0 = ((int32_t)((uint32_t)L_2>>((int32_t)16)));
- V_1 = ((int32_t)16);
- }
- IL_0018:
- {
- uint32_t L_3 = V_0;
- if ((!(((uint32_t)L_3) > ((uint32_t)((int32_t)255)))))
- {
- goto IL_0028;
- }
- }
- {
- uint32_t L_4 = V_0;
- V_0 = ((int32_t)((uint32_t)L_4>>8));
- int32_t L_5 = V_1;
- V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)8));
- }
- IL_0028:
- {
- uint32_t L_6 = V_0;
- if ((!(((uint32_t)L_6) > ((uint32_t)((int32_t)15)))))
- {
- goto IL_0035;
- }
- }
- {
- uint32_t L_7 = V_0;
- V_0 = ((int32_t)((uint32_t)L_7>>4));
- int32_t L_8 = V_1;
- V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)4));
- }
- IL_0035:
- {
- uint32_t L_9 = V_0;
- if ((!(((uint32_t)L_9) > ((uint32_t)3))))
- {
- goto IL_0041;
- }
- }
- {
- uint32_t L_10 = V_0;
- V_0 = ((int32_t)((uint32_t)L_10>>2));
- int32_t L_11 = V_1;
- V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)2));
- }
- IL_0041:
- {
- uint32_t L_12 = V_0;
- if ((!(((uint32_t)L_12) > ((uint32_t)1))))
- {
- goto IL_004d;
- }
- }
- {
- uint32_t L_13 = V_0;
- V_0 = ((int32_t)((uint32_t)L_13>>1));
- int32_t L_14 = V_1;
- V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
- }
- IL_004d:
- {
- int32_t L_15 = V_1;
- uint32_t L_16 = V_0;
- return ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
- }
- }
- // System.Int32 System.Buffers.Utilities::GetMaxSizeForBucket(System.Int32)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Utilities_GetMaxSizeForBucket_m63505BFBAC122CFFE8E4D2EA257020DF5EDADBE7 (int32_t ___binIndex0, const RuntimeMethod* method)
- {
- int32_t V_0 = 0;
- {
- int32_t L_0 = ___binIndex0;
- V_0 = ((int32_t)((int32_t)((int32_t)16)<<(int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)31)))));
- int32_t L_1 = V_0;
- return L_1;
- }
- }
- #ifdef __clang__
- #pragma clang diagnostic pop
- #endif
- IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * SR_get_ResourceType_mF148E26A9D2AA3BA0B98C21963449A5BA4E3CCA7_inline (const RuntimeMethod* method)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
- Type_t * L_0 = ((SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields*)il2cpp_codegen_static_fields_for(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var))->get_U3CResourceTypeU3Ek__BackingField_1();
- return L_0;
- }
- }
|