System.Memory_Attr.cpp 100 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. #include <stdint.h>
  9. // System.Char[]
  10. struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
  11. // System.Type[]
  12. struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
  13. // System.Reflection.AssemblyCompanyAttribute
  14. struct AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4;
  15. // System.Reflection.AssemblyCopyrightAttribute
  16. struct AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC;
  17. // System.Reflection.AssemblyDefaultAliasAttribute
  18. struct AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA;
  19. // System.Reflection.AssemblyDescriptionAttribute
  20. struct AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3;
  21. // System.Reflection.AssemblyFileVersionAttribute
  22. struct AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F;
  23. // System.Reflection.AssemblyInformationalVersionAttribute
  24. struct AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0;
  25. // System.Reflection.AssemblyMetadataAttribute
  26. struct AssemblyMetadataAttribute_tC11B256960EB0C004D873A8822B5F84C5590455F;
  27. // System.Reflection.AssemblyProductAttribute
  28. struct AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA;
  29. // System.Reflection.AssemblyTitleAttribute
  30. struct AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7;
  31. // System.Reflection.Binder
  32. struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
  33. // System.CLSCompliantAttribute
  34. struct CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249;
  35. // System.Runtime.CompilerServices.CompilationRelaxationsAttribute
  36. struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF;
  37. // System.Runtime.CompilerServices.CompilerGeneratedAttribute
  38. struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C;
  39. // System.Diagnostics.DebuggableAttribute
  40. struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B;
  41. // System.Diagnostics.DebuggerDisplayAttribute
  42. struct DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F;
  43. // System.Diagnostics.DebuggerTypeProxyAttribute
  44. struct DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014;
  45. // System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute
  46. struct DefaultDllImportSearchPathsAttribute_t606861446278EFE315772AB77331FBD457E0B68F;
  47. // System.Reflection.DefaultMemberAttribute
  48. struct DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5;
  49. // System.ComponentModel.EditorBrowsableAttribute
  50. struct EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614;
  51. // Microsoft.CodeAnalysis.EmbeddedAttribute
  52. struct EmbeddedAttribute_t9B89B1C38B332E83EF5D9D1D6F6088C7AC3E6EFB;
  53. // System.Runtime.CompilerServices.ExtensionAttribute
  54. struct ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC;
  55. // System.Runtime.CompilerServices.IsByRefLikeAttribute
  56. struct IsByRefLikeAttribute_t4ED9D8CF7709ED7300B718C603BBF8F8AF65EF38;
  57. // System.Runtime.CompilerServices.IsReadOnlyAttribute
  58. struct IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9;
  59. // System.Reflection.MemberFilter
  60. struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
  61. // System.Resources.NeutralResourcesLanguageAttribute
  62. struct NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2;
  63. // System.ObsoleteAttribute
  64. struct ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671;
  65. // System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
  66. struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80;
  67. // System.String
  68. struct String_t;
  69. // System.Type
  70. struct Type_t;
  71. // System.Void
  72. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
  73. IL2CPP_EXTERN_C const RuntimeType* MemoryDebugView_1_tBC60D5F5B656DAD7D858C9E986962853597F3501_0_0_0_var;
  74. IL2CPP_EXTERN_C const RuntimeType* SpanDebugView_1_tAE55D0398405466119248AA583A26408BC07574D_0_0_0_var;
  75. IL2CPP_EXTERN_C_BEGIN
  76. IL2CPP_EXTERN_C_END
  77. #ifdef __clang__
  78. #pragma clang diagnostic push
  79. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  80. #pragma clang diagnostic ignored "-Wunused-variable"
  81. #endif
  82. // System.Object
  83. // System.Attribute
  84. struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
  85. {
  86. public:
  87. public:
  88. };
  89. // System.Reflection.MemberInfo
  90. struct MemberInfo_t : public RuntimeObject
  91. {
  92. public:
  93. public:
  94. };
  95. // System.String
  96. struct String_t : public RuntimeObject
  97. {
  98. public:
  99. // System.Int32 System.String::m_stringLength
  100. int32_t ___m_stringLength_0;
  101. // System.Char System.String::m_firstChar
  102. Il2CppChar ___m_firstChar_1;
  103. public:
  104. inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
  105. inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
  106. inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
  107. inline void set_m_stringLength_0(int32_t value)
  108. {
  109. ___m_stringLength_0 = value;
  110. }
  111. inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
  112. inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
  113. inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
  114. inline void set_m_firstChar_1(Il2CppChar value)
  115. {
  116. ___m_firstChar_1 = value;
  117. }
  118. };
  119. struct String_t_StaticFields
  120. {
  121. public:
  122. // System.String System.String::Empty
  123. String_t* ___Empty_5;
  124. public:
  125. inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
  126. inline String_t* get_Empty_5() const { return ___Empty_5; }
  127. inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
  128. inline void set_Empty_5(String_t* value)
  129. {
  130. ___Empty_5 = value;
  131. Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
  132. }
  133. };
  134. // System.ValueType
  135. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
  136. {
  137. public:
  138. public:
  139. };
  140. // Native definition for P/Invoke marshalling of System.ValueType
  141. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
  142. {
  143. };
  144. // Native definition for COM marshalling of System.ValueType
  145. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
  146. {
  147. };
  148. // System.Reflection.AssemblyCompanyAttribute
  149. struct AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  150. {
  151. public:
  152. // System.String System.Reflection.AssemblyCompanyAttribute::m_company
  153. String_t* ___m_company_0;
  154. public:
  155. inline static int32_t get_offset_of_m_company_0() { return static_cast<int32_t>(offsetof(AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4, ___m_company_0)); }
  156. inline String_t* get_m_company_0() const { return ___m_company_0; }
  157. inline String_t** get_address_of_m_company_0() { return &___m_company_0; }
  158. inline void set_m_company_0(String_t* value)
  159. {
  160. ___m_company_0 = value;
  161. Il2CppCodeGenWriteBarrier((void**)(&___m_company_0), (void*)value);
  162. }
  163. };
  164. // System.Reflection.AssemblyCopyrightAttribute
  165. struct AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  166. {
  167. public:
  168. // System.String System.Reflection.AssemblyCopyrightAttribute::m_copyright
  169. String_t* ___m_copyright_0;
  170. public:
  171. inline static int32_t get_offset_of_m_copyright_0() { return static_cast<int32_t>(offsetof(AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC, ___m_copyright_0)); }
  172. inline String_t* get_m_copyright_0() const { return ___m_copyright_0; }
  173. inline String_t** get_address_of_m_copyright_0() { return &___m_copyright_0; }
  174. inline void set_m_copyright_0(String_t* value)
  175. {
  176. ___m_copyright_0 = value;
  177. Il2CppCodeGenWriteBarrier((void**)(&___m_copyright_0), (void*)value);
  178. }
  179. };
  180. // System.Reflection.AssemblyDefaultAliasAttribute
  181. struct AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  182. {
  183. public:
  184. // System.String System.Reflection.AssemblyDefaultAliasAttribute::m_defaultAlias
  185. String_t* ___m_defaultAlias_0;
  186. public:
  187. inline static int32_t get_offset_of_m_defaultAlias_0() { return static_cast<int32_t>(offsetof(AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA, ___m_defaultAlias_0)); }
  188. inline String_t* get_m_defaultAlias_0() const { return ___m_defaultAlias_0; }
  189. inline String_t** get_address_of_m_defaultAlias_0() { return &___m_defaultAlias_0; }
  190. inline void set_m_defaultAlias_0(String_t* value)
  191. {
  192. ___m_defaultAlias_0 = value;
  193. Il2CppCodeGenWriteBarrier((void**)(&___m_defaultAlias_0), (void*)value);
  194. }
  195. };
  196. // System.Reflection.AssemblyDescriptionAttribute
  197. struct AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  198. {
  199. public:
  200. // System.String System.Reflection.AssemblyDescriptionAttribute::m_description
  201. String_t* ___m_description_0;
  202. public:
  203. inline static int32_t get_offset_of_m_description_0() { return static_cast<int32_t>(offsetof(AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3, ___m_description_0)); }
  204. inline String_t* get_m_description_0() const { return ___m_description_0; }
  205. inline String_t** get_address_of_m_description_0() { return &___m_description_0; }
  206. inline void set_m_description_0(String_t* value)
  207. {
  208. ___m_description_0 = value;
  209. Il2CppCodeGenWriteBarrier((void**)(&___m_description_0), (void*)value);
  210. }
  211. };
  212. // System.Reflection.AssemblyFileVersionAttribute
  213. struct AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  214. {
  215. public:
  216. // System.String System.Reflection.AssemblyFileVersionAttribute::_version
  217. String_t* ____version_0;
  218. public:
  219. inline static int32_t get_offset_of__version_0() { return static_cast<int32_t>(offsetof(AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F, ____version_0)); }
  220. inline String_t* get__version_0() const { return ____version_0; }
  221. inline String_t** get_address_of__version_0() { return &____version_0; }
  222. inline void set__version_0(String_t* value)
  223. {
  224. ____version_0 = value;
  225. Il2CppCodeGenWriteBarrier((void**)(&____version_0), (void*)value);
  226. }
  227. };
  228. // System.Reflection.AssemblyInformationalVersionAttribute
  229. struct AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  230. {
  231. public:
  232. // System.String System.Reflection.AssemblyInformationalVersionAttribute::m_informationalVersion
  233. String_t* ___m_informationalVersion_0;
  234. public:
  235. inline static int32_t get_offset_of_m_informationalVersion_0() { return static_cast<int32_t>(offsetof(AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0, ___m_informationalVersion_0)); }
  236. inline String_t* get_m_informationalVersion_0() const { return ___m_informationalVersion_0; }
  237. inline String_t** get_address_of_m_informationalVersion_0() { return &___m_informationalVersion_0; }
  238. inline void set_m_informationalVersion_0(String_t* value)
  239. {
  240. ___m_informationalVersion_0 = value;
  241. Il2CppCodeGenWriteBarrier((void**)(&___m_informationalVersion_0), (void*)value);
  242. }
  243. };
  244. // System.Reflection.AssemblyMetadataAttribute
  245. struct AssemblyMetadataAttribute_tC11B256960EB0C004D873A8822B5F84C5590455F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  246. {
  247. public:
  248. // System.String System.Reflection.AssemblyMetadataAttribute::m_key
  249. String_t* ___m_key_0;
  250. // System.String System.Reflection.AssemblyMetadataAttribute::m_value
  251. String_t* ___m_value_1;
  252. public:
  253. inline static int32_t get_offset_of_m_key_0() { return static_cast<int32_t>(offsetof(AssemblyMetadataAttribute_tC11B256960EB0C004D873A8822B5F84C5590455F, ___m_key_0)); }
  254. inline String_t* get_m_key_0() const { return ___m_key_0; }
  255. inline String_t** get_address_of_m_key_0() { return &___m_key_0; }
  256. inline void set_m_key_0(String_t* value)
  257. {
  258. ___m_key_0 = value;
  259. Il2CppCodeGenWriteBarrier((void**)(&___m_key_0), (void*)value);
  260. }
  261. inline static int32_t get_offset_of_m_value_1() { return static_cast<int32_t>(offsetof(AssemblyMetadataAttribute_tC11B256960EB0C004D873A8822B5F84C5590455F, ___m_value_1)); }
  262. inline String_t* get_m_value_1() const { return ___m_value_1; }
  263. inline String_t** get_address_of_m_value_1() { return &___m_value_1; }
  264. inline void set_m_value_1(String_t* value)
  265. {
  266. ___m_value_1 = value;
  267. Il2CppCodeGenWriteBarrier((void**)(&___m_value_1), (void*)value);
  268. }
  269. };
  270. // System.Reflection.AssemblyProductAttribute
  271. struct AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  272. {
  273. public:
  274. // System.String System.Reflection.AssemblyProductAttribute::m_product
  275. String_t* ___m_product_0;
  276. public:
  277. inline static int32_t get_offset_of_m_product_0() { return static_cast<int32_t>(offsetof(AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA, ___m_product_0)); }
  278. inline String_t* get_m_product_0() const { return ___m_product_0; }
  279. inline String_t** get_address_of_m_product_0() { return &___m_product_0; }
  280. inline void set_m_product_0(String_t* value)
  281. {
  282. ___m_product_0 = value;
  283. Il2CppCodeGenWriteBarrier((void**)(&___m_product_0), (void*)value);
  284. }
  285. };
  286. // System.Reflection.AssemblyTitleAttribute
  287. struct AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  288. {
  289. public:
  290. // System.String System.Reflection.AssemblyTitleAttribute::m_title
  291. String_t* ___m_title_0;
  292. public:
  293. inline static int32_t get_offset_of_m_title_0() { return static_cast<int32_t>(offsetof(AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7, ___m_title_0)); }
  294. inline String_t* get_m_title_0() const { return ___m_title_0; }
  295. inline String_t** get_address_of_m_title_0() { return &___m_title_0; }
  296. inline void set_m_title_0(String_t* value)
  297. {
  298. ___m_title_0 = value;
  299. Il2CppCodeGenWriteBarrier((void**)(&___m_title_0), (void*)value);
  300. }
  301. };
  302. // System.Boolean
  303. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
  304. {
  305. public:
  306. // System.Boolean System.Boolean::m_value
  307. bool ___m_value_0;
  308. public:
  309. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
  310. inline bool get_m_value_0() const { return ___m_value_0; }
  311. inline bool* get_address_of_m_value_0() { return &___m_value_0; }
  312. inline void set_m_value_0(bool value)
  313. {
  314. ___m_value_0 = value;
  315. }
  316. };
  317. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
  318. {
  319. public:
  320. // System.String System.Boolean::TrueString
  321. String_t* ___TrueString_5;
  322. // System.String System.Boolean::FalseString
  323. String_t* ___FalseString_6;
  324. public:
  325. inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
  326. inline String_t* get_TrueString_5() const { return ___TrueString_5; }
  327. inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
  328. inline void set_TrueString_5(String_t* value)
  329. {
  330. ___TrueString_5 = value;
  331. Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
  332. }
  333. inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
  334. inline String_t* get_FalseString_6() const { return ___FalseString_6; }
  335. inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
  336. inline void set_FalseString_6(String_t* value)
  337. {
  338. ___FalseString_6 = value;
  339. Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
  340. }
  341. };
  342. // System.CLSCompliantAttribute
  343. struct CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  344. {
  345. public:
  346. // System.Boolean System.CLSCompliantAttribute::m_compliant
  347. bool ___m_compliant_0;
  348. public:
  349. inline static int32_t get_offset_of_m_compliant_0() { return static_cast<int32_t>(offsetof(CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249, ___m_compliant_0)); }
  350. inline bool get_m_compliant_0() const { return ___m_compliant_0; }
  351. inline bool* get_address_of_m_compliant_0() { return &___m_compliant_0; }
  352. inline void set_m_compliant_0(bool value)
  353. {
  354. ___m_compliant_0 = value;
  355. }
  356. };
  357. // System.Runtime.CompilerServices.CompilationRelaxationsAttribute
  358. struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  359. {
  360. public:
  361. // System.Int32 System.Runtime.CompilerServices.CompilationRelaxationsAttribute::m_relaxations
  362. int32_t ___m_relaxations_0;
  363. public:
  364. inline static int32_t get_offset_of_m_relaxations_0() { return static_cast<int32_t>(offsetof(CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF, ___m_relaxations_0)); }
  365. inline int32_t get_m_relaxations_0() const { return ___m_relaxations_0; }
  366. inline int32_t* get_address_of_m_relaxations_0() { return &___m_relaxations_0; }
  367. inline void set_m_relaxations_0(int32_t value)
  368. {
  369. ___m_relaxations_0 = value;
  370. }
  371. };
  372. // System.Runtime.CompilerServices.CompilerGeneratedAttribute
  373. struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  374. {
  375. public:
  376. public:
  377. };
  378. // System.Diagnostics.DebuggerDisplayAttribute
  379. struct DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  380. {
  381. public:
  382. // System.String System.Diagnostics.DebuggerDisplayAttribute::name
  383. String_t* ___name_0;
  384. // System.String System.Diagnostics.DebuggerDisplayAttribute::value
  385. String_t* ___value_1;
  386. // System.String System.Diagnostics.DebuggerDisplayAttribute::type
  387. String_t* ___type_2;
  388. public:
  389. inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F, ___name_0)); }
  390. inline String_t* get_name_0() const { return ___name_0; }
  391. inline String_t** get_address_of_name_0() { return &___name_0; }
  392. inline void set_name_0(String_t* value)
  393. {
  394. ___name_0 = value;
  395. Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
  396. }
  397. inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F, ___value_1)); }
  398. inline String_t* get_value_1() const { return ___value_1; }
  399. inline String_t** get_address_of_value_1() { return &___value_1; }
  400. inline void set_value_1(String_t* value)
  401. {
  402. ___value_1 = value;
  403. Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
  404. }
  405. inline static int32_t get_offset_of_type_2() { return static_cast<int32_t>(offsetof(DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F, ___type_2)); }
  406. inline String_t* get_type_2() const { return ___type_2; }
  407. inline String_t** get_address_of_type_2() { return &___type_2; }
  408. inline void set_type_2(String_t* value)
  409. {
  410. ___type_2 = value;
  411. Il2CppCodeGenWriteBarrier((void**)(&___type_2), (void*)value);
  412. }
  413. };
  414. // System.Diagnostics.DebuggerTypeProxyAttribute
  415. struct DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  416. {
  417. public:
  418. // System.String System.Diagnostics.DebuggerTypeProxyAttribute::typeName
  419. String_t* ___typeName_0;
  420. public:
  421. inline static int32_t get_offset_of_typeName_0() { return static_cast<int32_t>(offsetof(DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014, ___typeName_0)); }
  422. inline String_t* get_typeName_0() const { return ___typeName_0; }
  423. inline String_t** get_address_of_typeName_0() { return &___typeName_0; }
  424. inline void set_typeName_0(String_t* value)
  425. {
  426. ___typeName_0 = value;
  427. Il2CppCodeGenWriteBarrier((void**)(&___typeName_0), (void*)value);
  428. }
  429. };
  430. // System.Reflection.DefaultMemberAttribute
  431. struct DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  432. {
  433. public:
  434. // System.String System.Reflection.DefaultMemberAttribute::m_memberName
  435. String_t* ___m_memberName_0;
  436. public:
  437. inline static int32_t get_offset_of_m_memberName_0() { return static_cast<int32_t>(offsetof(DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5, ___m_memberName_0)); }
  438. inline String_t* get_m_memberName_0() const { return ___m_memberName_0; }
  439. inline String_t** get_address_of_m_memberName_0() { return &___m_memberName_0; }
  440. inline void set_m_memberName_0(String_t* value)
  441. {
  442. ___m_memberName_0 = value;
  443. Il2CppCodeGenWriteBarrier((void**)(&___m_memberName_0), (void*)value);
  444. }
  445. };
  446. // Microsoft.CodeAnalysis.EmbeddedAttribute
  447. struct EmbeddedAttribute_t9B89B1C38B332E83EF5D9D1D6F6088C7AC3E6EFB : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  448. {
  449. public:
  450. public:
  451. };
  452. // System.Enum
  453. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
  454. {
  455. public:
  456. public:
  457. };
  458. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
  459. {
  460. public:
  461. // System.Char[] System.Enum::enumSeperatorCharArray
  462. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
  463. public:
  464. inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
  465. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
  466. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
  467. inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  468. {
  469. ___enumSeperatorCharArray_0 = value;
  470. Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
  471. }
  472. };
  473. // Native definition for P/Invoke marshalling of System.Enum
  474. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
  475. {
  476. };
  477. // Native definition for COM marshalling of System.Enum
  478. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
  479. {
  480. };
  481. // System.Runtime.CompilerServices.ExtensionAttribute
  482. struct ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  483. {
  484. public:
  485. public:
  486. };
  487. // System.IntPtr
  488. struct IntPtr_t
  489. {
  490. public:
  491. // System.Void* System.IntPtr::m_value
  492. void* ___m_value_0;
  493. public:
  494. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  495. inline void* get_m_value_0() const { return ___m_value_0; }
  496. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  497. inline void set_m_value_0(void* value)
  498. {
  499. ___m_value_0 = value;
  500. }
  501. };
  502. struct IntPtr_t_StaticFields
  503. {
  504. public:
  505. // System.IntPtr System.IntPtr::Zero
  506. intptr_t ___Zero_1;
  507. public:
  508. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  509. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  510. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  511. inline void set_Zero_1(intptr_t value)
  512. {
  513. ___Zero_1 = value;
  514. }
  515. };
  516. // System.Runtime.CompilerServices.IsByRefLikeAttribute
  517. struct IsByRefLikeAttribute_t4ED9D8CF7709ED7300B718C603BBF8F8AF65EF38 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  518. {
  519. public:
  520. public:
  521. };
  522. // System.Runtime.CompilerServices.IsReadOnlyAttribute
  523. struct IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  524. {
  525. public:
  526. public:
  527. };
  528. // System.ObsoleteAttribute
  529. struct ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  530. {
  531. public:
  532. // System.String System.ObsoleteAttribute::_message
  533. String_t* ____message_0;
  534. // System.Boolean System.ObsoleteAttribute::_error
  535. bool ____error_1;
  536. public:
  537. inline static int32_t get_offset_of__message_0() { return static_cast<int32_t>(offsetof(ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671, ____message_0)); }
  538. inline String_t* get__message_0() const { return ____message_0; }
  539. inline String_t** get_address_of__message_0() { return &____message_0; }
  540. inline void set__message_0(String_t* value)
  541. {
  542. ____message_0 = value;
  543. Il2CppCodeGenWriteBarrier((void**)(&____message_0), (void*)value);
  544. }
  545. inline static int32_t get_offset_of__error_1() { return static_cast<int32_t>(offsetof(ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671, ____error_1)); }
  546. inline bool get__error_1() const { return ____error_1; }
  547. inline bool* get_address_of__error_1() { return &____error_1; }
  548. inline void set__error_1(bool value)
  549. {
  550. ____error_1 = value;
  551. }
  552. };
  553. // System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
  554. struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  555. {
  556. public:
  557. // System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::m_wrapNonExceptionThrows
  558. bool ___m_wrapNonExceptionThrows_0;
  559. public:
  560. inline static int32_t get_offset_of_m_wrapNonExceptionThrows_0() { return static_cast<int32_t>(offsetof(RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80, ___m_wrapNonExceptionThrows_0)); }
  561. inline bool get_m_wrapNonExceptionThrows_0() const { return ___m_wrapNonExceptionThrows_0; }
  562. inline bool* get_address_of_m_wrapNonExceptionThrows_0() { return &___m_wrapNonExceptionThrows_0; }
  563. inline void set_m_wrapNonExceptionThrows_0(bool value)
  564. {
  565. ___m_wrapNonExceptionThrows_0 = value;
  566. }
  567. };
  568. // System.Void
  569. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
  570. {
  571. public:
  572. union
  573. {
  574. struct
  575. {
  576. };
  577. uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
  578. };
  579. public:
  580. };
  581. // System.Reflection.BindingFlags
  582. struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
  583. {
  584. public:
  585. // System.Int32 System.Reflection.BindingFlags::value__
  586. int32_t ___value___2;
  587. public:
  588. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); }
  589. inline int32_t get_value___2() const { return ___value___2; }
  590. inline int32_t* get_address_of_value___2() { return &___value___2; }
  591. inline void set_value___2(int32_t value)
  592. {
  593. ___value___2 = value;
  594. }
  595. };
  596. // System.Runtime.InteropServices.DllImportSearchPath
  597. struct DllImportSearchPath_t0DCA43A0B5753BD73767C7A1B85AB9272669BB8A
  598. {
  599. public:
  600. // System.Int32 System.Runtime.InteropServices.DllImportSearchPath::value__
  601. int32_t ___value___2;
  602. public:
  603. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DllImportSearchPath_t0DCA43A0B5753BD73767C7A1B85AB9272669BB8A, ___value___2)); }
  604. inline int32_t get_value___2() const { return ___value___2; }
  605. inline int32_t* get_address_of_value___2() { return &___value___2; }
  606. inline void set_value___2(int32_t value)
  607. {
  608. ___value___2 = value;
  609. }
  610. };
  611. // System.ComponentModel.EditorBrowsableState
  612. struct EditorBrowsableState_t5212E3E4B6F8B3190040444A9D6FBCA975F02BA1
  613. {
  614. public:
  615. // System.Int32 System.ComponentModel.EditorBrowsableState::value__
  616. int32_t ___value___2;
  617. public:
  618. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EditorBrowsableState_t5212E3E4B6F8B3190040444A9D6FBCA975F02BA1, ___value___2)); }
  619. inline int32_t get_value___2() const { return ___value___2; }
  620. inline int32_t* get_address_of_value___2() { return &___value___2; }
  621. inline void set_value___2(int32_t value)
  622. {
  623. ___value___2 = value;
  624. }
  625. };
  626. // System.RuntimeTypeHandle
  627. struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
  628. {
  629. public:
  630. // System.IntPtr System.RuntimeTypeHandle::value
  631. intptr_t ___value_0;
  632. public:
  633. inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); }
  634. inline intptr_t get_value_0() const { return ___value_0; }
  635. inline intptr_t* get_address_of_value_0() { return &___value_0; }
  636. inline void set_value_0(intptr_t value)
  637. {
  638. ___value_0 = value;
  639. }
  640. };
  641. // System.Resources.UltimateResourceFallbackLocation
  642. struct UltimateResourceFallbackLocation_tA4EBEA627CD0C386314EBB60D7A4225C435D0F0B
  643. {
  644. public:
  645. // System.Int32 System.Resources.UltimateResourceFallbackLocation::value__
  646. int32_t ___value___2;
  647. public:
  648. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UltimateResourceFallbackLocation_tA4EBEA627CD0C386314EBB60D7A4225C435D0F0B, ___value___2)); }
  649. inline int32_t get_value___2() const { return ___value___2; }
  650. inline int32_t* get_address_of_value___2() { return &___value___2; }
  651. inline void set_value___2(int32_t value)
  652. {
  653. ___value___2 = value;
  654. }
  655. };
  656. // System.Diagnostics.DebuggableAttribute/DebuggingModes
  657. struct DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8
  658. {
  659. public:
  660. // System.Int32 System.Diagnostics.DebuggableAttribute/DebuggingModes::value__
  661. int32_t ___value___2;
  662. public:
  663. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8, ___value___2)); }
  664. inline int32_t get_value___2() const { return ___value___2; }
  665. inline int32_t* get_address_of_value___2() { return &___value___2; }
  666. inline void set_value___2(int32_t value)
  667. {
  668. ___value___2 = value;
  669. }
  670. };
  671. // System.Diagnostics.DebuggableAttribute
  672. struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  673. {
  674. public:
  675. // System.Diagnostics.DebuggableAttribute/DebuggingModes System.Diagnostics.DebuggableAttribute::m_debuggingModes
  676. int32_t ___m_debuggingModes_0;
  677. public:
  678. inline static int32_t get_offset_of_m_debuggingModes_0() { return static_cast<int32_t>(offsetof(DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B, ___m_debuggingModes_0)); }
  679. inline int32_t get_m_debuggingModes_0() const { return ___m_debuggingModes_0; }
  680. inline int32_t* get_address_of_m_debuggingModes_0() { return &___m_debuggingModes_0; }
  681. inline void set_m_debuggingModes_0(int32_t value)
  682. {
  683. ___m_debuggingModes_0 = value;
  684. }
  685. };
  686. // System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute
  687. struct DefaultDllImportSearchPathsAttribute_t606861446278EFE315772AB77331FBD457E0B68F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  688. {
  689. public:
  690. // System.Runtime.InteropServices.DllImportSearchPath System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute::_paths
  691. int32_t ____paths_0;
  692. public:
  693. inline static int32_t get_offset_of__paths_0() { return static_cast<int32_t>(offsetof(DefaultDllImportSearchPathsAttribute_t606861446278EFE315772AB77331FBD457E0B68F, ____paths_0)); }
  694. inline int32_t get__paths_0() const { return ____paths_0; }
  695. inline int32_t* get_address_of__paths_0() { return &____paths_0; }
  696. inline void set__paths_0(int32_t value)
  697. {
  698. ____paths_0 = value;
  699. }
  700. };
  701. // System.ComponentModel.EditorBrowsableAttribute
  702. struct EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  703. {
  704. public:
  705. // System.ComponentModel.EditorBrowsableState System.ComponentModel.EditorBrowsableAttribute::browsableState
  706. int32_t ___browsableState_0;
  707. public:
  708. inline static int32_t get_offset_of_browsableState_0() { return static_cast<int32_t>(offsetof(EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614, ___browsableState_0)); }
  709. inline int32_t get_browsableState_0() const { return ___browsableState_0; }
  710. inline int32_t* get_address_of_browsableState_0() { return &___browsableState_0; }
  711. inline void set_browsableState_0(int32_t value)
  712. {
  713. ___browsableState_0 = value;
  714. }
  715. };
  716. // System.Resources.NeutralResourcesLanguageAttribute
  717. struct NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  718. {
  719. public:
  720. // System.String System.Resources.NeutralResourcesLanguageAttribute::_culture
  721. String_t* ____culture_0;
  722. // System.Resources.UltimateResourceFallbackLocation System.Resources.NeutralResourcesLanguageAttribute::_fallbackLoc
  723. int32_t ____fallbackLoc_1;
  724. public:
  725. inline static int32_t get_offset_of__culture_0() { return static_cast<int32_t>(offsetof(NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2, ____culture_0)); }
  726. inline String_t* get__culture_0() const { return ____culture_0; }
  727. inline String_t** get_address_of__culture_0() { return &____culture_0; }
  728. inline void set__culture_0(String_t* value)
  729. {
  730. ____culture_0 = value;
  731. Il2CppCodeGenWriteBarrier((void**)(&____culture_0), (void*)value);
  732. }
  733. inline static int32_t get_offset_of__fallbackLoc_1() { return static_cast<int32_t>(offsetof(NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2, ____fallbackLoc_1)); }
  734. inline int32_t get__fallbackLoc_1() const { return ____fallbackLoc_1; }
  735. inline int32_t* get_address_of__fallbackLoc_1() { return &____fallbackLoc_1; }
  736. inline void set__fallbackLoc_1(int32_t value)
  737. {
  738. ____fallbackLoc_1 = value;
  739. }
  740. };
  741. // System.Type
  742. struct Type_t : public MemberInfo_t
  743. {
  744. public:
  745. // System.RuntimeTypeHandle System.Type::_impl
  746. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
  747. public:
  748. inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
  749. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
  750. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
  751. inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
  752. {
  753. ____impl_9 = value;
  754. }
  755. };
  756. struct Type_t_StaticFields
  757. {
  758. public:
  759. // System.Reflection.MemberFilter System.Type::FilterAttribute
  760. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
  761. // System.Reflection.MemberFilter System.Type::FilterName
  762. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
  763. // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
  764. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
  765. // System.Object System.Type::Missing
  766. RuntimeObject * ___Missing_3;
  767. // System.Char System.Type::Delimiter
  768. Il2CppChar ___Delimiter_4;
  769. // System.Type[] System.Type::EmptyTypes
  770. TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
  771. // System.Reflection.Binder System.Type::defaultBinder
  772. Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6;
  773. public:
  774. inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
  775. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
  776. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
  777. inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  778. {
  779. ___FilterAttribute_0 = value;
  780. Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
  781. }
  782. inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
  783. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
  784. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
  785. inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  786. {
  787. ___FilterName_1 = value;
  788. Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
  789. }
  790. inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
  791. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
  792. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
  793. inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  794. {
  795. ___FilterNameIgnoreCase_2 = value;
  796. Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
  797. }
  798. inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
  799. inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
  800. inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
  801. inline void set_Missing_3(RuntimeObject * value)
  802. {
  803. ___Missing_3 = value;
  804. Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
  805. }
  806. inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
  807. inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
  808. inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
  809. inline void set_Delimiter_4(Il2CppChar value)
  810. {
  811. ___Delimiter_4 = value;
  812. }
  813. inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
  814. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
  815. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
  816. inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
  817. {
  818. ___EmptyTypes_5 = value;
  819. Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
  820. }
  821. inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
  822. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
  823. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
  824. inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
  825. {
  826. ___defaultBinder_6 = value;
  827. Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
  828. }
  829. };
  830. #ifdef __clang__
  831. #pragma clang diagnostic pop
  832. #endif
  833. // System.Void System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute::.ctor(System.Runtime.InteropServices.DllImportSearchPath)
  834. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultDllImportSearchPathsAttribute__ctor_m83BB822102FB5AEBE16A3BC99A3ACF9400D1F269 (DefaultDllImportSearchPathsAttribute_t606861446278EFE315772AB77331FBD457E0B68F * __this, int32_t ___paths0, const RuntimeMethod* method);
  835. // System.Void System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(System.Int32)
  836. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilationRelaxationsAttribute__ctor_mAC3079EBC4EEAB474EED8208EF95DB39C922333B (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * __this, int32_t ___relaxations0, const RuntimeMethod* method);
  837. // System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::.ctor()
  838. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, const RuntimeMethod* method);
  839. // System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::set_WrapNonExceptionThrows(System.Boolean)
  840. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method);
  841. // System.Void System.Diagnostics.DebuggableAttribute::.ctor(System.Diagnostics.DebuggableAttribute/DebuggingModes)
  842. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550 (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * __this, int32_t ___modes0, const RuntimeMethod* method);
  843. // System.Void System.Resources.NeutralResourcesLanguageAttribute::.ctor(System.String)
  844. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NeutralResourcesLanguageAttribute__ctor_mF2BB52FC7FE116CCA2AEDD08A2DA1DF7055B56AF (NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 * __this, String_t* ___cultureName0, const RuntimeMethod* method);
  845. // System.Void System.Reflection.AssemblyTitleAttribute::.ctor(System.String)
  846. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyTitleAttribute__ctor_mE239F206B3B369C48AE1F3B4211688778FE99E8D (AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 * __this, String_t* ___title0, const RuntimeMethod* method);
  847. // System.Void System.Reflection.AssemblyDescriptionAttribute::.ctor(System.String)
  848. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyDescriptionAttribute__ctor_m3A0BD500FF352A67235FBA499FBA58EFF15B1F25 (AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 * __this, String_t* ___description0, const RuntimeMethod* method);
  849. // System.Void System.Reflection.AssemblyDefaultAliasAttribute::.ctor(System.String)
  850. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyDefaultAliasAttribute__ctor_m0C9991C32ED63B598FA509F3AF74554A5C874EB0 (AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA * __this, String_t* ___defaultAlias0, const RuntimeMethod* method);
  851. // System.Void System.Reflection.AssemblyCompanyAttribute::.ctor(System.String)
  852. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyCompanyAttribute__ctor_m435C9FEC405646617645636E67860598A0C46FF0 (AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 * __this, String_t* ___company0, const RuntimeMethod* method);
  853. // System.Void System.Reflection.AssemblyProductAttribute::.ctor(System.String)
  854. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyProductAttribute__ctor_m26DF1EBC1C86E7DA4786C66B44123899BE8DBCB8 (AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA * __this, String_t* ___product0, const RuntimeMethod* method);
  855. // System.Void System.Reflection.AssemblyCopyrightAttribute::.ctor(System.String)
  856. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyCopyrightAttribute__ctor_mB0B5F5C1A7A8B172289CC694E2711F07A37CE3F3 (AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC * __this, String_t* ___copyright0, const RuntimeMethod* method);
  857. // System.Void System.Reflection.AssemblyFileVersionAttribute::.ctor(System.String)
  858. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyFileVersionAttribute__ctor_mF855AEBC51CB72F4FF913499256741AE57B0F13D (AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F * __this, String_t* ___version0, const RuntimeMethod* method);
  859. // System.Void System.Reflection.AssemblyInformationalVersionAttribute::.ctor(System.String)
  860. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyInformationalVersionAttribute__ctor_m9BF349D8F980B0ABAB2A6312E422915285FA1678 (AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 * __this, String_t* ___informationalVersion0, const RuntimeMethod* method);
  861. // System.Void System.CLSCompliantAttribute::.ctor(System.Boolean)
  862. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270 (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * __this, bool ___isCompliant0, const RuntimeMethod* method);
  863. // System.Void System.Reflection.AssemblyMetadataAttribute::.ctor(System.String,System.String)
  864. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyMetadataAttribute__ctor_m5A4B63DCD1CCB566C877C0CFCD9FE0BBDD249529 (AssemblyMetadataAttribute_tC11B256960EB0C004D873A8822B5F84C5590455F * __this, String_t* ___key0, String_t* ___value1, const RuntimeMethod* method);
  865. // System.Void System.Runtime.CompilerServices.ExtensionAttribute::.ctor()
  866. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * __this, const RuntimeMethod* method);
  867. // System.Void System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor()
  868. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35 (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * __this, const RuntimeMethod* method);
  869. // System.Void Microsoft.CodeAnalysis.EmbeddedAttribute::.ctor()
  870. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmbeddedAttribute__ctor_m7D7D024DA2EA05AEDF8B8C470F678A5DA96C8EB8 (EmbeddedAttribute_t9B89B1C38B332E83EF5D9D1D6F6088C7AC3E6EFB * __this, const RuntimeMethod* method);
  871. // System.Void System.Diagnostics.DebuggerDisplayAttribute::.ctor(System.String)
  872. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988 (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * __this, String_t* ___value0, const RuntimeMethod* method);
  873. // System.Void System.Runtime.CompilerServices.IsReadOnlyAttribute::.ctor()
  874. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IsReadOnlyAttribute__ctor_m07A8C937D13DE79AF8ED555F18E5AE9FDA6C3879 (IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 * __this, const RuntimeMethod* method);
  875. // System.Void System.Diagnostics.DebuggerTypeProxyAttribute::.ctor(System.Type)
  876. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggerTypeProxyAttribute__ctor_mF05A9CF9DC4A3F95F05938CF6CBF45CC32CF5167 (DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 * __this, Type_t * ___type0, const RuntimeMethod* method);
  877. // System.Void System.ComponentModel.EditorBrowsableAttribute::.ctor(System.ComponentModel.EditorBrowsableState)
  878. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4 (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * __this, int32_t ___state0, const RuntimeMethod* method);
  879. // System.Void System.ObsoleteAttribute::.ctor(System.String,System.Boolean)
  880. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObsoleteAttribute__ctor_m058D2B798E9AB7E7778A6DB04C3FE7011C660F4C (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * __this, String_t* ___message0, bool ___error1, const RuntimeMethod* method);
  881. // System.Void System.Runtime.CompilerServices.IsByRefLikeAttribute::.ctor()
  882. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IsByRefLikeAttribute__ctor_m3F813C04C0FAF02B5AF712ED98929300CD6E44DD (IsByRefLikeAttribute_t4ED9D8CF7709ED7300B718C603BBF8F8AF65EF38 * __this, const RuntimeMethod* method);
  883. // System.Void System.Reflection.DefaultMemberAttribute::.ctor(System.String)
  884. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7 (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * __this, String_t* ___memberName0, const RuntimeMethod* method);
  885. // System.Void System.ObsoleteAttribute::.ctor(System.String)
  886. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868 (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * __this, String_t* ___message0, const RuntimeMethod* method);
  887. static void System_Memory_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  888. {
  889. {
  890. DefaultDllImportSearchPathsAttribute_t606861446278EFE315772AB77331FBD457E0B68F * tmp = (DefaultDllImportSearchPathsAttribute_t606861446278EFE315772AB77331FBD457E0B68F *)cache->attributes[0];
  891. DefaultDllImportSearchPathsAttribute__ctor_m83BB822102FB5AEBE16A3BC99A3ACF9400D1F269(tmp, 2050LL, NULL);
  892. }
  893. {
  894. CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * tmp = (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF *)cache->attributes[1];
  895. CompilationRelaxationsAttribute__ctor_mAC3079EBC4EEAB474EED8208EF95DB39C922333B(tmp, 8LL, NULL);
  896. }
  897. {
  898. RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * tmp = (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 *)cache->attributes[2];
  899. RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C(tmp, NULL);
  900. RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline(tmp, true, NULL);
  901. }
  902. {
  903. DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * tmp = (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B *)cache->attributes[3];
  904. DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550(tmp, 2LL, NULL);
  905. }
  906. {
  907. NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 * tmp = (NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 *)cache->attributes[4];
  908. NeutralResourcesLanguageAttribute__ctor_mF2BB52FC7FE116CCA2AEDD08A2DA1DF7055B56AF(tmp, il2cpp_codegen_string_new_wrapper("\x65\x6E\x2D\x55\x53"), NULL);
  909. }
  910. {
  911. AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 * tmp = (AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 *)cache->attributes[5];
  912. AssemblyTitleAttribute__ctor_mE239F206B3B369C48AE1F3B4211688778FE99E8D(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x4D\x65\x6D\x6F\x72\x79"), NULL);
  913. }
  914. {
  915. AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 * tmp = (AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 *)cache->attributes[6];
  916. AssemblyDescriptionAttribute__ctor_m3A0BD500FF352A67235FBA499FBA58EFF15B1F25(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x4D\x65\x6D\x6F\x72\x79"), NULL);
  917. }
  918. {
  919. AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA * tmp = (AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA *)cache->attributes[7];
  920. AssemblyDefaultAliasAttribute__ctor_m0C9991C32ED63B598FA509F3AF74554A5C874EB0(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x4D\x65\x6D\x6F\x72\x79"), NULL);
  921. }
  922. {
  923. AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 * tmp = (AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 *)cache->attributes[8];
  924. AssemblyCompanyAttribute__ctor_m435C9FEC405646617645636E67860598A0C46FF0(tmp, il2cpp_codegen_string_new_wrapper("\x4D\x69\x63\x72\x6F\x73\x6F\x66\x74\x20\x43\x6F\x72\x70\x6F\x72\x61\x74\x69\x6F\x6E"), NULL);
  925. }
  926. {
  927. AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA * tmp = (AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA *)cache->attributes[9];
  928. AssemblyProductAttribute__ctor_m26DF1EBC1C86E7DA4786C66B44123899BE8DBCB8(tmp, il2cpp_codegen_string_new_wrapper("\x4D\x69\x63\x72\x6F\x73\x6F\x66\x74\xC2\xAE\x20\x2E\x4E\x45\x54\x20\x46\x72\x61\x6D\x65\x77\x6F\x72\x6B"), NULL);
  929. }
  930. {
  931. AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC * tmp = (AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC *)cache->attributes[10];
  932. AssemblyCopyrightAttribute__ctor_mB0B5F5C1A7A8B172289CC694E2711F07A37CE3F3(tmp, il2cpp_codegen_string_new_wrapper("\xC2\xA9\x20\x4D\x69\x63\x72\x6F\x73\x6F\x66\x74\x20\x43\x6F\x72\x70\x6F\x72\x61\x74\x69\x6F\x6E\x2E\x20\x41\x6C\x6C\x20\x72\x69\x67\x68\x74\x73\x20\x72\x65\x73\x65\x72\x76\x65\x64\x2E"), NULL);
  933. }
  934. {
  935. AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F * tmp = (AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F *)cache->attributes[11];
  936. AssemblyFileVersionAttribute__ctor_mF855AEBC51CB72F4FF913499256741AE57B0F13D(tmp, il2cpp_codegen_string_new_wrapper("\x34\x2E\x36\x2E\x32\x38\x36\x31\x39\x2E\x30\x31"), NULL);
  937. }
  938. {
  939. AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 * tmp = (AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 *)cache->attributes[12];
  940. AssemblyInformationalVersionAttribute__ctor_m9BF349D8F980B0ABAB2A6312E422915285FA1678(tmp, il2cpp_codegen_string_new_wrapper("\x34\x2E\x36\x2E\x32\x38\x36\x31\x39\x2E\x30\x31\x20\x40\x42\x75\x69\x6C\x74\x42\x79\x3A\x20\x64\x6C\x61\x62\x31\x34\x2D\x44\x44\x56\x53\x4F\x57\x49\x4E\x41\x47\x45\x30\x36\x39\x20\x40\x42\x72\x61\x6E\x63\x68\x3A\x20\x72\x65\x6C\x65\x61\x73\x65\x2F\x32\x2E\x31\x20\x40\x53\x72\x63\x43\x6F\x64\x65\x3A\x20\x68\x74\x74\x70\x73\x3A\x2F\x2F\x67\x69\x74\x68\x75\x62\x2E\x63\x6F\x6D\x2F\x64\x6F\x74\x6E\x65\x74\x2F\x63\x6F\x72\x65\x66\x78\x2F\x74\x72\x65\x65\x2F\x37\x36\x30\x31\x66\x34\x66\x36\x32\x32\x35\x30\x38\x39\x66\x66\x62\x32\x39\x31\x64\x63\x37\x64\x35\x38\x32\x39\x33\x63\x37\x62\x62\x66\x35\x63\x35\x64\x34\x66"), NULL);
  941. }
  942. {
  943. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[13];
  944. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, true, NULL);
  945. }
  946. {
  947. AssemblyMetadataAttribute_tC11B256960EB0C004D873A8822B5F84C5590455F * tmp = (AssemblyMetadataAttribute_tC11B256960EB0C004D873A8822B5F84C5590455F *)cache->attributes[14];
  948. AssemblyMetadataAttribute__ctor_m5A4B63DCD1CCB566C877C0CFCD9FE0BBDD249529(tmp, il2cpp_codegen_string_new_wrapper("\x2E\x4E\x45\x54\x46\x72\x61\x6D\x65\x77\x6F\x72\x6B\x41\x73\x73\x65\x6D\x62\x6C\x79"), il2cpp_codegen_string_new_wrapper(""), NULL);
  949. }
  950. {
  951. AssemblyMetadataAttribute_tC11B256960EB0C004D873A8822B5F84C5590455F * tmp = (AssemblyMetadataAttribute_tC11B256960EB0C004D873A8822B5F84C5590455F *)cache->attributes[15];
  952. AssemblyMetadataAttribute__ctor_m5A4B63DCD1CCB566C877C0CFCD9FE0BBDD249529(tmp, il2cpp_codegen_string_new_wrapper("\x53\x65\x72\x76\x69\x63\x65\x61\x62\x6C\x65"), il2cpp_codegen_string_new_wrapper("\x54\x72\x75\x65"), NULL);
  953. }
  954. {
  955. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[16];
  956. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  957. }
  958. {
  959. AssemblyMetadataAttribute_tC11B256960EB0C004D873A8822B5F84C5590455F * tmp = (AssemblyMetadataAttribute_tC11B256960EB0C004D873A8822B5F84C5590455F *)cache->attributes[17];
  960. AssemblyMetadataAttribute__ctor_m5A4B63DCD1CCB566C877C0CFCD9FE0BBDD249529(tmp, il2cpp_codegen_string_new_wrapper("\x50\x72\x65\x66\x65\x72\x49\x6E\x62\x6F\x78"), il2cpp_codegen_string_new_wrapper("\x54\x72\x75\x65"), NULL);
  961. }
  962. }
  963. static void EmbeddedAttribute_t9B89B1C38B332E83EF5D9D1D6F6088C7AC3E6EFB_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  964. {
  965. {
  966. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  967. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  968. }
  969. {
  970. EmbeddedAttribute_t9B89B1C38B332E83EF5D9D1D6F6088C7AC3E6EFB * tmp = (EmbeddedAttribute_t9B89B1C38B332E83EF5D9D1D6F6088C7AC3E6EFB *)cache->attributes[1];
  971. EmbeddedAttribute__ctor_m7D7D024DA2EA05AEDF8B8C470F678A5DA96C8EB8(tmp, NULL);
  972. }
  973. }
  974. static void IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  975. {
  976. {
  977. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  978. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  979. }
  980. {
  981. EmbeddedAttribute_t9B89B1C38B332E83EF5D9D1D6F6088C7AC3E6EFB * tmp = (EmbeddedAttribute_t9B89B1C38B332E83EF5D9D1D6F6088C7AC3E6EFB *)cache->attributes[1];
  982. EmbeddedAttribute__ctor_m7D7D024DA2EA05AEDF8B8C470F678A5DA96C8EB8(tmp, NULL);
  983. }
  984. }
  985. static void IsByRefLikeAttribute_t4ED9D8CF7709ED7300B718C603BBF8F8AF65EF38_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  986. {
  987. {
  988. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  989. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  990. }
  991. {
  992. EmbeddedAttribute_t9B89B1C38B332E83EF5D9D1D6F6088C7AC3E6EFB * tmp = (EmbeddedAttribute_t9B89B1C38B332E83EF5D9D1D6F6088C7AC3E6EFB *)cache->attributes[1];
  993. EmbeddedAttribute__ctor_m7D7D024DA2EA05AEDF8B8C470F678A5DA96C8EB8(tmp, NULL);
  994. }
  995. }
  996. static void Memory_1_t9C3725E34DF7985E9AF7E72EB2926CD75E709E7A_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  997. {
  998. static bool s_Il2CppMethodInitialized;
  999. if (!s_Il2CppMethodInitialized)
  1000. {
  1001. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryDebugView_1_tBC60D5F5B656DAD7D858C9E986962853597F3501_0_0_0_var);
  1002. s_Il2CppMethodInitialized = true;
  1003. }
  1004. {
  1005. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
  1006. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x54\x6F\x53\x74\x72\x69\x6E\x67\x28\x29\x2C\x72\x61\x77\x7D"), NULL);
  1007. }
  1008. {
  1009. IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 * tmp = (IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 *)cache->attributes[1];
  1010. IsReadOnlyAttribute__ctor_m07A8C937D13DE79AF8ED555F18E5AE9FDA6C3879(tmp, NULL);
  1011. }
  1012. {
  1013. DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 * tmp = (DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 *)cache->attributes[2];
  1014. DebuggerTypeProxyAttribute__ctor_mF05A9CF9DC4A3F95F05938CF6CBF45CC32CF5167(tmp, il2cpp_codegen_type_get_object(MemoryDebugView_1_tBC60D5F5B656DAD7D858C9E986962853597F3501_0_0_0_var), NULL);
  1015. }
  1016. }
  1017. static void Memory_1_t9C3725E34DF7985E9AF7E72EB2926CD75E709E7A_CustomAttributesCacheGenerator_Memory_1_Equals_m522D822A398E922AD847F3B46C7C164D604B1A80(CustomAttributesCache* cache)
  1018. {
  1019. {
  1020. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
  1021. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1022. }
  1023. }
  1024. static void Memory_1_t9C3725E34DF7985E9AF7E72EB2926CD75E709E7A_CustomAttributesCacheGenerator_Memory_1_GetHashCode_m0BFFC68666502C040C24EC5F52850092AE4DC41B(CustomAttributesCache* cache)
  1025. {
  1026. {
  1027. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
  1028. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1029. }
  1030. }
  1031. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1032. {
  1033. {
  1034. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1035. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1036. }
  1037. }
  1038. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_Trim_m1E95BA795E4986E05C21DA799B8817DC69153DFC(CustomAttributesCache* cache)
  1039. {
  1040. {
  1041. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1042. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1043. }
  1044. }
  1045. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_TrimStart_m7F291DFFF7D1DFBED45698047A694A4678A4740E(CustomAttributesCache* cache)
  1046. {
  1047. {
  1048. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1049. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1050. }
  1051. }
  1052. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_TrimEnd_m79AAB5B4F11DA4B1A7070BF6555E4C3078BF9BD3(CustomAttributesCache* cache)
  1053. {
  1054. {
  1055. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1056. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1057. }
  1058. }
  1059. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_IndexOf_m8843D52ACA93EE0DFDF52051AFB8DC30093C4F0F(CustomAttributesCache* cache)
  1060. {
  1061. {
  1062. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1063. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1064. }
  1065. }
  1066. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_SequenceEqual_mEB6F5A8BE8C38ED46DFD86FF8F7C0298F50E1EA5(CustomAttributesCache* cache)
  1067. {
  1068. {
  1069. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1070. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1071. }
  1072. }
  1073. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_IndexOf_mF46A8EBA2CE37D500392B2D805EA3E518154E5EF(CustomAttributesCache* cache)
  1074. {
  1075. {
  1076. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1077. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1078. }
  1079. }
  1080. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_SequenceEqual_m01769C5BF7A8393C3CF210FBA0919903AA2F6A77(CustomAttributesCache* cache)
  1081. {
  1082. {
  1083. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1084. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1085. }
  1086. }
  1087. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_StartsWith_m8349C7D084BAF656FF5EDDFD1A06D17891861132(CustomAttributesCache* cache)
  1088. {
  1089. {
  1090. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1091. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1092. }
  1093. }
  1094. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_Reverse_m53307122A7E928B4CFCDCC94AE2B474423214FB2(CustomAttributesCache* cache)
  1095. {
  1096. {
  1097. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1098. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1099. }
  1100. }
  1101. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_AsSpan_mE3F7CC9D75681D0BD2FFF89C9F454C823A32013F(CustomAttributesCache* cache)
  1102. {
  1103. {
  1104. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1105. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1106. }
  1107. }
  1108. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_AsSpan_m7664E3A71D276CBFB02E63C8719BA4AA0FAB2F86(CustomAttributesCache* cache)
  1109. {
  1110. {
  1111. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1112. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1113. }
  1114. }
  1115. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_CopyTo_m31E5E6220849455BCB772B5B8559BE87A27BABD6(CustomAttributesCache* cache)
  1116. {
  1117. {
  1118. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1119. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1120. }
  1121. }
  1122. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_AsSpan_mAD8ED5BB344BDBC17C54BA260B064AA6E4D82D2D(CustomAttributesCache* cache)
  1123. {
  1124. {
  1125. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1126. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1127. }
  1128. }
  1129. static void MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_AsSpan_m7527C7806D1DD24C012DC60C12280A9E1AEA8F15(CustomAttributesCache* cache)
  1130. {
  1131. {
  1132. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1133. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1134. }
  1135. }
  1136. static void ReadOnlyMemory_1_tAAA9CB78753D364C1C68F98E1112328AEB5C264A_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1137. {
  1138. static bool s_Il2CppMethodInitialized;
  1139. if (!s_Il2CppMethodInitialized)
  1140. {
  1141. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryDebugView_1_tBC60D5F5B656DAD7D858C9E986962853597F3501_0_0_0_var);
  1142. s_Il2CppMethodInitialized = true;
  1143. }
  1144. {
  1145. IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 * tmp = (IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 *)cache->attributes[0];
  1146. IsReadOnlyAttribute__ctor_m07A8C937D13DE79AF8ED555F18E5AE9FDA6C3879(tmp, NULL);
  1147. }
  1148. {
  1149. DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 * tmp = (DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 *)cache->attributes[1];
  1150. DebuggerTypeProxyAttribute__ctor_mF05A9CF9DC4A3F95F05938CF6CBF45CC32CF5167(tmp, il2cpp_codegen_type_get_object(MemoryDebugView_1_tBC60D5F5B656DAD7D858C9E986962853597F3501_0_0_0_var), NULL);
  1151. }
  1152. {
  1153. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[2];
  1154. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x54\x6F\x53\x74\x72\x69\x6E\x67\x28\x29\x2C\x72\x61\x77\x7D"), NULL);
  1155. }
  1156. }
  1157. static void ReadOnlyMemory_1_tAAA9CB78753D364C1C68F98E1112328AEB5C264A_CustomAttributesCacheGenerator_ReadOnlyMemory_1_Equals_m8C0D8A08A7F6461C53CCBCD6BCF25C68F88F6FA5(CustomAttributesCache* cache)
  1158. {
  1159. {
  1160. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
  1161. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1162. }
  1163. }
  1164. static void ReadOnlyMemory_1_tAAA9CB78753D364C1C68F98E1112328AEB5C264A_CustomAttributesCacheGenerator_ReadOnlyMemory_1_GetHashCode_m7859EBDB70003685D7F99B1B2083588B97E90BB1(CustomAttributesCache* cache)
  1165. {
  1166. {
  1167. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
  1168. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1169. }
  1170. }
  1171. static void ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1172. {
  1173. static bool s_Il2CppMethodInitialized;
  1174. if (!s_Il2CppMethodInitialized)
  1175. {
  1176. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpanDebugView_1_tAE55D0398405466119248AA583A26408BC07574D_0_0_0_var);
  1177. s_Il2CppMethodInitialized = true;
  1178. }
  1179. {
  1180. IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 * tmp = (IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 *)cache->attributes[0];
  1181. IsReadOnlyAttribute__ctor_m07A8C937D13DE79AF8ED555F18E5AE9FDA6C3879(tmp, NULL);
  1182. }
  1183. {
  1184. ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[1];
  1185. ObsoleteAttribute__ctor_m058D2B798E9AB7E7778A6DB04C3FE7011C660F4C(tmp, il2cpp_codegen_string_new_wrapper("\x54\x79\x70\x65\x73\x20\x77\x69\x74\x68\x20\x65\x6D\x62\x65\x64\x64\x65\x64\x20\x72\x65\x66\x65\x72\x65\x6E\x63\x65\x73\x20\x61\x72\x65\x20\x6E\x6F\x74\x20\x73\x75\x70\x70\x6F\x72\x74\x65\x64\x20\x69\x6E\x20\x74\x68\x69\x73\x20\x76\x65\x72\x73\x69\x6F\x6E\x20\x6F\x66\x20\x79\x6F\x75\x72\x20\x63\x6F\x6D\x70\x69\x6C\x65\x72\x2E"), true, NULL);
  1186. }
  1187. {
  1188. IsByRefLikeAttribute_t4ED9D8CF7709ED7300B718C603BBF8F8AF65EF38 * tmp = (IsByRefLikeAttribute_t4ED9D8CF7709ED7300B718C603BBF8F8AF65EF38 *)cache->attributes[2];
  1189. IsByRefLikeAttribute__ctor_m3F813C04C0FAF02B5AF712ED98929300CD6E44DD(tmp, NULL);
  1190. }
  1191. {
  1192. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[3];
  1193. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x54\x6F\x53\x74\x72\x69\x6E\x67\x28\x29\x2C\x72\x61\x77\x7D"), NULL);
  1194. }
  1195. {
  1196. DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 * tmp = (DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 *)cache->attributes[4];
  1197. DebuggerTypeProxyAttribute__ctor_mF05A9CF9DC4A3F95F05938CF6CBF45CC32CF5167(tmp, il2cpp_codegen_type_get_object(SpanDebugView_1_tAE55D0398405466119248AA583A26408BC07574D_0_0_0_var), NULL);
  1198. }
  1199. {
  1200. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[5];
  1201. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x54\x6F\x53\x74\x72\x69\x6E\x67\x28\x29\x2C\x72\x61\x77\x7D"), NULL);
  1202. }
  1203. {
  1204. DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 * tmp = (DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 *)cache->attributes[6];
  1205. DebuggerTypeProxyAttribute__ctor_mF05A9CF9DC4A3F95F05938CF6CBF45CC32CF5167(tmp, il2cpp_codegen_type_get_object(SpanDebugView_1_tAE55D0398405466119248AA583A26408BC07574D_0_0_0_var), NULL);
  1206. }
  1207. {
  1208. DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[7];
  1209. DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
  1210. }
  1211. }
  1212. static void ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1_Equals_m4E0677732D393AE971DDBFAC3BABDB1FEF72E48F(CustomAttributesCache* cache)
  1213. {
  1214. {
  1215. ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
  1216. ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x45\x71\x75\x61\x6C\x73\x28\x29\x20\x6F\x6E\x20\x52\x65\x61\x64\x4F\x6E\x6C\x79\x53\x70\x61\x6E\x20\x77\x69\x6C\x6C\x20\x61\x6C\x77\x61\x79\x73\x20\x74\x68\x72\x6F\x77\x20\x61\x6E\x20\x65\x78\x63\x65\x70\x74\x69\x6F\x6E\x2E\x20\x55\x73\x65\x20\x3D\x3D\x20\x69\x6E\x73\x74\x65\x61\x64\x2E"), NULL);
  1217. }
  1218. {
  1219. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[1];
  1220. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1221. }
  1222. }
  1223. static void ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1_GetHashCode_mE1476C5CFFFED8A3ECCFA2FA47F5EFD076234380(CustomAttributesCache* cache)
  1224. {
  1225. {
  1226. ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
  1227. ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x47\x65\x74\x48\x61\x73\x68\x43\x6F\x64\x65\x28\x29\x20\x6F\x6E\x20\x52\x65\x61\x64\x4F\x6E\x6C\x79\x53\x70\x61\x6E\x20\x77\x69\x6C\x6C\x20\x61\x6C\x77\x61\x79\x73\x20\x74\x68\x72\x6F\x77\x20\x61\x6E\x20\x65\x78\x63\x65\x70\x74\x69\x6F\x6E\x2E"), NULL);
  1228. }
  1229. {
  1230. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[1];
  1231. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1232. }
  1233. }
  1234. static void ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1__ctor_m041A23A6769451D078859283065C0D913DE709AD(CustomAttributesCache* cache)
  1235. {
  1236. {
  1237. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1238. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1239. }
  1240. }
  1241. static void ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1_GetPinnableReference_mCF48FA7ED135CDBA195D1A21EE543EB7C4584DE0(CustomAttributesCache* cache)
  1242. {
  1243. {
  1244. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
  1245. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1246. }
  1247. }
  1248. static void ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1_DangerousGetPinnableReference_m2A4C8683483CB89658BE05B8F78A8CBAF5661926(CustomAttributesCache* cache)
  1249. {
  1250. {
  1251. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
  1252. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1253. }
  1254. }
  1255. static void ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A____Item_PropertyInfo(CustomAttributesCache* cache)
  1256. {
  1257. {
  1258. IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 * tmp = (IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 *)cache->attributes[0];
  1259. IsReadOnlyAttribute__ctor_m07A8C937D13DE79AF8ED555F18E5AE9FDA6C3879(tmp, NULL);
  1260. }
  1261. }
  1262. static void Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1263. {
  1264. static bool s_Il2CppMethodInitialized;
  1265. if (!s_Il2CppMethodInitialized)
  1266. {
  1267. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpanDebugView_1_tAE55D0398405466119248AA583A26408BC07574D_0_0_0_var);
  1268. s_Il2CppMethodInitialized = true;
  1269. }
  1270. {
  1271. DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
  1272. DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
  1273. }
  1274. {
  1275. ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[1];
  1276. ObsoleteAttribute__ctor_m058D2B798E9AB7E7778A6DB04C3FE7011C660F4C(tmp, il2cpp_codegen_string_new_wrapper("\x54\x79\x70\x65\x73\x20\x77\x69\x74\x68\x20\x65\x6D\x62\x65\x64\x64\x65\x64\x20\x72\x65\x66\x65\x72\x65\x6E\x63\x65\x73\x20\x61\x72\x65\x20\x6E\x6F\x74\x20\x73\x75\x70\x70\x6F\x72\x74\x65\x64\x20\x69\x6E\x20\x74\x68\x69\x73\x20\x76\x65\x72\x73\x69\x6F\x6E\x20\x6F\x66\x20\x79\x6F\x75\x72\x20\x63\x6F\x6D\x70\x69\x6C\x65\x72\x2E"), true, NULL);
  1277. }
  1278. {
  1279. IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 * tmp = (IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 *)cache->attributes[2];
  1280. IsReadOnlyAttribute__ctor_m07A8C937D13DE79AF8ED555F18E5AE9FDA6C3879(tmp, NULL);
  1281. }
  1282. {
  1283. DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 * tmp = (DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 *)cache->attributes[3];
  1284. DebuggerTypeProxyAttribute__ctor_mF05A9CF9DC4A3F95F05938CF6CBF45CC32CF5167(tmp, il2cpp_codegen_type_get_object(SpanDebugView_1_tAE55D0398405466119248AA583A26408BC07574D_0_0_0_var), NULL);
  1285. }
  1286. {
  1287. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[4];
  1288. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x54\x6F\x53\x74\x72\x69\x6E\x67\x28\x29\x2C\x72\x61\x77\x7D"), NULL);
  1289. }
  1290. {
  1291. IsByRefLikeAttribute_t4ED9D8CF7709ED7300B718C603BBF8F8AF65EF38 * tmp = (IsByRefLikeAttribute_t4ED9D8CF7709ED7300B718C603BBF8F8AF65EF38 *)cache->attributes[5];
  1292. IsByRefLikeAttribute__ctor_m3F813C04C0FAF02B5AF712ED98929300CD6E44DD(tmp, NULL);
  1293. }
  1294. {
  1295. DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 * tmp = (DebuggerTypeProxyAttribute_t20C961369DAE0E16D87B752F1C04F16FC3B90014 *)cache->attributes[6];
  1296. DebuggerTypeProxyAttribute__ctor_mF05A9CF9DC4A3F95F05938CF6CBF45CC32CF5167(tmp, il2cpp_codegen_type_get_object(SpanDebugView_1_tAE55D0398405466119248AA583A26408BC07574D_0_0_0_var), NULL);
  1297. }
  1298. {
  1299. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[7];
  1300. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x54\x6F\x53\x74\x72\x69\x6E\x67\x28\x29\x2C\x72\x61\x77\x7D"), NULL);
  1301. }
  1302. }
  1303. static void Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator_Span_1_Equals_m7AC5C61F59E0058F90BE2508176A9444496E9BB4(CustomAttributesCache* cache)
  1304. {
  1305. {
  1306. ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
  1307. ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x45\x71\x75\x61\x6C\x73\x28\x29\x20\x6F\x6E\x20\x53\x70\x61\x6E\x20\x77\x69\x6C\x6C\x20\x61\x6C\x77\x61\x79\x73\x20\x74\x68\x72\x6F\x77\x20\x61\x6E\x20\x65\x78\x63\x65\x70\x74\x69\x6F\x6E\x2E\x20\x55\x73\x65\x20\x3D\x3D\x20\x69\x6E\x73\x74\x65\x61\x64\x2E"), NULL);
  1308. }
  1309. {
  1310. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[1];
  1311. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1312. }
  1313. }
  1314. static void Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator_Span_1_GetHashCode_m67EBA61FBC2662220A22FAC15C8589B255F65661(CustomAttributesCache* cache)
  1315. {
  1316. {
  1317. ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
  1318. ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x47\x65\x74\x48\x61\x73\x68\x43\x6F\x64\x65\x28\x29\x20\x6F\x6E\x20\x53\x70\x61\x6E\x20\x77\x69\x6C\x6C\x20\x61\x6C\x77\x61\x79\x73\x20\x74\x68\x72\x6F\x77\x20\x61\x6E\x20\x65\x78\x63\x65\x70\x74\x69\x6F\x6E\x2E"), NULL);
  1319. }
  1320. {
  1321. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[1];
  1322. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1323. }
  1324. }
  1325. static void Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator_Span_1__ctor_mC38F36EE6D107CA80CC371BC3DD5085F0FC70CA5(CustomAttributesCache* cache)
  1326. {
  1327. {
  1328. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1329. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1330. }
  1331. }
  1332. static void Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator_Span_1_GetPinnableReference_m12E29D9257A51D51D0C557F2E8C9D5171F6217C5(CustomAttributesCache* cache)
  1333. {
  1334. {
  1335. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
  1336. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1337. }
  1338. }
  1339. static void Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator_Span_1_DangerousGetPinnableReference_m597C69538B56DF1CF19A88B3F3F069C7245D1650(CustomAttributesCache* cache)
  1340. {
  1341. {
  1342. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
  1343. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1344. }
  1345. }
  1346. static void SpanHelpers_t43B4372273814AD441D829F43044F265A20EB152_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1347. {
  1348. {
  1349. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1350. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1351. }
  1352. }
  1353. static void SpanHelpers_t43B4372273814AD441D829F43044F265A20EB152_CustomAttributesCacheGenerator_SpanHelpers_Add_m35A3F01E2E438FCF3C4B7CDDAF63310D169F4CFC(CustomAttributesCache* cache)
  1354. {
  1355. {
  1356. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1357. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1358. }
  1359. }
  1360. static void SpanHelpers_t43B4372273814AD441D829F43044F265A20EB152_CustomAttributesCacheGenerator_SpanHelpers_LessThanEqual_mCFA5E9CC05F428B1EDA65967FEF81267F917E88C(CustomAttributesCache* cache)
  1361. {
  1362. {
  1363. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1364. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1365. }
  1366. }
  1367. static void SR_t94D205E4C64F03235C41D368F8B5C3D4840D03CF_CustomAttributesCacheGenerator_U3CResourceTypeU3Ek__BackingField(CustomAttributesCache* cache)
  1368. {
  1369. {
  1370. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1371. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1372. }
  1373. }
  1374. static void SR_t94D205E4C64F03235C41D368F8B5C3D4840D03CF_CustomAttributesCacheGenerator_SR_get_ResourceType_mA677195FD1721150495B84739EFFDCB9366A5541(CustomAttributesCache* cache)
  1375. {
  1376. {
  1377. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1378. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1379. }
  1380. }
  1381. static void StandardFormat_tB5005E6AF2D93B04019AB36BA6FA33F29CB45E12_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1382. {
  1383. {
  1384. IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 * tmp = (IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9 *)cache->attributes[0];
  1385. IsReadOnlyAttribute__ctor_m07A8C937D13DE79AF8ED555F18E5AE9FDA6C3879(tmp, NULL);
  1386. }
  1387. }
  1388. static void MemoryHandle_t32246FDA186EE62ADBC37E8AE98087BF6330429C_CustomAttributesCacheGenerator_MemoryHandle__ctor_mD254CBC13788969FCC315DF2B1C8615A945F18B3(CustomAttributesCache* cache)
  1389. {
  1390. {
  1391. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1392. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1393. }
  1394. }
  1395. static void MemoryHandle_t32246FDA186EE62ADBC37E8AE98087BF6330429C_CustomAttributesCacheGenerator_MemoryHandle_t32246FDA186EE62ADBC37E8AE98087BF6330429C____Pointer_PropertyInfo(CustomAttributesCache* cache)
  1396. {
  1397. {
  1398. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1399. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1400. }
  1401. }
  1402. static void Utf8Formatter_t40DEB6F6F7963F03A97169CEE107888F2B29B591_CustomAttributesCacheGenerator_Utf8Formatter_TryFormat_m3139B60B61A7398CAD4FCAF2A1E1811AAFFE80B6(CustomAttributesCache* cache)
  1403. {
  1404. {
  1405. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1406. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1407. }
  1408. }
  1409. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReverseEndianness_m8FF291C24CD2A9FA658A1370AFF29E94FCA8BAC7(CustomAttributesCache* cache)
  1410. {
  1411. {
  1412. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1413. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1414. }
  1415. }
  1416. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReverseEndianness_m7C562C76F215F77432B9600686CB25A54E88CC20(CustomAttributesCache* cache)
  1417. {
  1418. {
  1419. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1420. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1421. }
  1422. }
  1423. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReverseEndianness_m6268D4E81221B0851A9F12D3446F3B488B804696(CustomAttributesCache* cache)
  1424. {
  1425. {
  1426. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1427. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1428. }
  1429. }
  1430. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt16BigEndian_m2CF82FDFFF0DB717A575FF6898073AB5E2389626(CustomAttributesCache* cache)
  1431. {
  1432. {
  1433. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1434. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1435. }
  1436. }
  1437. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt32BigEndian_mB52DF5BA20846D5423BE20749F33AEAD2DD64063(CustomAttributesCache* cache)
  1438. {
  1439. {
  1440. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1441. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1442. }
  1443. }
  1444. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt64BigEndian_m1BB46883E6AC063C3CAEDF1B7792B1B01AE221A4(CustomAttributesCache* cache)
  1445. {
  1446. {
  1447. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1448. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1449. }
  1450. }
  1451. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt16LittleEndian_m2FE472C1E577A454D859FAD3233075D7482CA14B(CustomAttributesCache* cache)
  1452. {
  1453. {
  1454. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1455. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1456. }
  1457. }
  1458. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt32LittleEndian_mEE46641BC73CAACA64F2952CD791BE96F5DB44F4(CustomAttributesCache* cache)
  1459. {
  1460. {
  1461. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1462. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1463. }
  1464. }
  1465. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt64LittleEndian_m48F9AEE3848A21C018BB45F2D4A275497D824DD5(CustomAttributesCache* cache)
  1466. {
  1467. {
  1468. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1469. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1470. }
  1471. }
  1472. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_WriteUInt16BigEndian_mE41F4661B3C514F338282F2C2B9CA9525D9B1E5A(CustomAttributesCache* cache)
  1473. {
  1474. {
  1475. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1476. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1477. }
  1478. }
  1479. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_WriteUInt32BigEndian_m9EB6A671EA25CC201F502FA157F3B0514364714D(CustomAttributesCache* cache)
  1480. {
  1481. {
  1482. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1483. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1484. }
  1485. }
  1486. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_WriteUInt16LittleEndian_m3A4CDF3029F0F20A75CD62A44F07909980472FC5(CustomAttributesCache* cache)
  1487. {
  1488. {
  1489. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1490. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1491. }
  1492. }
  1493. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_WriteUInt32LittleEndian_m3287950DDEAF58E0CB38C821C2C449A29A7E40AD(CustomAttributesCache* cache)
  1494. {
  1495. {
  1496. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1497. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1498. }
  1499. }
  1500. static void BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_WriteUInt64LittleEndian_m4E27EC6B15226FD87A93FB5B59C6840DE3807F41(CustomAttributesCache* cache)
  1501. {
  1502. {
  1503. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1504. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1505. }
  1506. }
  1507. static void U3CPrivateImplementationDetailsU3E_t2BE371A826DE714388CB1A6D368F18406BAB06B2_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1508. {
  1509. {
  1510. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1511. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1512. }
  1513. }
  1514. IL2CPP_EXTERN_C const CustomAttributesCacheGenerator g_System_Memory_AttributeGenerators[];
  1515. const CustomAttributesCacheGenerator g_System_Memory_AttributeGenerators[62] =
  1516. {
  1517. EmbeddedAttribute_t9B89B1C38B332E83EF5D9D1D6F6088C7AC3E6EFB_CustomAttributesCacheGenerator,
  1518. IsReadOnlyAttribute_tEE4069DE19AA2D2FEF7D3142EAE79311F7BB26E9_CustomAttributesCacheGenerator,
  1519. IsByRefLikeAttribute_t4ED9D8CF7709ED7300B718C603BBF8F8AF65EF38_CustomAttributesCacheGenerator,
  1520. Memory_1_t9C3725E34DF7985E9AF7E72EB2926CD75E709E7A_CustomAttributesCacheGenerator,
  1521. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator,
  1522. ReadOnlyMemory_1_tAAA9CB78753D364C1C68F98E1112328AEB5C264A_CustomAttributesCacheGenerator,
  1523. ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator,
  1524. Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator,
  1525. SpanHelpers_t43B4372273814AD441D829F43044F265A20EB152_CustomAttributesCacheGenerator,
  1526. StandardFormat_tB5005E6AF2D93B04019AB36BA6FA33F29CB45E12_CustomAttributesCacheGenerator,
  1527. U3CPrivateImplementationDetailsU3E_t2BE371A826DE714388CB1A6D368F18406BAB06B2_CustomAttributesCacheGenerator,
  1528. SR_t94D205E4C64F03235C41D368F8B5C3D4840D03CF_CustomAttributesCacheGenerator_U3CResourceTypeU3Ek__BackingField,
  1529. Memory_1_t9C3725E34DF7985E9AF7E72EB2926CD75E709E7A_CustomAttributesCacheGenerator_Memory_1_Equals_m522D822A398E922AD847F3B46C7C164D604B1A80,
  1530. Memory_1_t9C3725E34DF7985E9AF7E72EB2926CD75E709E7A_CustomAttributesCacheGenerator_Memory_1_GetHashCode_m0BFFC68666502C040C24EC5F52850092AE4DC41B,
  1531. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_Trim_m1E95BA795E4986E05C21DA799B8817DC69153DFC,
  1532. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_TrimStart_m7F291DFFF7D1DFBED45698047A694A4678A4740E,
  1533. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_TrimEnd_m79AAB5B4F11DA4B1A7070BF6555E4C3078BF9BD3,
  1534. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_IndexOf_m8843D52ACA93EE0DFDF52051AFB8DC30093C4F0F,
  1535. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_SequenceEqual_mEB6F5A8BE8C38ED46DFD86FF8F7C0298F50E1EA5,
  1536. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_IndexOf_mF46A8EBA2CE37D500392B2D805EA3E518154E5EF,
  1537. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_SequenceEqual_m01769C5BF7A8393C3CF210FBA0919903AA2F6A77,
  1538. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_StartsWith_m8349C7D084BAF656FF5EDDFD1A06D17891861132,
  1539. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_Reverse_m53307122A7E928B4CFCDCC94AE2B474423214FB2,
  1540. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_AsSpan_mE3F7CC9D75681D0BD2FFF89C9F454C823A32013F,
  1541. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_AsSpan_m7664E3A71D276CBFB02E63C8719BA4AA0FAB2F86,
  1542. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_CopyTo_m31E5E6220849455BCB772B5B8559BE87A27BABD6,
  1543. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_AsSpan_mAD8ED5BB344BDBC17C54BA260B064AA6E4D82D2D,
  1544. MemoryExtensions_t3692531D647148747BC65C4610E740AEE9983A40_CustomAttributesCacheGenerator_MemoryExtensions_AsSpan_m7527C7806D1DD24C012DC60C12280A9E1AEA8F15,
  1545. ReadOnlyMemory_1_tAAA9CB78753D364C1C68F98E1112328AEB5C264A_CustomAttributesCacheGenerator_ReadOnlyMemory_1_Equals_m8C0D8A08A7F6461C53CCBCD6BCF25C68F88F6FA5,
  1546. ReadOnlyMemory_1_tAAA9CB78753D364C1C68F98E1112328AEB5C264A_CustomAttributesCacheGenerator_ReadOnlyMemory_1_GetHashCode_m7859EBDB70003685D7F99B1B2083588B97E90BB1,
  1547. ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1_Equals_m4E0677732D393AE971DDBFAC3BABDB1FEF72E48F,
  1548. ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1_GetHashCode_mE1476C5CFFFED8A3ECCFA2FA47F5EFD076234380,
  1549. ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1__ctor_m041A23A6769451D078859283065C0D913DE709AD,
  1550. ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1_GetPinnableReference_mCF48FA7ED135CDBA195D1A21EE543EB7C4584DE0,
  1551. ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1_DangerousGetPinnableReference_m2A4C8683483CB89658BE05B8F78A8CBAF5661926,
  1552. Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator_Span_1_Equals_m7AC5C61F59E0058F90BE2508176A9444496E9BB4,
  1553. Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator_Span_1_GetHashCode_m67EBA61FBC2662220A22FAC15C8589B255F65661,
  1554. Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator_Span_1__ctor_mC38F36EE6D107CA80CC371BC3DD5085F0FC70CA5,
  1555. Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator_Span_1_GetPinnableReference_m12E29D9257A51D51D0C557F2E8C9D5171F6217C5,
  1556. Span_1_t29D26F89843E87B7CC2784320D36D4B8FE7473EA_CustomAttributesCacheGenerator_Span_1_DangerousGetPinnableReference_m597C69538B56DF1CF19A88B3F3F069C7245D1650,
  1557. SpanHelpers_t43B4372273814AD441D829F43044F265A20EB152_CustomAttributesCacheGenerator_SpanHelpers_Add_m35A3F01E2E438FCF3C4B7CDDAF63310D169F4CFC,
  1558. SpanHelpers_t43B4372273814AD441D829F43044F265A20EB152_CustomAttributesCacheGenerator_SpanHelpers_LessThanEqual_mCFA5E9CC05F428B1EDA65967FEF81267F917E88C,
  1559. SR_t94D205E4C64F03235C41D368F8B5C3D4840D03CF_CustomAttributesCacheGenerator_SR_get_ResourceType_mA677195FD1721150495B84739EFFDCB9366A5541,
  1560. MemoryHandle_t32246FDA186EE62ADBC37E8AE98087BF6330429C_CustomAttributesCacheGenerator_MemoryHandle__ctor_mD254CBC13788969FCC315DF2B1C8615A945F18B3,
  1561. Utf8Formatter_t40DEB6F6F7963F03A97169CEE107888F2B29B591_CustomAttributesCacheGenerator_Utf8Formatter_TryFormat_m3139B60B61A7398CAD4FCAF2A1E1811AAFFE80B6,
  1562. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReverseEndianness_m8FF291C24CD2A9FA658A1370AFF29E94FCA8BAC7,
  1563. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReverseEndianness_m7C562C76F215F77432B9600686CB25A54E88CC20,
  1564. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReverseEndianness_m6268D4E81221B0851A9F12D3446F3B488B804696,
  1565. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt16BigEndian_m2CF82FDFFF0DB717A575FF6898073AB5E2389626,
  1566. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt32BigEndian_mB52DF5BA20846D5423BE20749F33AEAD2DD64063,
  1567. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt64BigEndian_m1BB46883E6AC063C3CAEDF1B7792B1B01AE221A4,
  1568. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt16LittleEndian_m2FE472C1E577A454D859FAD3233075D7482CA14B,
  1569. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt32LittleEndian_mEE46641BC73CAACA64F2952CD791BE96F5DB44F4,
  1570. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_ReadUInt64LittleEndian_m48F9AEE3848A21C018BB45F2D4A275497D824DD5,
  1571. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_WriteUInt16BigEndian_mE41F4661B3C514F338282F2C2B9CA9525D9B1E5A,
  1572. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_WriteUInt32BigEndian_m9EB6A671EA25CC201F502FA157F3B0514364714D,
  1573. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_WriteUInt16LittleEndian_m3A4CDF3029F0F20A75CD62A44F07909980472FC5,
  1574. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_WriteUInt32LittleEndian_m3287950DDEAF58E0CB38C821C2C449A29A7E40AD,
  1575. BinaryPrimitives_t1397D484B5501CC80CB2C442A0AC8FB552F346C6_CustomAttributesCacheGenerator_BinaryPrimitives_WriteUInt64LittleEndian_m4E27EC6B15226FD87A93FB5B59C6840DE3807F41,
  1576. ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A_CustomAttributesCacheGenerator_ReadOnlySpan_1_t4AA25E5C7C2203FE615BDE70B7AD517248A5CD0A____Item_PropertyInfo,
  1577. MemoryHandle_t32246FDA186EE62ADBC37E8AE98087BF6330429C_CustomAttributesCacheGenerator_MemoryHandle_t32246FDA186EE62ADBC37E8AE98087BF6330429C____Pointer_PropertyInfo,
  1578. System_Memory_CustomAttributesCacheGenerator,
  1579. };
  1580. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method)
  1581. {
  1582. {
  1583. bool L_0 = ___value0;
  1584. __this->set_m_wrapNonExceptionThrows_0(L_0);
  1585. return;
  1586. }
  1587. }