AOTGenericReferences.cs 194 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202
  1. using System.Collections.Generic;
  2. public class AOTGenericReferences : UnityEngine.MonoBehaviour
  3. {
  4. // {{ AOT assemblies
  5. public static readonly IReadOnlyList<string> PatchedAOTAssemblyList = new List<string>
  6. {
  7. "LitJson.dll",
  8. "LitMotion.dll",
  9. "MemoryPack.Core.dll",
  10. "Newtonsoft.Json.dll",
  11. "Obfuz.Runtime.dll",
  12. "System.Core.dll",
  13. "System.Runtime.CompilerServices.Unsafe.dll",
  14. "System.dll",
  15. "Unity.TextMeshPro.dll",
  16. "UnityEngine.AndroidJNIModule.dll",
  17. "UnityEngine.AssetBundleModule.dll",
  18. "UnityEngine.CoreModule.dll",
  19. "UnityEngine.JSONSerializeModule.dll",
  20. "com.alelievr.NodeGraphProcessor.Runtime.dll",
  21. "mscorlib.dll",
  22. };
  23. // }}
  24. // {{ constraint implement type
  25. // }}
  26. // {{ AOT generic types
  27. // $A.$S<$A.$s>
  28. // GraphProcessor.ICreateNodeFrom<object>
  29. // LitMotion.IMotionAdapter<UnityEngine.Vector3,LitMotion.NoOptions>
  30. // LitMotion.MotionBuilder<UnityEngine.Vector3,LitMotion.NoOptions,LitMotion.Adapters.Vector3MotionAdapter>
  31. // LitMotion.MotionBuilderBuffer<UnityEngine.Vector3,LitMotion.NoOptions>
  32. // MemoryPack.Formatters.ArrayFormatter<object>
  33. // MemoryPack.Formatters.ListFormatter<int>
  34. // MemoryPack.Formatters.ListFormatter<object>
  35. // MemoryPack.Formatters.UnmanagedFormatter<int>
  36. // MemoryPack.IMemoryPackFormatter<int>
  37. // MemoryPack.IMemoryPackFormatter<object>
  38. // MemoryPack.IMemoryPackable<object>
  39. // MemoryPack.MemoryPackFormatter<int>
  40. // MemoryPack.MemoryPackFormatter<object>
  41. // System.Action<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  42. // System.Action<Core.BattleReport.ReportFightMassgeLogData>
  43. // System.Action<Excel2Json.AttributeConfig>
  44. // System.Action<Excel2Json.BigMapConfig>
  45. // System.Action<Excel2Json.BuffConfig>
  46. // System.Action<Excel2Json.ChanllegeResource>
  47. // System.Action<Excel2Json.ChanllegeTower>
  48. // System.Action<Excel2Json.DaoyouGiftConfig>
  49. // System.Action<Excel2Json.DaoyouLevelupConfig>
  50. // System.Action<Excel2Json.DaoyouModelConfig>
  51. // System.Action<Excel2Json.DaoyouguajiResourcLevel>
  52. // System.Action<Excel2Json.DivineSenseConfig>
  53. // System.Action<Excel2Json.DropConfig>
  54. // System.Action<Excel2Json.DropCountConfig>
  55. // System.Action<Excel2Json.DropGroupConfig>
  56. // System.Action<Excel2Json.DropItemConfig>
  57. // System.Action<Excel2Json.EventConditionConfig>
  58. // System.Action<Excel2Json.EventConfig>
  59. // System.Action<Excel2Json.EventLinkConfig>
  60. // System.Action<Excel2Json.EventNPC>
  61. // System.Action<Excel2Json.FabaoConfig>
  62. // System.Action<Excel2Json.FabaoPowerupConfig>
  63. // System.Action<Excel2Json.GameConstantConfig>
  64. // System.Action<Excel2Json.GroupConfig>
  65. // System.Action<Excel2Json.HeroModelConfig>
  66. // System.Action<Excel2Json.HeroPowerUpConfig>
  67. // System.Action<Excel2Json.HeroQiangDuAddConfig>
  68. // System.Action<Excel2Json.InitialPlayerConfig>
  69. // System.Action<Excel2Json.ItemConfig>
  70. // System.Action<Excel2Json.LanguageChineseConfig>
  71. // System.Action<Excel2Json.LanguageChineseConfig_skill>
  72. // System.Action<Excel2Json.LevelSupressConfig>
  73. // System.Action<Excel2Json.LevelbattleConfig>
  74. // System.Action<Excel2Json.MitigationParaConfig>
  75. // System.Action<Excel2Json.MonsterPowerUpConfig>
  76. // System.Action<Excel2Json.OpenBoxConfig>
  77. // System.Action<Excel2Json.OpenBoxProgressReward>
  78. // System.Action<Excel2Json.OpenBoxScoreRule>
  79. // System.Action<Excel2Json.PlacesConfig>
  80. // System.Action<Excel2Json.PlayerGuideConfig>
  81. // System.Action<Excel2Json.QiankundaiConfig>
  82. // System.Action<Excel2Json.RandomNameListConfig>
  83. // System.Action<Excel2Json.ResourceLevelConfig>
  84. // System.Action<Excel2Json.SentimentConfig>
  85. // System.Action<Excel2Json.SentimentEffectConfig>
  86. // System.Action<Excel2Json.ShopConfig>
  87. // System.Action<Excel2Json.ShopGroupConfig>
  88. // System.Action<Excel2Json.ShopItemConfig>
  89. // System.Action<Excel2Json.SkillConfig>
  90. // System.Action<Excel2Json.SkillConstant>
  91. // System.Action<Excel2Json.SkillPowerupConfig>
  92. // System.Action<Excel2Json.SkiptoConfig>
  93. // System.Action<Excel2Json.SmallPlacesConfig>
  94. // System.Action<Excel2Json.TanxianConfig>
  95. // System.Action<Excel2Json.TowerConfig>
  96. // System.Action<Excel2Json.TowerInfoConfig>
  97. // System.Action<Excel2Json.UnlockConfig>
  98. // System.Action<Excel2Json.WorldMapConfig>
  99. // System.Action<Excel2Json.XianTuLogConfig>
  100. // System.Action<Excel2Json.daolvSkill>
  101. // System.Action<Excel2Json.emotionConfig>
  102. // System.Action<Excel2Json.guajibuff>
  103. // System.Action<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  104. // System.Action<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  105. // System.Action<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  106. // System.Action<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  107. // System.Action<MemoryPack.Internal.BufferSegment>
  108. // System.Action<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  109. // System.Action<System.Net.Sockets.Kcp.KcpSegment>
  110. // System.Action<System.Nullable<int>>
  111. // System.Action<UnityEngine.CombineInstance>
  112. // System.Action<UnityEngine.EventSystems.RaycastResult>
  113. // System.Action<UnityEngine.Matrix4x4>
  114. // System.Action<UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Rendering.Universal.RenderingData,object,UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.RenderTextureDescriptor>
  115. // System.Action<UnityEngine.Rendering.ScriptableRenderContext,object>
  116. // System.Action<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  117. // System.Action<UnityEngine.UIVertex>
  118. // System.Action<UnityEngine.Vector2>
  119. // System.Action<UnityEngine.Vector3>
  120. // System.Action<UnityEngine.Vector4>
  121. // System.Action<byte,int>
  122. // System.Action<byte>
  123. // System.Action<float>
  124. // System.Action<int,object>
  125. // System.Action<int>
  126. // System.Action<long>
  127. // System.Action<object,object,object,CombatLibrary.CombatLibrary.CombatCore.CustomizeTimeLogic.FxLogic.TriggerData,object>
  128. // System.Action<object,object,object>
  129. // System.Action<object,object>
  130. // System.Action<object>
  131. // System.ArraySegment.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  132. // System.ArraySegment.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  133. // System.ArraySegment.Enumerator<System.Net.Sockets.Kcp.KcpSegment>
  134. // System.ArraySegment.Enumerator<UnityEngine.Quaternion>
  135. // System.ArraySegment.Enumerator<UnityEngine.Vector3>
  136. // System.ArraySegment.Enumerator<UnityEngine.jvalue>
  137. // System.ArraySegment.Enumerator<byte>
  138. // System.ArraySegment.Enumerator<object>
  139. // System.ArraySegment.Enumerator<ushort>
  140. // System.ArraySegment<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  141. // System.ArraySegment<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  142. // System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>
  143. // System.ArraySegment<UnityEngine.Quaternion>
  144. // System.ArraySegment<UnityEngine.Vector3>
  145. // System.ArraySegment<UnityEngine.jvalue>
  146. // System.ArraySegment<byte>
  147. // System.ArraySegment<object>
  148. // System.ArraySegment<ushort>
  149. // System.Buffers.ArrayMemoryPool.ArrayMemoryPoolBuffer<byte>
  150. // System.Buffers.ArrayMemoryPool<byte>
  151. // System.Buffers.ArrayPool<System.Net.Sockets.Kcp.KcpSegment>
  152. // System.Buffers.ArrayPool<byte>
  153. // System.Buffers.ArrayPool<object>
  154. // System.Buffers.ConfigurableArrayPool.Bucket<System.Net.Sockets.Kcp.KcpSegment>
  155. // System.Buffers.ConfigurableArrayPool.Bucket<byte>
  156. // System.Buffers.ConfigurableArrayPool.Bucket<object>
  157. // System.Buffers.ConfigurableArrayPool<System.Net.Sockets.Kcp.KcpSegment>
  158. // System.Buffers.ConfigurableArrayPool<byte>
  159. // System.Buffers.ConfigurableArrayPool<object>
  160. // System.Buffers.IBufferWriter<byte>
  161. // System.Buffers.IMemoryOwner<byte>
  162. // System.Buffers.MemoryManager<byte>
  163. // System.Buffers.MemoryPool<byte>
  164. // System.Buffers.ReadOnlySequence.<>c<byte>
  165. // System.Buffers.ReadOnlySequence.Enumerator<byte>
  166. // System.Buffers.ReadOnlySequence<byte>
  167. // System.Buffers.ReadOnlySequenceSegment<byte>
  168. // System.Buffers.SpanAction<ushort,System.Buffers.ReadOnlySequence<ushort>>
  169. // System.Buffers.TlsOverPerCoreLockedStacksArrayPool.LockedStack<System.Net.Sockets.Kcp.KcpSegment>
  170. // System.Buffers.TlsOverPerCoreLockedStacksArrayPool.LockedStack<byte>
  171. // System.Buffers.TlsOverPerCoreLockedStacksArrayPool.LockedStack<object>
  172. // System.Buffers.TlsOverPerCoreLockedStacksArrayPool.PerCoreLockedStacks<System.Net.Sockets.Kcp.KcpSegment>
  173. // System.Buffers.TlsOverPerCoreLockedStacksArrayPool.PerCoreLockedStacks<byte>
  174. // System.Buffers.TlsOverPerCoreLockedStacksArrayPool.PerCoreLockedStacks<object>
  175. // System.Buffers.TlsOverPerCoreLockedStacksArrayPool<System.Net.Sockets.Kcp.KcpSegment>
  176. // System.Buffers.TlsOverPerCoreLockedStacksArrayPool<byte>
  177. // System.Buffers.TlsOverPerCoreLockedStacksArrayPool<object>
  178. // System.ByReference<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  179. // System.ByReference<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  180. // System.ByReference<UnityEngine.Quaternion>
  181. // System.ByReference<UnityEngine.Vector3>
  182. // System.ByReference<UnityEngine.jvalue>
  183. // System.ByReference<byte>
  184. // System.ByReference<ushort>
  185. // System.Collections.Concurrent.ConcurrentDictionary.<GetEnumerator>d__35<object,object>
  186. // System.Collections.Concurrent.ConcurrentDictionary.DictionaryEnumerator<object,object>
  187. // System.Collections.Concurrent.ConcurrentDictionary.Node<object,object>
  188. // System.Collections.Concurrent.ConcurrentDictionary.Tables<object,object>
  189. // System.Collections.Concurrent.ConcurrentDictionary<object,object>
  190. // System.Collections.Concurrent.ConcurrentQueue.<Enumerate>d__28<System.Net.Sockets.Kcp.KcpSegment>
  191. // System.Collections.Concurrent.ConcurrentQueue.<Enumerate>d__28<System.ValueTuple<uint,uint>>
  192. // System.Collections.Concurrent.ConcurrentQueue.<Enumerate>d__28<object>
  193. // System.Collections.Concurrent.ConcurrentQueue.Segment<System.Net.Sockets.Kcp.KcpSegment>
  194. // System.Collections.Concurrent.ConcurrentQueue.Segment<System.ValueTuple<uint,uint>>
  195. // System.Collections.Concurrent.ConcurrentQueue.Segment<object>
  196. // System.Collections.Concurrent.ConcurrentQueue<System.Net.Sockets.Kcp.KcpSegment>
  197. // System.Collections.Concurrent.ConcurrentQueue<System.ValueTuple<uint,uint>>
  198. // System.Collections.Concurrent.ConcurrentQueue<object>
  199. // System.Collections.Concurrent.ConcurrentStack.<GetEnumerator>d__35<object>
  200. // System.Collections.Concurrent.ConcurrentStack.Node<object>
  201. // System.Collections.Concurrent.ConcurrentStack<object>
  202. // System.Collections.Generic.ArraySortHelper<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  203. // System.Collections.Generic.ArraySortHelper<Core.BattleReport.ReportFightMassgeLogData>
  204. // System.Collections.Generic.ArraySortHelper<Excel2Json.AttributeConfig>
  205. // System.Collections.Generic.ArraySortHelper<Excel2Json.BigMapConfig>
  206. // System.Collections.Generic.ArraySortHelper<Excel2Json.BuffConfig>
  207. // System.Collections.Generic.ArraySortHelper<Excel2Json.ChanllegeResource>
  208. // System.Collections.Generic.ArraySortHelper<Excel2Json.ChanllegeTower>
  209. // System.Collections.Generic.ArraySortHelper<Excel2Json.DaoyouGiftConfig>
  210. // System.Collections.Generic.ArraySortHelper<Excel2Json.DaoyouLevelupConfig>
  211. // System.Collections.Generic.ArraySortHelper<Excel2Json.DaoyouModelConfig>
  212. // System.Collections.Generic.ArraySortHelper<Excel2Json.DaoyouguajiResourcLevel>
  213. // System.Collections.Generic.ArraySortHelper<Excel2Json.DivineSenseConfig>
  214. // System.Collections.Generic.ArraySortHelper<Excel2Json.DropConfig>
  215. // System.Collections.Generic.ArraySortHelper<Excel2Json.DropCountConfig>
  216. // System.Collections.Generic.ArraySortHelper<Excel2Json.DropGroupConfig>
  217. // System.Collections.Generic.ArraySortHelper<Excel2Json.DropItemConfig>
  218. // System.Collections.Generic.ArraySortHelper<Excel2Json.EventConditionConfig>
  219. // System.Collections.Generic.ArraySortHelper<Excel2Json.EventConfig>
  220. // System.Collections.Generic.ArraySortHelper<Excel2Json.EventLinkConfig>
  221. // System.Collections.Generic.ArraySortHelper<Excel2Json.EventNPC>
  222. // System.Collections.Generic.ArraySortHelper<Excel2Json.FabaoConfig>
  223. // System.Collections.Generic.ArraySortHelper<Excel2Json.FabaoPowerupConfig>
  224. // System.Collections.Generic.ArraySortHelper<Excel2Json.GameConstantConfig>
  225. // System.Collections.Generic.ArraySortHelper<Excel2Json.GroupConfig>
  226. // System.Collections.Generic.ArraySortHelper<Excel2Json.HeroModelConfig>
  227. // System.Collections.Generic.ArraySortHelper<Excel2Json.HeroPowerUpConfig>
  228. // System.Collections.Generic.ArraySortHelper<Excel2Json.HeroQiangDuAddConfig>
  229. // System.Collections.Generic.ArraySortHelper<Excel2Json.InitialPlayerConfig>
  230. // System.Collections.Generic.ArraySortHelper<Excel2Json.ItemConfig>
  231. // System.Collections.Generic.ArraySortHelper<Excel2Json.LanguageChineseConfig>
  232. // System.Collections.Generic.ArraySortHelper<Excel2Json.LanguageChineseConfig_skill>
  233. // System.Collections.Generic.ArraySortHelper<Excel2Json.LevelSupressConfig>
  234. // System.Collections.Generic.ArraySortHelper<Excel2Json.LevelbattleConfig>
  235. // System.Collections.Generic.ArraySortHelper<Excel2Json.MitigationParaConfig>
  236. // System.Collections.Generic.ArraySortHelper<Excel2Json.MonsterPowerUpConfig>
  237. // System.Collections.Generic.ArraySortHelper<Excel2Json.OpenBoxConfig>
  238. // System.Collections.Generic.ArraySortHelper<Excel2Json.OpenBoxProgressReward>
  239. // System.Collections.Generic.ArraySortHelper<Excel2Json.OpenBoxScoreRule>
  240. // System.Collections.Generic.ArraySortHelper<Excel2Json.PlacesConfig>
  241. // System.Collections.Generic.ArraySortHelper<Excel2Json.PlayerGuideConfig>
  242. // System.Collections.Generic.ArraySortHelper<Excel2Json.QiankundaiConfig>
  243. // System.Collections.Generic.ArraySortHelper<Excel2Json.RandomNameListConfig>
  244. // System.Collections.Generic.ArraySortHelper<Excel2Json.ResourceLevelConfig>
  245. // System.Collections.Generic.ArraySortHelper<Excel2Json.SentimentConfig>
  246. // System.Collections.Generic.ArraySortHelper<Excel2Json.SentimentEffectConfig>
  247. // System.Collections.Generic.ArraySortHelper<Excel2Json.ShopConfig>
  248. // System.Collections.Generic.ArraySortHelper<Excel2Json.ShopGroupConfig>
  249. // System.Collections.Generic.ArraySortHelper<Excel2Json.ShopItemConfig>
  250. // System.Collections.Generic.ArraySortHelper<Excel2Json.SkillConfig>
  251. // System.Collections.Generic.ArraySortHelper<Excel2Json.SkillConstant>
  252. // System.Collections.Generic.ArraySortHelper<Excel2Json.SkillPowerupConfig>
  253. // System.Collections.Generic.ArraySortHelper<Excel2Json.SkiptoConfig>
  254. // System.Collections.Generic.ArraySortHelper<Excel2Json.SmallPlacesConfig>
  255. // System.Collections.Generic.ArraySortHelper<Excel2Json.TanxianConfig>
  256. // System.Collections.Generic.ArraySortHelper<Excel2Json.TowerConfig>
  257. // System.Collections.Generic.ArraySortHelper<Excel2Json.TowerInfoConfig>
  258. // System.Collections.Generic.ArraySortHelper<Excel2Json.UnlockConfig>
  259. // System.Collections.Generic.ArraySortHelper<Excel2Json.WorldMapConfig>
  260. // System.Collections.Generic.ArraySortHelper<Excel2Json.XianTuLogConfig>
  261. // System.Collections.Generic.ArraySortHelper<Excel2Json.daolvSkill>
  262. // System.Collections.Generic.ArraySortHelper<Excel2Json.emotionConfig>
  263. // System.Collections.Generic.ArraySortHelper<Excel2Json.guajibuff>
  264. // System.Collections.Generic.ArraySortHelper<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  265. // System.Collections.Generic.ArraySortHelper<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  266. // System.Collections.Generic.ArraySortHelper<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  267. // System.Collections.Generic.ArraySortHelper<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  268. // System.Collections.Generic.ArraySortHelper<MemoryPack.Internal.BufferSegment>
  269. // System.Collections.Generic.ArraySortHelper<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  270. // System.Collections.Generic.ArraySortHelper<System.Net.Sockets.Kcp.KcpSegment>
  271. // System.Collections.Generic.ArraySortHelper<UnityEngine.CombineInstance>
  272. // System.Collections.Generic.ArraySortHelper<UnityEngine.EventSystems.RaycastResult>
  273. // System.Collections.Generic.ArraySortHelper<UnityEngine.Matrix4x4>
  274. // System.Collections.Generic.ArraySortHelper<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  275. // System.Collections.Generic.ArraySortHelper<UnityEngine.UIVertex>
  276. // System.Collections.Generic.ArraySortHelper<UnityEngine.Vector2>
  277. // System.Collections.Generic.ArraySortHelper<UnityEngine.Vector3>
  278. // System.Collections.Generic.ArraySortHelper<UnityEngine.Vector4>
  279. // System.Collections.Generic.ArraySortHelper<byte>
  280. // System.Collections.Generic.ArraySortHelper<float>
  281. // System.Collections.Generic.ArraySortHelper<int>
  282. // System.Collections.Generic.ArraySortHelper<long>
  283. // System.Collections.Generic.ArraySortHelper<object>
  284. // System.Collections.Generic.Comparer<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  285. // System.Collections.Generic.Comparer<Core.BattleReport.ReportFightMassgeLogData>
  286. // System.Collections.Generic.Comparer<Excel2Json.AttributeConfig>
  287. // System.Collections.Generic.Comparer<Excel2Json.BigMapConfig>
  288. // System.Collections.Generic.Comparer<Excel2Json.BuffConfig>
  289. // System.Collections.Generic.Comparer<Excel2Json.ChanllegeResource>
  290. // System.Collections.Generic.Comparer<Excel2Json.ChanllegeTower>
  291. // System.Collections.Generic.Comparer<Excel2Json.DaoyouGiftConfig>
  292. // System.Collections.Generic.Comparer<Excel2Json.DaoyouLevelupConfig>
  293. // System.Collections.Generic.Comparer<Excel2Json.DaoyouModelConfig>
  294. // System.Collections.Generic.Comparer<Excel2Json.DaoyouguajiResourcLevel>
  295. // System.Collections.Generic.Comparer<Excel2Json.DivineSenseConfig>
  296. // System.Collections.Generic.Comparer<Excel2Json.DropConfig>
  297. // System.Collections.Generic.Comparer<Excel2Json.DropCountConfig>
  298. // System.Collections.Generic.Comparer<Excel2Json.DropGroupConfig>
  299. // System.Collections.Generic.Comparer<Excel2Json.DropItemConfig>
  300. // System.Collections.Generic.Comparer<Excel2Json.EventConditionConfig>
  301. // System.Collections.Generic.Comparer<Excel2Json.EventConfig>
  302. // System.Collections.Generic.Comparer<Excel2Json.EventLinkConfig>
  303. // System.Collections.Generic.Comparer<Excel2Json.EventNPC>
  304. // System.Collections.Generic.Comparer<Excel2Json.FabaoConfig>
  305. // System.Collections.Generic.Comparer<Excel2Json.FabaoPowerupConfig>
  306. // System.Collections.Generic.Comparer<Excel2Json.GameConstantConfig>
  307. // System.Collections.Generic.Comparer<Excel2Json.GroupConfig>
  308. // System.Collections.Generic.Comparer<Excel2Json.HeroModelConfig>
  309. // System.Collections.Generic.Comparer<Excel2Json.HeroPowerUpConfig>
  310. // System.Collections.Generic.Comparer<Excel2Json.HeroQiangDuAddConfig>
  311. // System.Collections.Generic.Comparer<Excel2Json.InitialPlayerConfig>
  312. // System.Collections.Generic.Comparer<Excel2Json.ItemConfig>
  313. // System.Collections.Generic.Comparer<Excel2Json.LanguageChineseConfig>
  314. // System.Collections.Generic.Comparer<Excel2Json.LanguageChineseConfig_skill>
  315. // System.Collections.Generic.Comparer<Excel2Json.LevelSupressConfig>
  316. // System.Collections.Generic.Comparer<Excel2Json.LevelbattleConfig>
  317. // System.Collections.Generic.Comparer<Excel2Json.MitigationParaConfig>
  318. // System.Collections.Generic.Comparer<Excel2Json.MonsterPowerUpConfig>
  319. // System.Collections.Generic.Comparer<Excel2Json.OpenBoxConfig>
  320. // System.Collections.Generic.Comparer<Excel2Json.OpenBoxProgressReward>
  321. // System.Collections.Generic.Comparer<Excel2Json.OpenBoxScoreRule>
  322. // System.Collections.Generic.Comparer<Excel2Json.PlacesConfig>
  323. // System.Collections.Generic.Comparer<Excel2Json.PlayerGuideConfig>
  324. // System.Collections.Generic.Comparer<Excel2Json.QiankundaiConfig>
  325. // System.Collections.Generic.Comparer<Excel2Json.RandomNameListConfig>
  326. // System.Collections.Generic.Comparer<Excel2Json.ResourceLevelConfig>
  327. // System.Collections.Generic.Comparer<Excel2Json.SentimentConfig>
  328. // System.Collections.Generic.Comparer<Excel2Json.SentimentEffectConfig>
  329. // System.Collections.Generic.Comparer<Excel2Json.ShopConfig>
  330. // System.Collections.Generic.Comparer<Excel2Json.ShopGroupConfig>
  331. // System.Collections.Generic.Comparer<Excel2Json.ShopItemConfig>
  332. // System.Collections.Generic.Comparer<Excel2Json.SkillConfig>
  333. // System.Collections.Generic.Comparer<Excel2Json.SkillConstant>
  334. // System.Collections.Generic.Comparer<Excel2Json.SkillPowerupConfig>
  335. // System.Collections.Generic.Comparer<Excel2Json.SkiptoConfig>
  336. // System.Collections.Generic.Comparer<Excel2Json.SmallPlacesConfig>
  337. // System.Collections.Generic.Comparer<Excel2Json.TanxianConfig>
  338. // System.Collections.Generic.Comparer<Excel2Json.TowerConfig>
  339. // System.Collections.Generic.Comparer<Excel2Json.TowerInfoConfig>
  340. // System.Collections.Generic.Comparer<Excel2Json.UnlockConfig>
  341. // System.Collections.Generic.Comparer<Excel2Json.WorldMapConfig>
  342. // System.Collections.Generic.Comparer<Excel2Json.XianTuLogConfig>
  343. // System.Collections.Generic.Comparer<Excel2Json.daolvSkill>
  344. // System.Collections.Generic.Comparer<Excel2Json.emotionConfig>
  345. // System.Collections.Generic.Comparer<Excel2Json.guajibuff>
  346. // System.Collections.Generic.Comparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  347. // System.Collections.Generic.Comparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  348. // System.Collections.Generic.Comparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  349. // System.Collections.Generic.Comparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  350. // System.Collections.Generic.Comparer<MemoryPack.Internal.BufferSegment>
  351. // System.Collections.Generic.Comparer<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  352. // System.Collections.Generic.Comparer<System.Collections.Generic.KeyValuePair<long,object>>
  353. // System.Collections.Generic.Comparer<System.Collections.Generic.KeyValuePair<object,object>>
  354. // System.Collections.Generic.Comparer<System.Net.Sockets.Kcp.KcpSegment>
  355. // System.Collections.Generic.Comparer<UnityEngine.CombineInstance>
  356. // System.Collections.Generic.Comparer<UnityEngine.EventSystems.RaycastResult>
  357. // System.Collections.Generic.Comparer<UnityEngine.Matrix4x4>
  358. // System.Collections.Generic.Comparer<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  359. // System.Collections.Generic.Comparer<UnityEngine.UIVertex>
  360. // System.Collections.Generic.Comparer<UnityEngine.Vector2>
  361. // System.Collections.Generic.Comparer<UnityEngine.Vector3>
  362. // System.Collections.Generic.Comparer<UnityEngine.Vector4>
  363. // System.Collections.Generic.Comparer<byte>
  364. // System.Collections.Generic.Comparer<float>
  365. // System.Collections.Generic.Comparer<int>
  366. // System.Collections.Generic.Comparer<long>
  367. // System.Collections.Generic.Comparer<object>
  368. // System.Collections.Generic.Comparer<uint>
  369. // System.Collections.Generic.Dictionary.Enumerator<UnityEngine.Vector3,object>
  370. // System.Collections.Generic.Dictionary.Enumerator<int,UnityEngine.RenderInstancedDataLayout>
  371. // System.Collections.Generic.Dictionary.Enumerator<int,long>
  372. // System.Collections.Generic.Dictionary.Enumerator<int,object>
  373. // System.Collections.Generic.Dictionary.Enumerator<long,object>
  374. // System.Collections.Generic.Dictionary.Enumerator<object,int>
  375. // System.Collections.Generic.Dictionary.Enumerator<object,object>
  376. // System.Collections.Generic.Dictionary.Enumerator<uint,object>
  377. // System.Collections.Generic.Dictionary.KeyCollection.Enumerator<UnityEngine.Vector3,object>
  378. // System.Collections.Generic.Dictionary.KeyCollection.Enumerator<int,UnityEngine.RenderInstancedDataLayout>
  379. // System.Collections.Generic.Dictionary.KeyCollection.Enumerator<int,long>
  380. // System.Collections.Generic.Dictionary.KeyCollection.Enumerator<int,object>
  381. // System.Collections.Generic.Dictionary.KeyCollection.Enumerator<long,object>
  382. // System.Collections.Generic.Dictionary.KeyCollection.Enumerator<object,int>
  383. // System.Collections.Generic.Dictionary.KeyCollection.Enumerator<object,object>
  384. // System.Collections.Generic.Dictionary.KeyCollection.Enumerator<uint,object>
  385. // System.Collections.Generic.Dictionary.KeyCollection<UnityEngine.Vector3,object>
  386. // System.Collections.Generic.Dictionary.KeyCollection<int,UnityEngine.RenderInstancedDataLayout>
  387. // System.Collections.Generic.Dictionary.KeyCollection<int,long>
  388. // System.Collections.Generic.Dictionary.KeyCollection<int,object>
  389. // System.Collections.Generic.Dictionary.KeyCollection<long,object>
  390. // System.Collections.Generic.Dictionary.KeyCollection<object,int>
  391. // System.Collections.Generic.Dictionary.KeyCollection<object,object>
  392. // System.Collections.Generic.Dictionary.KeyCollection<uint,object>
  393. // System.Collections.Generic.Dictionary.ValueCollection.Enumerator<UnityEngine.Vector3,object>
  394. // System.Collections.Generic.Dictionary.ValueCollection.Enumerator<int,UnityEngine.RenderInstancedDataLayout>
  395. // System.Collections.Generic.Dictionary.ValueCollection.Enumerator<int,long>
  396. // System.Collections.Generic.Dictionary.ValueCollection.Enumerator<int,object>
  397. // System.Collections.Generic.Dictionary.ValueCollection.Enumerator<long,object>
  398. // System.Collections.Generic.Dictionary.ValueCollection.Enumerator<object,int>
  399. // System.Collections.Generic.Dictionary.ValueCollection.Enumerator<object,object>
  400. // System.Collections.Generic.Dictionary.ValueCollection.Enumerator<uint,object>
  401. // System.Collections.Generic.Dictionary.ValueCollection<UnityEngine.Vector3,object>
  402. // System.Collections.Generic.Dictionary.ValueCollection<int,UnityEngine.RenderInstancedDataLayout>
  403. // System.Collections.Generic.Dictionary.ValueCollection<int,long>
  404. // System.Collections.Generic.Dictionary.ValueCollection<int,object>
  405. // System.Collections.Generic.Dictionary.ValueCollection<long,object>
  406. // System.Collections.Generic.Dictionary.ValueCollection<object,int>
  407. // System.Collections.Generic.Dictionary.ValueCollection<object,object>
  408. // System.Collections.Generic.Dictionary.ValueCollection<uint,object>
  409. // System.Collections.Generic.Dictionary<UnityEngine.Vector3,object>
  410. // System.Collections.Generic.Dictionary<int,UnityEngine.RenderInstancedDataLayout>
  411. // System.Collections.Generic.Dictionary<int,long>
  412. // System.Collections.Generic.Dictionary<int,object>
  413. // System.Collections.Generic.Dictionary<long,object>
  414. // System.Collections.Generic.Dictionary<object,int>
  415. // System.Collections.Generic.Dictionary<object,object>
  416. // System.Collections.Generic.Dictionary<uint,object>
  417. // System.Collections.Generic.EqualityComparer<Excel2Json.FabaoPowerupConfig>
  418. // System.Collections.Generic.EqualityComparer<System.IntPtr>
  419. // System.Collections.Generic.EqualityComparer<System.Net.Sockets.Kcp.KcpSegment>
  420. // System.Collections.Generic.EqualityComparer<UnityEngine.Matrix4x4>
  421. // System.Collections.Generic.EqualityComparer<UnityEngine.RenderInstancedDataLayout>
  422. // System.Collections.Generic.EqualityComparer<UnityEngine.Vector3>
  423. // System.Collections.Generic.EqualityComparer<UnityEngine.Vector4>
  424. // System.Collections.Generic.EqualityComparer<float>
  425. // System.Collections.Generic.EqualityComparer<int>
  426. // System.Collections.Generic.EqualityComparer<long>
  427. // System.Collections.Generic.EqualityComparer<object>
  428. // System.Collections.Generic.EqualityComparer<uint>
  429. // System.Collections.Generic.HashSet.Enumerator<System.IntPtr>
  430. // System.Collections.Generic.HashSet.Enumerator<int>
  431. // System.Collections.Generic.HashSet.Enumerator<object>
  432. // System.Collections.Generic.HashSet<System.IntPtr>
  433. // System.Collections.Generic.HashSet<int>
  434. // System.Collections.Generic.HashSet<object>
  435. // System.Collections.Generic.HashSetEqualityComparer<System.IntPtr>
  436. // System.Collections.Generic.HashSetEqualityComparer<int>
  437. // System.Collections.Generic.HashSetEqualityComparer<object>
  438. // System.Collections.Generic.ICollection<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  439. // System.Collections.Generic.ICollection<Core.BattleReport.ReportFightMassgeLogData>
  440. // System.Collections.Generic.ICollection<Excel2Json.AttributeConfig>
  441. // System.Collections.Generic.ICollection<Excel2Json.BigMapConfig>
  442. // System.Collections.Generic.ICollection<Excel2Json.BuffConfig>
  443. // System.Collections.Generic.ICollection<Excel2Json.ChanllegeResource>
  444. // System.Collections.Generic.ICollection<Excel2Json.ChanllegeTower>
  445. // System.Collections.Generic.ICollection<Excel2Json.DaoyouGiftConfig>
  446. // System.Collections.Generic.ICollection<Excel2Json.DaoyouLevelupConfig>
  447. // System.Collections.Generic.ICollection<Excel2Json.DaoyouModelConfig>
  448. // System.Collections.Generic.ICollection<Excel2Json.DaoyouguajiResourcLevel>
  449. // System.Collections.Generic.ICollection<Excel2Json.DivineSenseConfig>
  450. // System.Collections.Generic.ICollection<Excel2Json.DropConfig>
  451. // System.Collections.Generic.ICollection<Excel2Json.DropCountConfig>
  452. // System.Collections.Generic.ICollection<Excel2Json.DropGroupConfig>
  453. // System.Collections.Generic.ICollection<Excel2Json.DropItemConfig>
  454. // System.Collections.Generic.ICollection<Excel2Json.EventConditionConfig>
  455. // System.Collections.Generic.ICollection<Excel2Json.EventConfig>
  456. // System.Collections.Generic.ICollection<Excel2Json.EventLinkConfig>
  457. // System.Collections.Generic.ICollection<Excel2Json.EventNPC>
  458. // System.Collections.Generic.ICollection<Excel2Json.FabaoConfig>
  459. // System.Collections.Generic.ICollection<Excel2Json.FabaoPowerupConfig>
  460. // System.Collections.Generic.ICollection<Excel2Json.GameConstantConfig>
  461. // System.Collections.Generic.ICollection<Excel2Json.GroupConfig>
  462. // System.Collections.Generic.ICollection<Excel2Json.HeroModelConfig>
  463. // System.Collections.Generic.ICollection<Excel2Json.HeroPowerUpConfig>
  464. // System.Collections.Generic.ICollection<Excel2Json.HeroQiangDuAddConfig>
  465. // System.Collections.Generic.ICollection<Excel2Json.InitialPlayerConfig>
  466. // System.Collections.Generic.ICollection<Excel2Json.ItemConfig>
  467. // System.Collections.Generic.ICollection<Excel2Json.LanguageChineseConfig>
  468. // System.Collections.Generic.ICollection<Excel2Json.LanguageChineseConfig_skill>
  469. // System.Collections.Generic.ICollection<Excel2Json.LevelSupressConfig>
  470. // System.Collections.Generic.ICollection<Excel2Json.LevelbattleConfig>
  471. // System.Collections.Generic.ICollection<Excel2Json.MitigationParaConfig>
  472. // System.Collections.Generic.ICollection<Excel2Json.MonsterPowerUpConfig>
  473. // System.Collections.Generic.ICollection<Excel2Json.OpenBoxConfig>
  474. // System.Collections.Generic.ICollection<Excel2Json.OpenBoxProgressReward>
  475. // System.Collections.Generic.ICollection<Excel2Json.OpenBoxScoreRule>
  476. // System.Collections.Generic.ICollection<Excel2Json.PlacesConfig>
  477. // System.Collections.Generic.ICollection<Excel2Json.PlayerGuideConfig>
  478. // System.Collections.Generic.ICollection<Excel2Json.QiankundaiConfig>
  479. // System.Collections.Generic.ICollection<Excel2Json.RandomNameListConfig>
  480. // System.Collections.Generic.ICollection<Excel2Json.ResourceLevelConfig>
  481. // System.Collections.Generic.ICollection<Excel2Json.SentimentConfig>
  482. // System.Collections.Generic.ICollection<Excel2Json.SentimentEffectConfig>
  483. // System.Collections.Generic.ICollection<Excel2Json.ShopConfig>
  484. // System.Collections.Generic.ICollection<Excel2Json.ShopGroupConfig>
  485. // System.Collections.Generic.ICollection<Excel2Json.ShopItemConfig>
  486. // System.Collections.Generic.ICollection<Excel2Json.SkillConfig>
  487. // System.Collections.Generic.ICollection<Excel2Json.SkillConstant>
  488. // System.Collections.Generic.ICollection<Excel2Json.SkillPowerupConfig>
  489. // System.Collections.Generic.ICollection<Excel2Json.SkiptoConfig>
  490. // System.Collections.Generic.ICollection<Excel2Json.SmallPlacesConfig>
  491. // System.Collections.Generic.ICollection<Excel2Json.TanxianConfig>
  492. // System.Collections.Generic.ICollection<Excel2Json.TowerConfig>
  493. // System.Collections.Generic.ICollection<Excel2Json.TowerInfoConfig>
  494. // System.Collections.Generic.ICollection<Excel2Json.UnlockConfig>
  495. // System.Collections.Generic.ICollection<Excel2Json.WorldMapConfig>
  496. // System.Collections.Generic.ICollection<Excel2Json.XianTuLogConfig>
  497. // System.Collections.Generic.ICollection<Excel2Json.daolvSkill>
  498. // System.Collections.Generic.ICollection<Excel2Json.emotionConfig>
  499. // System.Collections.Generic.ICollection<Excel2Json.guajibuff>
  500. // System.Collections.Generic.ICollection<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  501. // System.Collections.Generic.ICollection<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  502. // System.Collections.Generic.ICollection<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  503. // System.Collections.Generic.ICollection<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  504. // System.Collections.Generic.ICollection<MemoryPack.Internal.BufferSegment>
  505. // System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<UnityEngine.Vector3,object>>
  506. // System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<int,UnityEngine.RenderInstancedDataLayout>>
  507. // System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  508. // System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<int,float>>
  509. // System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<int,int>>
  510. // System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<int,long>>
  511. // System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<int,object>>
  512. // System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<long,object>>
  513. // System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<object,int>>
  514. // System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<object,object>>
  515. // System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<uint,object>>
  516. // System.Collections.Generic.ICollection<System.IntPtr>
  517. // System.Collections.Generic.ICollection<System.Net.Sockets.Kcp.KcpSegment>
  518. // System.Collections.Generic.ICollection<System.ValueTuple<uint,uint>>
  519. // System.Collections.Generic.ICollection<UnityEngine.CombineInstance>
  520. // System.Collections.Generic.ICollection<UnityEngine.EventSystems.RaycastResult>
  521. // System.Collections.Generic.ICollection<UnityEngine.Matrix4x4>
  522. // System.Collections.Generic.ICollection<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  523. // System.Collections.Generic.ICollection<UnityEngine.UIVertex>
  524. // System.Collections.Generic.ICollection<UnityEngine.Vector2>
  525. // System.Collections.Generic.ICollection<UnityEngine.Vector3>
  526. // System.Collections.Generic.ICollection<UnityEngine.Vector4>
  527. // System.Collections.Generic.ICollection<byte>
  528. // System.Collections.Generic.ICollection<float>
  529. // System.Collections.Generic.ICollection<int>
  530. // System.Collections.Generic.ICollection<long>
  531. // System.Collections.Generic.ICollection<object>
  532. // System.Collections.Generic.IComparer<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  533. // System.Collections.Generic.IComparer<Core.BattleReport.ReportFightMassgeLogData>
  534. // System.Collections.Generic.IComparer<Excel2Json.AttributeConfig>
  535. // System.Collections.Generic.IComparer<Excel2Json.BigMapConfig>
  536. // System.Collections.Generic.IComparer<Excel2Json.BuffConfig>
  537. // System.Collections.Generic.IComparer<Excel2Json.ChanllegeResource>
  538. // System.Collections.Generic.IComparer<Excel2Json.ChanllegeTower>
  539. // System.Collections.Generic.IComparer<Excel2Json.DaoyouGiftConfig>
  540. // System.Collections.Generic.IComparer<Excel2Json.DaoyouLevelupConfig>
  541. // System.Collections.Generic.IComparer<Excel2Json.DaoyouModelConfig>
  542. // System.Collections.Generic.IComparer<Excel2Json.DaoyouguajiResourcLevel>
  543. // System.Collections.Generic.IComparer<Excel2Json.DivineSenseConfig>
  544. // System.Collections.Generic.IComparer<Excel2Json.DropConfig>
  545. // System.Collections.Generic.IComparer<Excel2Json.DropCountConfig>
  546. // System.Collections.Generic.IComparer<Excel2Json.DropGroupConfig>
  547. // System.Collections.Generic.IComparer<Excel2Json.DropItemConfig>
  548. // System.Collections.Generic.IComparer<Excel2Json.EventConditionConfig>
  549. // System.Collections.Generic.IComparer<Excel2Json.EventConfig>
  550. // System.Collections.Generic.IComparer<Excel2Json.EventLinkConfig>
  551. // System.Collections.Generic.IComparer<Excel2Json.EventNPC>
  552. // System.Collections.Generic.IComparer<Excel2Json.FabaoConfig>
  553. // System.Collections.Generic.IComparer<Excel2Json.FabaoPowerupConfig>
  554. // System.Collections.Generic.IComparer<Excel2Json.GameConstantConfig>
  555. // System.Collections.Generic.IComparer<Excel2Json.GroupConfig>
  556. // System.Collections.Generic.IComparer<Excel2Json.HeroModelConfig>
  557. // System.Collections.Generic.IComparer<Excel2Json.HeroPowerUpConfig>
  558. // System.Collections.Generic.IComparer<Excel2Json.HeroQiangDuAddConfig>
  559. // System.Collections.Generic.IComparer<Excel2Json.InitialPlayerConfig>
  560. // System.Collections.Generic.IComparer<Excel2Json.ItemConfig>
  561. // System.Collections.Generic.IComparer<Excel2Json.LanguageChineseConfig>
  562. // System.Collections.Generic.IComparer<Excel2Json.LanguageChineseConfig_skill>
  563. // System.Collections.Generic.IComparer<Excel2Json.LevelSupressConfig>
  564. // System.Collections.Generic.IComparer<Excel2Json.LevelbattleConfig>
  565. // System.Collections.Generic.IComparer<Excel2Json.MitigationParaConfig>
  566. // System.Collections.Generic.IComparer<Excel2Json.MonsterPowerUpConfig>
  567. // System.Collections.Generic.IComparer<Excel2Json.OpenBoxConfig>
  568. // System.Collections.Generic.IComparer<Excel2Json.OpenBoxProgressReward>
  569. // System.Collections.Generic.IComparer<Excel2Json.OpenBoxScoreRule>
  570. // System.Collections.Generic.IComparer<Excel2Json.PlacesConfig>
  571. // System.Collections.Generic.IComparer<Excel2Json.PlayerGuideConfig>
  572. // System.Collections.Generic.IComparer<Excel2Json.QiankundaiConfig>
  573. // System.Collections.Generic.IComparer<Excel2Json.RandomNameListConfig>
  574. // System.Collections.Generic.IComparer<Excel2Json.ResourceLevelConfig>
  575. // System.Collections.Generic.IComparer<Excel2Json.SentimentConfig>
  576. // System.Collections.Generic.IComparer<Excel2Json.SentimentEffectConfig>
  577. // System.Collections.Generic.IComparer<Excel2Json.ShopConfig>
  578. // System.Collections.Generic.IComparer<Excel2Json.ShopGroupConfig>
  579. // System.Collections.Generic.IComparer<Excel2Json.ShopItemConfig>
  580. // System.Collections.Generic.IComparer<Excel2Json.SkillConfig>
  581. // System.Collections.Generic.IComparer<Excel2Json.SkillConstant>
  582. // System.Collections.Generic.IComparer<Excel2Json.SkillPowerupConfig>
  583. // System.Collections.Generic.IComparer<Excel2Json.SkiptoConfig>
  584. // System.Collections.Generic.IComparer<Excel2Json.SmallPlacesConfig>
  585. // System.Collections.Generic.IComparer<Excel2Json.TanxianConfig>
  586. // System.Collections.Generic.IComparer<Excel2Json.TowerConfig>
  587. // System.Collections.Generic.IComparer<Excel2Json.TowerInfoConfig>
  588. // System.Collections.Generic.IComparer<Excel2Json.UnlockConfig>
  589. // System.Collections.Generic.IComparer<Excel2Json.WorldMapConfig>
  590. // System.Collections.Generic.IComparer<Excel2Json.XianTuLogConfig>
  591. // System.Collections.Generic.IComparer<Excel2Json.daolvSkill>
  592. // System.Collections.Generic.IComparer<Excel2Json.emotionConfig>
  593. // System.Collections.Generic.IComparer<Excel2Json.guajibuff>
  594. // System.Collections.Generic.IComparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  595. // System.Collections.Generic.IComparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  596. // System.Collections.Generic.IComparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  597. // System.Collections.Generic.IComparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  598. // System.Collections.Generic.IComparer<MemoryPack.Internal.BufferSegment>
  599. // System.Collections.Generic.IComparer<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  600. // System.Collections.Generic.IComparer<System.Collections.Generic.KeyValuePair<long,object>>
  601. // System.Collections.Generic.IComparer<System.Collections.Generic.KeyValuePair<object,object>>
  602. // System.Collections.Generic.IComparer<System.Net.Sockets.Kcp.KcpSegment>
  603. // System.Collections.Generic.IComparer<UnityEngine.CombineInstance>
  604. // System.Collections.Generic.IComparer<UnityEngine.EventSystems.RaycastResult>
  605. // System.Collections.Generic.IComparer<UnityEngine.Matrix4x4>
  606. // System.Collections.Generic.IComparer<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  607. // System.Collections.Generic.IComparer<UnityEngine.UIVertex>
  608. // System.Collections.Generic.IComparer<UnityEngine.Vector2>
  609. // System.Collections.Generic.IComparer<UnityEngine.Vector3>
  610. // System.Collections.Generic.IComparer<UnityEngine.Vector4>
  611. // System.Collections.Generic.IComparer<byte>
  612. // System.Collections.Generic.IComparer<float>
  613. // System.Collections.Generic.IComparer<int>
  614. // System.Collections.Generic.IComparer<long>
  615. // System.Collections.Generic.IComparer<object>
  616. // System.Collections.Generic.IDictionary<int,object>
  617. // System.Collections.Generic.IDictionary<object,LitJson.ArrayMetadata>
  618. // System.Collections.Generic.IDictionary<object,LitJson.ObjectMetadata>
  619. // System.Collections.Generic.IDictionary<object,LitJson.PropertyMetadata>
  620. // System.Collections.Generic.IDictionary<object,object>
  621. // System.Collections.Generic.IEnumerable<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  622. // System.Collections.Generic.IEnumerable<Core.BattleReport.ReportFightMassgeLogData>
  623. // System.Collections.Generic.IEnumerable<Excel2Json.AttributeConfig>
  624. // System.Collections.Generic.IEnumerable<Excel2Json.BigMapConfig>
  625. // System.Collections.Generic.IEnumerable<Excel2Json.BuffConfig>
  626. // System.Collections.Generic.IEnumerable<Excel2Json.ChanllegeResource>
  627. // System.Collections.Generic.IEnumerable<Excel2Json.ChanllegeTower>
  628. // System.Collections.Generic.IEnumerable<Excel2Json.DaoyouGiftConfig>
  629. // System.Collections.Generic.IEnumerable<Excel2Json.DaoyouLevelupConfig>
  630. // System.Collections.Generic.IEnumerable<Excel2Json.DaoyouModelConfig>
  631. // System.Collections.Generic.IEnumerable<Excel2Json.DaoyouguajiResourcLevel>
  632. // System.Collections.Generic.IEnumerable<Excel2Json.DivineSenseConfig>
  633. // System.Collections.Generic.IEnumerable<Excel2Json.DropConfig>
  634. // System.Collections.Generic.IEnumerable<Excel2Json.DropCountConfig>
  635. // System.Collections.Generic.IEnumerable<Excel2Json.DropGroupConfig>
  636. // System.Collections.Generic.IEnumerable<Excel2Json.DropItemConfig>
  637. // System.Collections.Generic.IEnumerable<Excel2Json.EventConditionConfig>
  638. // System.Collections.Generic.IEnumerable<Excel2Json.EventConfig>
  639. // System.Collections.Generic.IEnumerable<Excel2Json.EventLinkConfig>
  640. // System.Collections.Generic.IEnumerable<Excel2Json.EventNPC>
  641. // System.Collections.Generic.IEnumerable<Excel2Json.FabaoConfig>
  642. // System.Collections.Generic.IEnumerable<Excel2Json.FabaoPowerupConfig>
  643. // System.Collections.Generic.IEnumerable<Excel2Json.GameConstantConfig>
  644. // System.Collections.Generic.IEnumerable<Excel2Json.GroupConfig>
  645. // System.Collections.Generic.IEnumerable<Excel2Json.HeroModelConfig>
  646. // System.Collections.Generic.IEnumerable<Excel2Json.HeroPowerUpConfig>
  647. // System.Collections.Generic.IEnumerable<Excel2Json.HeroQiangDuAddConfig>
  648. // System.Collections.Generic.IEnumerable<Excel2Json.InitialPlayerConfig>
  649. // System.Collections.Generic.IEnumerable<Excel2Json.ItemConfig>
  650. // System.Collections.Generic.IEnumerable<Excel2Json.LanguageChineseConfig>
  651. // System.Collections.Generic.IEnumerable<Excel2Json.LanguageChineseConfig_skill>
  652. // System.Collections.Generic.IEnumerable<Excel2Json.LevelSupressConfig>
  653. // System.Collections.Generic.IEnumerable<Excel2Json.LevelbattleConfig>
  654. // System.Collections.Generic.IEnumerable<Excel2Json.MitigationParaConfig>
  655. // System.Collections.Generic.IEnumerable<Excel2Json.MonsterPowerUpConfig>
  656. // System.Collections.Generic.IEnumerable<Excel2Json.OpenBoxConfig>
  657. // System.Collections.Generic.IEnumerable<Excel2Json.OpenBoxProgressReward>
  658. // System.Collections.Generic.IEnumerable<Excel2Json.OpenBoxScoreRule>
  659. // System.Collections.Generic.IEnumerable<Excel2Json.PlacesConfig>
  660. // System.Collections.Generic.IEnumerable<Excel2Json.PlayerGuideConfig>
  661. // System.Collections.Generic.IEnumerable<Excel2Json.QiankundaiConfig>
  662. // System.Collections.Generic.IEnumerable<Excel2Json.RandomNameListConfig>
  663. // System.Collections.Generic.IEnumerable<Excel2Json.ResourceLevelConfig>
  664. // System.Collections.Generic.IEnumerable<Excel2Json.SentimentConfig>
  665. // System.Collections.Generic.IEnumerable<Excel2Json.SentimentEffectConfig>
  666. // System.Collections.Generic.IEnumerable<Excel2Json.ShopConfig>
  667. // System.Collections.Generic.IEnumerable<Excel2Json.ShopGroupConfig>
  668. // System.Collections.Generic.IEnumerable<Excel2Json.ShopItemConfig>
  669. // System.Collections.Generic.IEnumerable<Excel2Json.SkillConfig>
  670. // System.Collections.Generic.IEnumerable<Excel2Json.SkillConstant>
  671. // System.Collections.Generic.IEnumerable<Excel2Json.SkillPowerupConfig>
  672. // System.Collections.Generic.IEnumerable<Excel2Json.SkiptoConfig>
  673. // System.Collections.Generic.IEnumerable<Excel2Json.SmallPlacesConfig>
  674. // System.Collections.Generic.IEnumerable<Excel2Json.TanxianConfig>
  675. // System.Collections.Generic.IEnumerable<Excel2Json.TowerConfig>
  676. // System.Collections.Generic.IEnumerable<Excel2Json.TowerInfoConfig>
  677. // System.Collections.Generic.IEnumerable<Excel2Json.UnlockConfig>
  678. // System.Collections.Generic.IEnumerable<Excel2Json.WorldMapConfig>
  679. // System.Collections.Generic.IEnumerable<Excel2Json.XianTuLogConfig>
  680. // System.Collections.Generic.IEnumerable<Excel2Json.daolvSkill>
  681. // System.Collections.Generic.IEnumerable<Excel2Json.emotionConfig>
  682. // System.Collections.Generic.IEnumerable<Excel2Json.guajibuff>
  683. // System.Collections.Generic.IEnumerable<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  684. // System.Collections.Generic.IEnumerable<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  685. // System.Collections.Generic.IEnumerable<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  686. // System.Collections.Generic.IEnumerable<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  687. // System.Collections.Generic.IEnumerable<MemoryPack.Internal.BufferSegment>
  688. // System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<UnityEngine.Vector3,object>>
  689. // System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<int,UnityEngine.RenderInstancedDataLayout>>
  690. // System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  691. // System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<int,float>>
  692. // System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<int,int>>
  693. // System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<int,long>>
  694. // System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<int,object>>
  695. // System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<long,object>>
  696. // System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<object,int>>
  697. // System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<object,object>>
  698. // System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<uint,object>>
  699. // System.Collections.Generic.IEnumerable<System.IntPtr>
  700. // System.Collections.Generic.IEnumerable<System.Net.Sockets.Kcp.KcpSegment>
  701. // System.Collections.Generic.IEnumerable<System.ValueTuple<object,object>>
  702. // System.Collections.Generic.IEnumerable<System.ValueTuple<uint,uint>>
  703. // System.Collections.Generic.IEnumerable<UnityEngine.CombineInstance>
  704. // System.Collections.Generic.IEnumerable<UnityEngine.EventSystems.RaycastResult>
  705. // System.Collections.Generic.IEnumerable<UnityEngine.Matrix4x4>
  706. // System.Collections.Generic.IEnumerable<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  707. // System.Collections.Generic.IEnumerable<UnityEngine.UIVertex>
  708. // System.Collections.Generic.IEnumerable<UnityEngine.Vector2>
  709. // System.Collections.Generic.IEnumerable<UnityEngine.Vector3>
  710. // System.Collections.Generic.IEnumerable<UnityEngine.Vector4>
  711. // System.Collections.Generic.IEnumerable<byte>
  712. // System.Collections.Generic.IEnumerable<float>
  713. // System.Collections.Generic.IEnumerable<int>
  714. // System.Collections.Generic.IEnumerable<long>
  715. // System.Collections.Generic.IEnumerable<object>
  716. // System.Collections.Generic.IEnumerator<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  717. // System.Collections.Generic.IEnumerator<Core.BattleReport.ReportFightMassgeLogData>
  718. // System.Collections.Generic.IEnumerator<Excel2Json.AttributeConfig>
  719. // System.Collections.Generic.IEnumerator<Excel2Json.BigMapConfig>
  720. // System.Collections.Generic.IEnumerator<Excel2Json.BuffConfig>
  721. // System.Collections.Generic.IEnumerator<Excel2Json.ChanllegeResource>
  722. // System.Collections.Generic.IEnumerator<Excel2Json.ChanllegeTower>
  723. // System.Collections.Generic.IEnumerator<Excel2Json.DaoyouGiftConfig>
  724. // System.Collections.Generic.IEnumerator<Excel2Json.DaoyouLevelupConfig>
  725. // System.Collections.Generic.IEnumerator<Excel2Json.DaoyouModelConfig>
  726. // System.Collections.Generic.IEnumerator<Excel2Json.DaoyouguajiResourcLevel>
  727. // System.Collections.Generic.IEnumerator<Excel2Json.DivineSenseConfig>
  728. // System.Collections.Generic.IEnumerator<Excel2Json.DropConfig>
  729. // System.Collections.Generic.IEnumerator<Excel2Json.DropCountConfig>
  730. // System.Collections.Generic.IEnumerator<Excel2Json.DropGroupConfig>
  731. // System.Collections.Generic.IEnumerator<Excel2Json.DropItemConfig>
  732. // System.Collections.Generic.IEnumerator<Excel2Json.EventConditionConfig>
  733. // System.Collections.Generic.IEnumerator<Excel2Json.EventConfig>
  734. // System.Collections.Generic.IEnumerator<Excel2Json.EventLinkConfig>
  735. // System.Collections.Generic.IEnumerator<Excel2Json.EventNPC>
  736. // System.Collections.Generic.IEnumerator<Excel2Json.FabaoConfig>
  737. // System.Collections.Generic.IEnumerator<Excel2Json.FabaoPowerupConfig>
  738. // System.Collections.Generic.IEnumerator<Excel2Json.GameConstantConfig>
  739. // System.Collections.Generic.IEnumerator<Excel2Json.GroupConfig>
  740. // System.Collections.Generic.IEnumerator<Excel2Json.HeroModelConfig>
  741. // System.Collections.Generic.IEnumerator<Excel2Json.HeroPowerUpConfig>
  742. // System.Collections.Generic.IEnumerator<Excel2Json.HeroQiangDuAddConfig>
  743. // System.Collections.Generic.IEnumerator<Excel2Json.InitialPlayerConfig>
  744. // System.Collections.Generic.IEnumerator<Excel2Json.ItemConfig>
  745. // System.Collections.Generic.IEnumerator<Excel2Json.LanguageChineseConfig>
  746. // System.Collections.Generic.IEnumerator<Excel2Json.LanguageChineseConfig_skill>
  747. // System.Collections.Generic.IEnumerator<Excel2Json.LevelSupressConfig>
  748. // System.Collections.Generic.IEnumerator<Excel2Json.LevelbattleConfig>
  749. // System.Collections.Generic.IEnumerator<Excel2Json.MitigationParaConfig>
  750. // System.Collections.Generic.IEnumerator<Excel2Json.MonsterPowerUpConfig>
  751. // System.Collections.Generic.IEnumerator<Excel2Json.OpenBoxConfig>
  752. // System.Collections.Generic.IEnumerator<Excel2Json.OpenBoxProgressReward>
  753. // System.Collections.Generic.IEnumerator<Excel2Json.OpenBoxScoreRule>
  754. // System.Collections.Generic.IEnumerator<Excel2Json.PlacesConfig>
  755. // System.Collections.Generic.IEnumerator<Excel2Json.PlayerGuideConfig>
  756. // System.Collections.Generic.IEnumerator<Excel2Json.QiankundaiConfig>
  757. // System.Collections.Generic.IEnumerator<Excel2Json.RandomNameListConfig>
  758. // System.Collections.Generic.IEnumerator<Excel2Json.ResourceLevelConfig>
  759. // System.Collections.Generic.IEnumerator<Excel2Json.SentimentConfig>
  760. // System.Collections.Generic.IEnumerator<Excel2Json.SentimentEffectConfig>
  761. // System.Collections.Generic.IEnumerator<Excel2Json.ShopConfig>
  762. // System.Collections.Generic.IEnumerator<Excel2Json.ShopGroupConfig>
  763. // System.Collections.Generic.IEnumerator<Excel2Json.ShopItemConfig>
  764. // System.Collections.Generic.IEnumerator<Excel2Json.SkillConfig>
  765. // System.Collections.Generic.IEnumerator<Excel2Json.SkillConstant>
  766. // System.Collections.Generic.IEnumerator<Excel2Json.SkillPowerupConfig>
  767. // System.Collections.Generic.IEnumerator<Excel2Json.SkiptoConfig>
  768. // System.Collections.Generic.IEnumerator<Excel2Json.SmallPlacesConfig>
  769. // System.Collections.Generic.IEnumerator<Excel2Json.TanxianConfig>
  770. // System.Collections.Generic.IEnumerator<Excel2Json.TowerConfig>
  771. // System.Collections.Generic.IEnumerator<Excel2Json.TowerInfoConfig>
  772. // System.Collections.Generic.IEnumerator<Excel2Json.UnlockConfig>
  773. // System.Collections.Generic.IEnumerator<Excel2Json.WorldMapConfig>
  774. // System.Collections.Generic.IEnumerator<Excel2Json.XianTuLogConfig>
  775. // System.Collections.Generic.IEnumerator<Excel2Json.daolvSkill>
  776. // System.Collections.Generic.IEnumerator<Excel2Json.emotionConfig>
  777. // System.Collections.Generic.IEnumerator<Excel2Json.guajibuff>
  778. // System.Collections.Generic.IEnumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  779. // System.Collections.Generic.IEnumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  780. // System.Collections.Generic.IEnumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  781. // System.Collections.Generic.IEnumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  782. // System.Collections.Generic.IEnumerator<MemoryPack.Internal.BufferSegment>
  783. // System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<UnityEngine.Vector3,object>>
  784. // System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<int,UnityEngine.RenderInstancedDataLayout>>
  785. // System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  786. // System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<int,float>>
  787. // System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<int,int>>
  788. // System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<int,long>>
  789. // System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<int,object>>
  790. // System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<long,object>>
  791. // System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<object,int>>
  792. // System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<object,object>>
  793. // System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<uint,object>>
  794. // System.Collections.Generic.IEnumerator<System.IntPtr>
  795. // System.Collections.Generic.IEnumerator<System.Net.Sockets.Kcp.KcpSegment>
  796. // System.Collections.Generic.IEnumerator<System.ValueTuple<object,object>>
  797. // System.Collections.Generic.IEnumerator<System.ValueTuple<uint,uint>>
  798. // System.Collections.Generic.IEnumerator<UnityEngine.CombineInstance>
  799. // System.Collections.Generic.IEnumerator<UnityEngine.EventSystems.RaycastResult>
  800. // System.Collections.Generic.IEnumerator<UnityEngine.Matrix4x4>
  801. // System.Collections.Generic.IEnumerator<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  802. // System.Collections.Generic.IEnumerator<UnityEngine.UIVertex>
  803. // System.Collections.Generic.IEnumerator<UnityEngine.Vector2>
  804. // System.Collections.Generic.IEnumerator<UnityEngine.Vector3>
  805. // System.Collections.Generic.IEnumerator<UnityEngine.Vector4>
  806. // System.Collections.Generic.IEnumerator<byte>
  807. // System.Collections.Generic.IEnumerator<float>
  808. // System.Collections.Generic.IEnumerator<int>
  809. // System.Collections.Generic.IEnumerator<long>
  810. // System.Collections.Generic.IEnumerator<object>
  811. // System.Collections.Generic.IEqualityComparer<System.IntPtr>
  812. // System.Collections.Generic.IEqualityComparer<UnityEngine.Vector3>
  813. // System.Collections.Generic.IEqualityComparer<float>
  814. // System.Collections.Generic.IEqualityComparer<int>
  815. // System.Collections.Generic.IEqualityComparer<long>
  816. // System.Collections.Generic.IEqualityComparer<object>
  817. // System.Collections.Generic.IEqualityComparer<uint>
  818. // System.Collections.Generic.IList<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  819. // System.Collections.Generic.IList<Core.BattleReport.ReportFightMassgeLogData>
  820. // System.Collections.Generic.IList<Excel2Json.AttributeConfig>
  821. // System.Collections.Generic.IList<Excel2Json.BigMapConfig>
  822. // System.Collections.Generic.IList<Excel2Json.BuffConfig>
  823. // System.Collections.Generic.IList<Excel2Json.ChanllegeResource>
  824. // System.Collections.Generic.IList<Excel2Json.ChanllegeTower>
  825. // System.Collections.Generic.IList<Excel2Json.DaoyouGiftConfig>
  826. // System.Collections.Generic.IList<Excel2Json.DaoyouLevelupConfig>
  827. // System.Collections.Generic.IList<Excel2Json.DaoyouModelConfig>
  828. // System.Collections.Generic.IList<Excel2Json.DaoyouguajiResourcLevel>
  829. // System.Collections.Generic.IList<Excel2Json.DivineSenseConfig>
  830. // System.Collections.Generic.IList<Excel2Json.DropConfig>
  831. // System.Collections.Generic.IList<Excel2Json.DropCountConfig>
  832. // System.Collections.Generic.IList<Excel2Json.DropGroupConfig>
  833. // System.Collections.Generic.IList<Excel2Json.DropItemConfig>
  834. // System.Collections.Generic.IList<Excel2Json.EventConditionConfig>
  835. // System.Collections.Generic.IList<Excel2Json.EventConfig>
  836. // System.Collections.Generic.IList<Excel2Json.EventLinkConfig>
  837. // System.Collections.Generic.IList<Excel2Json.EventNPC>
  838. // System.Collections.Generic.IList<Excel2Json.FabaoConfig>
  839. // System.Collections.Generic.IList<Excel2Json.FabaoPowerupConfig>
  840. // System.Collections.Generic.IList<Excel2Json.GameConstantConfig>
  841. // System.Collections.Generic.IList<Excel2Json.GroupConfig>
  842. // System.Collections.Generic.IList<Excel2Json.HeroModelConfig>
  843. // System.Collections.Generic.IList<Excel2Json.HeroPowerUpConfig>
  844. // System.Collections.Generic.IList<Excel2Json.HeroQiangDuAddConfig>
  845. // System.Collections.Generic.IList<Excel2Json.InitialPlayerConfig>
  846. // System.Collections.Generic.IList<Excel2Json.ItemConfig>
  847. // System.Collections.Generic.IList<Excel2Json.LanguageChineseConfig>
  848. // System.Collections.Generic.IList<Excel2Json.LanguageChineseConfig_skill>
  849. // System.Collections.Generic.IList<Excel2Json.LevelSupressConfig>
  850. // System.Collections.Generic.IList<Excel2Json.LevelbattleConfig>
  851. // System.Collections.Generic.IList<Excel2Json.MitigationParaConfig>
  852. // System.Collections.Generic.IList<Excel2Json.MonsterPowerUpConfig>
  853. // System.Collections.Generic.IList<Excel2Json.OpenBoxConfig>
  854. // System.Collections.Generic.IList<Excel2Json.OpenBoxProgressReward>
  855. // System.Collections.Generic.IList<Excel2Json.OpenBoxScoreRule>
  856. // System.Collections.Generic.IList<Excel2Json.PlacesConfig>
  857. // System.Collections.Generic.IList<Excel2Json.PlayerGuideConfig>
  858. // System.Collections.Generic.IList<Excel2Json.QiankundaiConfig>
  859. // System.Collections.Generic.IList<Excel2Json.RandomNameListConfig>
  860. // System.Collections.Generic.IList<Excel2Json.ResourceLevelConfig>
  861. // System.Collections.Generic.IList<Excel2Json.SentimentConfig>
  862. // System.Collections.Generic.IList<Excel2Json.SentimentEffectConfig>
  863. // System.Collections.Generic.IList<Excel2Json.ShopConfig>
  864. // System.Collections.Generic.IList<Excel2Json.ShopGroupConfig>
  865. // System.Collections.Generic.IList<Excel2Json.ShopItemConfig>
  866. // System.Collections.Generic.IList<Excel2Json.SkillConfig>
  867. // System.Collections.Generic.IList<Excel2Json.SkillConstant>
  868. // System.Collections.Generic.IList<Excel2Json.SkillPowerupConfig>
  869. // System.Collections.Generic.IList<Excel2Json.SkiptoConfig>
  870. // System.Collections.Generic.IList<Excel2Json.SmallPlacesConfig>
  871. // System.Collections.Generic.IList<Excel2Json.TanxianConfig>
  872. // System.Collections.Generic.IList<Excel2Json.TowerConfig>
  873. // System.Collections.Generic.IList<Excel2Json.TowerInfoConfig>
  874. // System.Collections.Generic.IList<Excel2Json.UnlockConfig>
  875. // System.Collections.Generic.IList<Excel2Json.WorldMapConfig>
  876. // System.Collections.Generic.IList<Excel2Json.XianTuLogConfig>
  877. // System.Collections.Generic.IList<Excel2Json.daolvSkill>
  878. // System.Collections.Generic.IList<Excel2Json.emotionConfig>
  879. // System.Collections.Generic.IList<Excel2Json.guajibuff>
  880. // System.Collections.Generic.IList<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  881. // System.Collections.Generic.IList<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  882. // System.Collections.Generic.IList<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  883. // System.Collections.Generic.IList<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  884. // System.Collections.Generic.IList<MemoryPack.Internal.BufferSegment>
  885. // System.Collections.Generic.IList<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  886. // System.Collections.Generic.IList<System.Net.Sockets.Kcp.KcpSegment>
  887. // System.Collections.Generic.IList<UnityEngine.CombineInstance>
  888. // System.Collections.Generic.IList<UnityEngine.EventSystems.RaycastResult>
  889. // System.Collections.Generic.IList<UnityEngine.Matrix4x4>
  890. // System.Collections.Generic.IList<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  891. // System.Collections.Generic.IList<UnityEngine.UIVertex>
  892. // System.Collections.Generic.IList<UnityEngine.Vector2>
  893. // System.Collections.Generic.IList<UnityEngine.Vector3>
  894. // System.Collections.Generic.IList<UnityEngine.Vector4>
  895. // System.Collections.Generic.IList<byte>
  896. // System.Collections.Generic.IList<float>
  897. // System.Collections.Generic.IList<int>
  898. // System.Collections.Generic.IList<long>
  899. // System.Collections.Generic.IList<object>
  900. // System.Collections.Generic.IReadOnlyCollection<UnityEngine.Vector3>
  901. // System.Collections.Generic.IReadOnlyList<UnityEngine.Vector3>
  902. // System.Collections.Generic.KeyValuePair<UnityEngine.Vector3,object>
  903. // System.Collections.Generic.KeyValuePair<int,UnityEngine.RenderInstancedDataLayout>
  904. // System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>
  905. // System.Collections.Generic.KeyValuePair<int,float>
  906. // System.Collections.Generic.KeyValuePair<int,int>
  907. // System.Collections.Generic.KeyValuePair<int,long>
  908. // System.Collections.Generic.KeyValuePair<int,object>
  909. // System.Collections.Generic.KeyValuePair<long,object>
  910. // System.Collections.Generic.KeyValuePair<object,int>
  911. // System.Collections.Generic.KeyValuePair<object,object>
  912. // System.Collections.Generic.KeyValuePair<uint,object>
  913. // System.Collections.Generic.LinkedList.Enumerator<System.Net.Sockets.Kcp.KcpSegment>
  914. // System.Collections.Generic.LinkedList.Enumerator<object>
  915. // System.Collections.Generic.LinkedList<System.Net.Sockets.Kcp.KcpSegment>
  916. // System.Collections.Generic.LinkedList<object>
  917. // System.Collections.Generic.LinkedListNode<System.Net.Sockets.Kcp.KcpSegment>
  918. // System.Collections.Generic.LinkedListNode<object>
  919. // System.Collections.Generic.List.Enumerator<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  920. // System.Collections.Generic.List.Enumerator<Core.BattleReport.ReportFightMassgeLogData>
  921. // System.Collections.Generic.List.Enumerator<Excel2Json.AttributeConfig>
  922. // System.Collections.Generic.List.Enumerator<Excel2Json.BigMapConfig>
  923. // System.Collections.Generic.List.Enumerator<Excel2Json.BuffConfig>
  924. // System.Collections.Generic.List.Enumerator<Excel2Json.ChanllegeResource>
  925. // System.Collections.Generic.List.Enumerator<Excel2Json.ChanllegeTower>
  926. // System.Collections.Generic.List.Enumerator<Excel2Json.DaoyouGiftConfig>
  927. // System.Collections.Generic.List.Enumerator<Excel2Json.DaoyouLevelupConfig>
  928. // System.Collections.Generic.List.Enumerator<Excel2Json.DaoyouModelConfig>
  929. // System.Collections.Generic.List.Enumerator<Excel2Json.DaoyouguajiResourcLevel>
  930. // System.Collections.Generic.List.Enumerator<Excel2Json.DivineSenseConfig>
  931. // System.Collections.Generic.List.Enumerator<Excel2Json.DropConfig>
  932. // System.Collections.Generic.List.Enumerator<Excel2Json.DropCountConfig>
  933. // System.Collections.Generic.List.Enumerator<Excel2Json.DropGroupConfig>
  934. // System.Collections.Generic.List.Enumerator<Excel2Json.DropItemConfig>
  935. // System.Collections.Generic.List.Enumerator<Excel2Json.EventConditionConfig>
  936. // System.Collections.Generic.List.Enumerator<Excel2Json.EventConfig>
  937. // System.Collections.Generic.List.Enumerator<Excel2Json.EventLinkConfig>
  938. // System.Collections.Generic.List.Enumerator<Excel2Json.EventNPC>
  939. // System.Collections.Generic.List.Enumerator<Excel2Json.FabaoConfig>
  940. // System.Collections.Generic.List.Enumerator<Excel2Json.FabaoPowerupConfig>
  941. // System.Collections.Generic.List.Enumerator<Excel2Json.GameConstantConfig>
  942. // System.Collections.Generic.List.Enumerator<Excel2Json.GroupConfig>
  943. // System.Collections.Generic.List.Enumerator<Excel2Json.HeroModelConfig>
  944. // System.Collections.Generic.List.Enumerator<Excel2Json.HeroPowerUpConfig>
  945. // System.Collections.Generic.List.Enumerator<Excel2Json.HeroQiangDuAddConfig>
  946. // System.Collections.Generic.List.Enumerator<Excel2Json.InitialPlayerConfig>
  947. // System.Collections.Generic.List.Enumerator<Excel2Json.ItemConfig>
  948. // System.Collections.Generic.List.Enumerator<Excel2Json.LanguageChineseConfig>
  949. // System.Collections.Generic.List.Enumerator<Excel2Json.LanguageChineseConfig_skill>
  950. // System.Collections.Generic.List.Enumerator<Excel2Json.LevelSupressConfig>
  951. // System.Collections.Generic.List.Enumerator<Excel2Json.LevelbattleConfig>
  952. // System.Collections.Generic.List.Enumerator<Excel2Json.MitigationParaConfig>
  953. // System.Collections.Generic.List.Enumerator<Excel2Json.MonsterPowerUpConfig>
  954. // System.Collections.Generic.List.Enumerator<Excel2Json.OpenBoxConfig>
  955. // System.Collections.Generic.List.Enumerator<Excel2Json.OpenBoxProgressReward>
  956. // System.Collections.Generic.List.Enumerator<Excel2Json.OpenBoxScoreRule>
  957. // System.Collections.Generic.List.Enumerator<Excel2Json.PlacesConfig>
  958. // System.Collections.Generic.List.Enumerator<Excel2Json.PlayerGuideConfig>
  959. // System.Collections.Generic.List.Enumerator<Excel2Json.QiankundaiConfig>
  960. // System.Collections.Generic.List.Enumerator<Excel2Json.RandomNameListConfig>
  961. // System.Collections.Generic.List.Enumerator<Excel2Json.ResourceLevelConfig>
  962. // System.Collections.Generic.List.Enumerator<Excel2Json.SentimentConfig>
  963. // System.Collections.Generic.List.Enumerator<Excel2Json.SentimentEffectConfig>
  964. // System.Collections.Generic.List.Enumerator<Excel2Json.ShopConfig>
  965. // System.Collections.Generic.List.Enumerator<Excel2Json.ShopGroupConfig>
  966. // System.Collections.Generic.List.Enumerator<Excel2Json.ShopItemConfig>
  967. // System.Collections.Generic.List.Enumerator<Excel2Json.SkillConfig>
  968. // System.Collections.Generic.List.Enumerator<Excel2Json.SkillConstant>
  969. // System.Collections.Generic.List.Enumerator<Excel2Json.SkillPowerupConfig>
  970. // System.Collections.Generic.List.Enumerator<Excel2Json.SkiptoConfig>
  971. // System.Collections.Generic.List.Enumerator<Excel2Json.SmallPlacesConfig>
  972. // System.Collections.Generic.List.Enumerator<Excel2Json.TanxianConfig>
  973. // System.Collections.Generic.List.Enumerator<Excel2Json.TowerConfig>
  974. // System.Collections.Generic.List.Enumerator<Excel2Json.TowerInfoConfig>
  975. // System.Collections.Generic.List.Enumerator<Excel2Json.UnlockConfig>
  976. // System.Collections.Generic.List.Enumerator<Excel2Json.WorldMapConfig>
  977. // System.Collections.Generic.List.Enumerator<Excel2Json.XianTuLogConfig>
  978. // System.Collections.Generic.List.Enumerator<Excel2Json.daolvSkill>
  979. // System.Collections.Generic.List.Enumerator<Excel2Json.emotionConfig>
  980. // System.Collections.Generic.List.Enumerator<Excel2Json.guajibuff>
  981. // System.Collections.Generic.List.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  982. // System.Collections.Generic.List.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  983. // System.Collections.Generic.List.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  984. // System.Collections.Generic.List.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  985. // System.Collections.Generic.List.Enumerator<MemoryPack.Internal.BufferSegment>
  986. // System.Collections.Generic.List.Enumerator<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  987. // System.Collections.Generic.List.Enumerator<System.Net.Sockets.Kcp.KcpSegment>
  988. // System.Collections.Generic.List.Enumerator<UnityEngine.CombineInstance>
  989. // System.Collections.Generic.List.Enumerator<UnityEngine.EventSystems.RaycastResult>
  990. // System.Collections.Generic.List.Enumerator<UnityEngine.Matrix4x4>
  991. // System.Collections.Generic.List.Enumerator<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  992. // System.Collections.Generic.List.Enumerator<UnityEngine.UIVertex>
  993. // System.Collections.Generic.List.Enumerator<UnityEngine.Vector2>
  994. // System.Collections.Generic.List.Enumerator<UnityEngine.Vector3>
  995. // System.Collections.Generic.List.Enumerator<UnityEngine.Vector4>
  996. // System.Collections.Generic.List.Enumerator<byte>
  997. // System.Collections.Generic.List.Enumerator<float>
  998. // System.Collections.Generic.List.Enumerator<int>
  999. // System.Collections.Generic.List.Enumerator<long>
  1000. // System.Collections.Generic.List.Enumerator<object>
  1001. // System.Collections.Generic.List<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  1002. // System.Collections.Generic.List<Core.BattleReport.ReportFightMassgeLogData>
  1003. // System.Collections.Generic.List<Excel2Json.AttributeConfig>
  1004. // System.Collections.Generic.List<Excel2Json.BigMapConfig>
  1005. // System.Collections.Generic.List<Excel2Json.BuffConfig>
  1006. // System.Collections.Generic.List<Excel2Json.ChanllegeResource>
  1007. // System.Collections.Generic.List<Excel2Json.ChanllegeTower>
  1008. // System.Collections.Generic.List<Excel2Json.DaoyouGiftConfig>
  1009. // System.Collections.Generic.List<Excel2Json.DaoyouLevelupConfig>
  1010. // System.Collections.Generic.List<Excel2Json.DaoyouModelConfig>
  1011. // System.Collections.Generic.List<Excel2Json.DaoyouguajiResourcLevel>
  1012. // System.Collections.Generic.List<Excel2Json.DivineSenseConfig>
  1013. // System.Collections.Generic.List<Excel2Json.DropConfig>
  1014. // System.Collections.Generic.List<Excel2Json.DropCountConfig>
  1015. // System.Collections.Generic.List<Excel2Json.DropGroupConfig>
  1016. // System.Collections.Generic.List<Excel2Json.DropItemConfig>
  1017. // System.Collections.Generic.List<Excel2Json.EventConditionConfig>
  1018. // System.Collections.Generic.List<Excel2Json.EventConfig>
  1019. // System.Collections.Generic.List<Excel2Json.EventLinkConfig>
  1020. // System.Collections.Generic.List<Excel2Json.EventNPC>
  1021. // System.Collections.Generic.List<Excel2Json.FabaoConfig>
  1022. // System.Collections.Generic.List<Excel2Json.FabaoPowerupConfig>
  1023. // System.Collections.Generic.List<Excel2Json.GameConstantConfig>
  1024. // System.Collections.Generic.List<Excel2Json.GroupConfig>
  1025. // System.Collections.Generic.List<Excel2Json.HeroModelConfig>
  1026. // System.Collections.Generic.List<Excel2Json.HeroPowerUpConfig>
  1027. // System.Collections.Generic.List<Excel2Json.HeroQiangDuAddConfig>
  1028. // System.Collections.Generic.List<Excel2Json.InitialPlayerConfig>
  1029. // System.Collections.Generic.List<Excel2Json.ItemConfig>
  1030. // System.Collections.Generic.List<Excel2Json.LanguageChineseConfig>
  1031. // System.Collections.Generic.List<Excel2Json.LanguageChineseConfig_skill>
  1032. // System.Collections.Generic.List<Excel2Json.LevelSupressConfig>
  1033. // System.Collections.Generic.List<Excel2Json.LevelbattleConfig>
  1034. // System.Collections.Generic.List<Excel2Json.MitigationParaConfig>
  1035. // System.Collections.Generic.List<Excel2Json.MonsterPowerUpConfig>
  1036. // System.Collections.Generic.List<Excel2Json.OpenBoxConfig>
  1037. // System.Collections.Generic.List<Excel2Json.OpenBoxProgressReward>
  1038. // System.Collections.Generic.List<Excel2Json.OpenBoxScoreRule>
  1039. // System.Collections.Generic.List<Excel2Json.PlacesConfig>
  1040. // System.Collections.Generic.List<Excel2Json.PlayerGuideConfig>
  1041. // System.Collections.Generic.List<Excel2Json.QiankundaiConfig>
  1042. // System.Collections.Generic.List<Excel2Json.RandomNameListConfig>
  1043. // System.Collections.Generic.List<Excel2Json.ResourceLevelConfig>
  1044. // System.Collections.Generic.List<Excel2Json.SentimentConfig>
  1045. // System.Collections.Generic.List<Excel2Json.SentimentEffectConfig>
  1046. // System.Collections.Generic.List<Excel2Json.ShopConfig>
  1047. // System.Collections.Generic.List<Excel2Json.ShopGroupConfig>
  1048. // System.Collections.Generic.List<Excel2Json.ShopItemConfig>
  1049. // System.Collections.Generic.List<Excel2Json.SkillConfig>
  1050. // System.Collections.Generic.List<Excel2Json.SkillConstant>
  1051. // System.Collections.Generic.List<Excel2Json.SkillPowerupConfig>
  1052. // System.Collections.Generic.List<Excel2Json.SkiptoConfig>
  1053. // System.Collections.Generic.List<Excel2Json.SmallPlacesConfig>
  1054. // System.Collections.Generic.List<Excel2Json.TanxianConfig>
  1055. // System.Collections.Generic.List<Excel2Json.TowerConfig>
  1056. // System.Collections.Generic.List<Excel2Json.TowerInfoConfig>
  1057. // System.Collections.Generic.List<Excel2Json.UnlockConfig>
  1058. // System.Collections.Generic.List<Excel2Json.WorldMapConfig>
  1059. // System.Collections.Generic.List<Excel2Json.XianTuLogConfig>
  1060. // System.Collections.Generic.List<Excel2Json.daolvSkill>
  1061. // System.Collections.Generic.List<Excel2Json.emotionConfig>
  1062. // System.Collections.Generic.List<Excel2Json.guajibuff>
  1063. // System.Collections.Generic.List<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  1064. // System.Collections.Generic.List<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  1065. // System.Collections.Generic.List<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1066. // System.Collections.Generic.List<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1067. // System.Collections.Generic.List<MemoryPack.Internal.BufferSegment>
  1068. // System.Collections.Generic.List<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  1069. // System.Collections.Generic.List<System.Net.Sockets.Kcp.KcpSegment>
  1070. // System.Collections.Generic.List<UnityEngine.CombineInstance>
  1071. // System.Collections.Generic.List<UnityEngine.EventSystems.RaycastResult>
  1072. // System.Collections.Generic.List<UnityEngine.Matrix4x4>
  1073. // System.Collections.Generic.List<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  1074. // System.Collections.Generic.List<UnityEngine.UIVertex>
  1075. // System.Collections.Generic.List<UnityEngine.Vector2>
  1076. // System.Collections.Generic.List<UnityEngine.Vector3>
  1077. // System.Collections.Generic.List<UnityEngine.Vector4>
  1078. // System.Collections.Generic.List<byte>
  1079. // System.Collections.Generic.List<float>
  1080. // System.Collections.Generic.List<int>
  1081. // System.Collections.Generic.List<long>
  1082. // System.Collections.Generic.List<object>
  1083. // System.Collections.Generic.ObjectComparer<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  1084. // System.Collections.Generic.ObjectComparer<Core.BattleReport.ReportFightMassgeLogData>
  1085. // System.Collections.Generic.ObjectComparer<Excel2Json.AttributeConfig>
  1086. // System.Collections.Generic.ObjectComparer<Excel2Json.BigMapConfig>
  1087. // System.Collections.Generic.ObjectComparer<Excel2Json.BuffConfig>
  1088. // System.Collections.Generic.ObjectComparer<Excel2Json.ChanllegeResource>
  1089. // System.Collections.Generic.ObjectComparer<Excel2Json.ChanllegeTower>
  1090. // System.Collections.Generic.ObjectComparer<Excel2Json.DaoyouGiftConfig>
  1091. // System.Collections.Generic.ObjectComparer<Excel2Json.DaoyouLevelupConfig>
  1092. // System.Collections.Generic.ObjectComparer<Excel2Json.DaoyouModelConfig>
  1093. // System.Collections.Generic.ObjectComparer<Excel2Json.DaoyouguajiResourcLevel>
  1094. // System.Collections.Generic.ObjectComparer<Excel2Json.DivineSenseConfig>
  1095. // System.Collections.Generic.ObjectComparer<Excel2Json.DropConfig>
  1096. // System.Collections.Generic.ObjectComparer<Excel2Json.DropCountConfig>
  1097. // System.Collections.Generic.ObjectComparer<Excel2Json.DropGroupConfig>
  1098. // System.Collections.Generic.ObjectComparer<Excel2Json.DropItemConfig>
  1099. // System.Collections.Generic.ObjectComparer<Excel2Json.EventConditionConfig>
  1100. // System.Collections.Generic.ObjectComparer<Excel2Json.EventConfig>
  1101. // System.Collections.Generic.ObjectComparer<Excel2Json.EventLinkConfig>
  1102. // System.Collections.Generic.ObjectComparer<Excel2Json.EventNPC>
  1103. // System.Collections.Generic.ObjectComparer<Excel2Json.FabaoConfig>
  1104. // System.Collections.Generic.ObjectComparer<Excel2Json.FabaoPowerupConfig>
  1105. // System.Collections.Generic.ObjectComparer<Excel2Json.GameConstantConfig>
  1106. // System.Collections.Generic.ObjectComparer<Excel2Json.GroupConfig>
  1107. // System.Collections.Generic.ObjectComparer<Excel2Json.HeroModelConfig>
  1108. // System.Collections.Generic.ObjectComparer<Excel2Json.HeroPowerUpConfig>
  1109. // System.Collections.Generic.ObjectComparer<Excel2Json.HeroQiangDuAddConfig>
  1110. // System.Collections.Generic.ObjectComparer<Excel2Json.InitialPlayerConfig>
  1111. // System.Collections.Generic.ObjectComparer<Excel2Json.ItemConfig>
  1112. // System.Collections.Generic.ObjectComparer<Excel2Json.LanguageChineseConfig>
  1113. // System.Collections.Generic.ObjectComparer<Excel2Json.LanguageChineseConfig_skill>
  1114. // System.Collections.Generic.ObjectComparer<Excel2Json.LevelSupressConfig>
  1115. // System.Collections.Generic.ObjectComparer<Excel2Json.LevelbattleConfig>
  1116. // System.Collections.Generic.ObjectComparer<Excel2Json.MitigationParaConfig>
  1117. // System.Collections.Generic.ObjectComparer<Excel2Json.MonsterPowerUpConfig>
  1118. // System.Collections.Generic.ObjectComparer<Excel2Json.OpenBoxConfig>
  1119. // System.Collections.Generic.ObjectComparer<Excel2Json.OpenBoxProgressReward>
  1120. // System.Collections.Generic.ObjectComparer<Excel2Json.OpenBoxScoreRule>
  1121. // System.Collections.Generic.ObjectComparer<Excel2Json.PlacesConfig>
  1122. // System.Collections.Generic.ObjectComparer<Excel2Json.PlayerGuideConfig>
  1123. // System.Collections.Generic.ObjectComparer<Excel2Json.QiankundaiConfig>
  1124. // System.Collections.Generic.ObjectComparer<Excel2Json.RandomNameListConfig>
  1125. // System.Collections.Generic.ObjectComparer<Excel2Json.ResourceLevelConfig>
  1126. // System.Collections.Generic.ObjectComparer<Excel2Json.SentimentConfig>
  1127. // System.Collections.Generic.ObjectComparer<Excel2Json.SentimentEffectConfig>
  1128. // System.Collections.Generic.ObjectComparer<Excel2Json.ShopConfig>
  1129. // System.Collections.Generic.ObjectComparer<Excel2Json.ShopGroupConfig>
  1130. // System.Collections.Generic.ObjectComparer<Excel2Json.ShopItemConfig>
  1131. // System.Collections.Generic.ObjectComparer<Excel2Json.SkillConfig>
  1132. // System.Collections.Generic.ObjectComparer<Excel2Json.SkillConstant>
  1133. // System.Collections.Generic.ObjectComparer<Excel2Json.SkillPowerupConfig>
  1134. // System.Collections.Generic.ObjectComparer<Excel2Json.SkiptoConfig>
  1135. // System.Collections.Generic.ObjectComparer<Excel2Json.SmallPlacesConfig>
  1136. // System.Collections.Generic.ObjectComparer<Excel2Json.TanxianConfig>
  1137. // System.Collections.Generic.ObjectComparer<Excel2Json.TowerConfig>
  1138. // System.Collections.Generic.ObjectComparer<Excel2Json.TowerInfoConfig>
  1139. // System.Collections.Generic.ObjectComparer<Excel2Json.UnlockConfig>
  1140. // System.Collections.Generic.ObjectComparer<Excel2Json.WorldMapConfig>
  1141. // System.Collections.Generic.ObjectComparer<Excel2Json.XianTuLogConfig>
  1142. // System.Collections.Generic.ObjectComparer<Excel2Json.daolvSkill>
  1143. // System.Collections.Generic.ObjectComparer<Excel2Json.emotionConfig>
  1144. // System.Collections.Generic.ObjectComparer<Excel2Json.guajibuff>
  1145. // System.Collections.Generic.ObjectComparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  1146. // System.Collections.Generic.ObjectComparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  1147. // System.Collections.Generic.ObjectComparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1148. // System.Collections.Generic.ObjectComparer<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1149. // System.Collections.Generic.ObjectComparer<MemoryPack.Internal.BufferSegment>
  1150. // System.Collections.Generic.ObjectComparer<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  1151. // System.Collections.Generic.ObjectComparer<System.Collections.Generic.KeyValuePair<long,object>>
  1152. // System.Collections.Generic.ObjectComparer<System.Collections.Generic.KeyValuePair<object,object>>
  1153. // System.Collections.Generic.ObjectComparer<System.Net.Sockets.Kcp.KcpSegment>
  1154. // System.Collections.Generic.ObjectComparer<UnityEngine.CombineInstance>
  1155. // System.Collections.Generic.ObjectComparer<UnityEngine.EventSystems.RaycastResult>
  1156. // System.Collections.Generic.ObjectComparer<UnityEngine.Matrix4x4>
  1157. // System.Collections.Generic.ObjectComparer<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  1158. // System.Collections.Generic.ObjectComparer<UnityEngine.UIVertex>
  1159. // System.Collections.Generic.ObjectComparer<UnityEngine.Vector2>
  1160. // System.Collections.Generic.ObjectComparer<UnityEngine.Vector3>
  1161. // System.Collections.Generic.ObjectComparer<UnityEngine.Vector4>
  1162. // System.Collections.Generic.ObjectComparer<byte>
  1163. // System.Collections.Generic.ObjectComparer<float>
  1164. // System.Collections.Generic.ObjectComparer<int>
  1165. // System.Collections.Generic.ObjectComparer<long>
  1166. // System.Collections.Generic.ObjectComparer<object>
  1167. // System.Collections.Generic.ObjectComparer<uint>
  1168. // System.Collections.Generic.ObjectEqualityComparer<Excel2Json.FabaoPowerupConfig>
  1169. // System.Collections.Generic.ObjectEqualityComparer<System.IntPtr>
  1170. // System.Collections.Generic.ObjectEqualityComparer<System.Net.Sockets.Kcp.KcpSegment>
  1171. // System.Collections.Generic.ObjectEqualityComparer<UnityEngine.Matrix4x4>
  1172. // System.Collections.Generic.ObjectEqualityComparer<UnityEngine.RenderInstancedDataLayout>
  1173. // System.Collections.Generic.ObjectEqualityComparer<UnityEngine.Vector3>
  1174. // System.Collections.Generic.ObjectEqualityComparer<UnityEngine.Vector4>
  1175. // System.Collections.Generic.ObjectEqualityComparer<float>
  1176. // System.Collections.Generic.ObjectEqualityComparer<int>
  1177. // System.Collections.Generic.ObjectEqualityComparer<long>
  1178. // System.Collections.Generic.ObjectEqualityComparer<object>
  1179. // System.Collections.Generic.ObjectEqualityComparer<uint>
  1180. // System.Collections.Generic.Queue.Enumerator<Fort23.UTool.CoroutineLockTimer>
  1181. // System.Collections.Generic.Queue.Enumerator<System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1182. // System.Collections.Generic.Queue.Enumerator<System.ArraySegment<object>>
  1183. // System.Collections.Generic.Queue.Enumerator<System.ValueTuple<object,int>>
  1184. // System.Collections.Generic.Queue.Enumerator<long>
  1185. // System.Collections.Generic.Queue.Enumerator<object>
  1186. // System.Collections.Generic.Queue<Fort23.UTool.CoroutineLockTimer>
  1187. // System.Collections.Generic.Queue<System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1188. // System.Collections.Generic.Queue<System.ArraySegment<object>>
  1189. // System.Collections.Generic.Queue<System.ValueTuple<object,int>>
  1190. // System.Collections.Generic.Queue<long>
  1191. // System.Collections.Generic.Queue<object>
  1192. // System.Collections.Generic.SortedDictionary.<>c__DisplayClass34_0<long,object>
  1193. // System.Collections.Generic.SortedDictionary.<>c__DisplayClass34_0<object,object>
  1194. // System.Collections.Generic.SortedDictionary.<>c__DisplayClass34_1<long,object>
  1195. // System.Collections.Generic.SortedDictionary.<>c__DisplayClass34_1<object,object>
  1196. // System.Collections.Generic.SortedDictionary.Enumerator<long,object>
  1197. // System.Collections.Generic.SortedDictionary.Enumerator<object,object>
  1198. // System.Collections.Generic.SortedDictionary.KeyCollection.<>c__DisplayClass5_0<long,object>
  1199. // System.Collections.Generic.SortedDictionary.KeyCollection.<>c__DisplayClass5_0<object,object>
  1200. // System.Collections.Generic.SortedDictionary.KeyCollection.<>c__DisplayClass6_0<long,object>
  1201. // System.Collections.Generic.SortedDictionary.KeyCollection.<>c__DisplayClass6_0<object,object>
  1202. // System.Collections.Generic.SortedDictionary.KeyCollection.Enumerator<long,object>
  1203. // System.Collections.Generic.SortedDictionary.KeyCollection.Enumerator<object,object>
  1204. // System.Collections.Generic.SortedDictionary.KeyCollection<long,object>
  1205. // System.Collections.Generic.SortedDictionary.KeyCollection<object,object>
  1206. // System.Collections.Generic.SortedDictionary.KeyValuePairComparer<long,object>
  1207. // System.Collections.Generic.SortedDictionary.KeyValuePairComparer<object,object>
  1208. // System.Collections.Generic.SortedDictionary.ValueCollection.<>c__DisplayClass5_0<long,object>
  1209. // System.Collections.Generic.SortedDictionary.ValueCollection.<>c__DisplayClass5_0<object,object>
  1210. // System.Collections.Generic.SortedDictionary.ValueCollection.<>c__DisplayClass6_0<long,object>
  1211. // System.Collections.Generic.SortedDictionary.ValueCollection.<>c__DisplayClass6_0<object,object>
  1212. // System.Collections.Generic.SortedDictionary.ValueCollection.Enumerator<long,object>
  1213. // System.Collections.Generic.SortedDictionary.ValueCollection.Enumerator<object,object>
  1214. // System.Collections.Generic.SortedDictionary.ValueCollection<long,object>
  1215. // System.Collections.Generic.SortedDictionary.ValueCollection<object,object>
  1216. // System.Collections.Generic.SortedDictionary<long,object>
  1217. // System.Collections.Generic.SortedDictionary<object,object>
  1218. // System.Collections.Generic.SortedSet.<>c__DisplayClass52_0<System.Collections.Generic.KeyValuePair<long,object>>
  1219. // System.Collections.Generic.SortedSet.<>c__DisplayClass52_0<System.Collections.Generic.KeyValuePair<object,object>>
  1220. // System.Collections.Generic.SortedSet.<>c__DisplayClass53_0<System.Collections.Generic.KeyValuePair<long,object>>
  1221. // System.Collections.Generic.SortedSet.<>c__DisplayClass53_0<System.Collections.Generic.KeyValuePair<object,object>>
  1222. // System.Collections.Generic.SortedSet.Enumerator<System.Collections.Generic.KeyValuePair<long,object>>
  1223. // System.Collections.Generic.SortedSet.Enumerator<System.Collections.Generic.KeyValuePair<object,object>>
  1224. // System.Collections.Generic.SortedSet.Node<System.Collections.Generic.KeyValuePair<long,object>>
  1225. // System.Collections.Generic.SortedSet.Node<System.Collections.Generic.KeyValuePair<object,object>>
  1226. // System.Collections.Generic.SortedSet<System.Collections.Generic.KeyValuePair<long,object>>
  1227. // System.Collections.Generic.SortedSet<System.Collections.Generic.KeyValuePair<object,object>>
  1228. // System.Collections.Generic.Stack.Enumerator<System.IntPtr>
  1229. // System.Collections.Generic.Stack.Enumerator<object>
  1230. // System.Collections.Generic.Stack<System.IntPtr>
  1231. // System.Collections.Generic.Stack<object>
  1232. // System.Collections.Generic.TreeSet<System.Collections.Generic.KeyValuePair<long,object>>
  1233. // System.Collections.Generic.TreeSet<System.Collections.Generic.KeyValuePair<object,object>>
  1234. // System.Collections.Generic.TreeWalkPredicate<System.Collections.Generic.KeyValuePair<long,object>>
  1235. // System.Collections.Generic.TreeWalkPredicate<System.Collections.Generic.KeyValuePair<object,object>>
  1236. // System.Collections.ObjectModel.ReadOnlyCollection<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  1237. // System.Collections.ObjectModel.ReadOnlyCollection<Core.BattleReport.ReportFightMassgeLogData>
  1238. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.AttributeConfig>
  1239. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.BigMapConfig>
  1240. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.BuffConfig>
  1241. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.ChanllegeResource>
  1242. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.ChanllegeTower>
  1243. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.DaoyouGiftConfig>
  1244. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.DaoyouLevelupConfig>
  1245. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.DaoyouModelConfig>
  1246. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.DaoyouguajiResourcLevel>
  1247. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.DivineSenseConfig>
  1248. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.DropConfig>
  1249. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.DropCountConfig>
  1250. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.DropGroupConfig>
  1251. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.DropItemConfig>
  1252. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.EventConditionConfig>
  1253. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.EventConfig>
  1254. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.EventLinkConfig>
  1255. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.EventNPC>
  1256. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.FabaoConfig>
  1257. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.FabaoPowerupConfig>
  1258. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.GameConstantConfig>
  1259. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.GroupConfig>
  1260. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.HeroModelConfig>
  1261. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.HeroPowerUpConfig>
  1262. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.HeroQiangDuAddConfig>
  1263. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.InitialPlayerConfig>
  1264. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.ItemConfig>
  1265. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.LanguageChineseConfig>
  1266. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.LanguageChineseConfig_skill>
  1267. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.LevelSupressConfig>
  1268. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.LevelbattleConfig>
  1269. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.MitigationParaConfig>
  1270. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.MonsterPowerUpConfig>
  1271. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.OpenBoxConfig>
  1272. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.OpenBoxProgressReward>
  1273. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.OpenBoxScoreRule>
  1274. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.PlacesConfig>
  1275. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.PlayerGuideConfig>
  1276. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.QiankundaiConfig>
  1277. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.RandomNameListConfig>
  1278. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.ResourceLevelConfig>
  1279. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.SentimentConfig>
  1280. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.SentimentEffectConfig>
  1281. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.ShopConfig>
  1282. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.ShopGroupConfig>
  1283. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.ShopItemConfig>
  1284. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.SkillConfig>
  1285. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.SkillConstant>
  1286. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.SkillPowerupConfig>
  1287. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.SkiptoConfig>
  1288. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.SmallPlacesConfig>
  1289. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.TanxianConfig>
  1290. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.TowerConfig>
  1291. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.TowerInfoConfig>
  1292. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.UnlockConfig>
  1293. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.WorldMapConfig>
  1294. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.XianTuLogConfig>
  1295. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.daolvSkill>
  1296. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.emotionConfig>
  1297. // System.Collections.ObjectModel.ReadOnlyCollection<Excel2Json.guajibuff>
  1298. // System.Collections.ObjectModel.ReadOnlyCollection<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  1299. // System.Collections.ObjectModel.ReadOnlyCollection<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  1300. // System.Collections.ObjectModel.ReadOnlyCollection<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1301. // System.Collections.ObjectModel.ReadOnlyCollection<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1302. // System.Collections.ObjectModel.ReadOnlyCollection<MemoryPack.Internal.BufferSegment>
  1303. // System.Collections.ObjectModel.ReadOnlyCollection<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  1304. // System.Collections.ObjectModel.ReadOnlyCollection<System.Net.Sockets.Kcp.KcpSegment>
  1305. // System.Collections.ObjectModel.ReadOnlyCollection<UnityEngine.CombineInstance>
  1306. // System.Collections.ObjectModel.ReadOnlyCollection<UnityEngine.EventSystems.RaycastResult>
  1307. // System.Collections.ObjectModel.ReadOnlyCollection<UnityEngine.Matrix4x4>
  1308. // System.Collections.ObjectModel.ReadOnlyCollection<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  1309. // System.Collections.ObjectModel.ReadOnlyCollection<UnityEngine.UIVertex>
  1310. // System.Collections.ObjectModel.ReadOnlyCollection<UnityEngine.Vector2>
  1311. // System.Collections.ObjectModel.ReadOnlyCollection<UnityEngine.Vector3>
  1312. // System.Collections.ObjectModel.ReadOnlyCollection<UnityEngine.Vector4>
  1313. // System.Collections.ObjectModel.ReadOnlyCollection<byte>
  1314. // System.Collections.ObjectModel.ReadOnlyCollection<float>
  1315. // System.Collections.ObjectModel.ReadOnlyCollection<int>
  1316. // System.Collections.ObjectModel.ReadOnlyCollection<long>
  1317. // System.Collections.ObjectModel.ReadOnlyCollection<object>
  1318. // System.Comparison<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  1319. // System.Comparison<Core.BattleReport.ReportFightMassgeLogData>
  1320. // System.Comparison<Excel2Json.AttributeConfig>
  1321. // System.Comparison<Excel2Json.BigMapConfig>
  1322. // System.Comparison<Excel2Json.BuffConfig>
  1323. // System.Comparison<Excel2Json.ChanllegeResource>
  1324. // System.Comparison<Excel2Json.ChanllegeTower>
  1325. // System.Comparison<Excel2Json.DaoyouGiftConfig>
  1326. // System.Comparison<Excel2Json.DaoyouLevelupConfig>
  1327. // System.Comparison<Excel2Json.DaoyouModelConfig>
  1328. // System.Comparison<Excel2Json.DaoyouguajiResourcLevel>
  1329. // System.Comparison<Excel2Json.DivineSenseConfig>
  1330. // System.Comparison<Excel2Json.DropConfig>
  1331. // System.Comparison<Excel2Json.DropCountConfig>
  1332. // System.Comparison<Excel2Json.DropGroupConfig>
  1333. // System.Comparison<Excel2Json.DropItemConfig>
  1334. // System.Comparison<Excel2Json.EventConditionConfig>
  1335. // System.Comparison<Excel2Json.EventConfig>
  1336. // System.Comparison<Excel2Json.EventLinkConfig>
  1337. // System.Comparison<Excel2Json.EventNPC>
  1338. // System.Comparison<Excel2Json.FabaoConfig>
  1339. // System.Comparison<Excel2Json.FabaoPowerupConfig>
  1340. // System.Comparison<Excel2Json.GameConstantConfig>
  1341. // System.Comparison<Excel2Json.GroupConfig>
  1342. // System.Comparison<Excel2Json.HeroModelConfig>
  1343. // System.Comparison<Excel2Json.HeroPowerUpConfig>
  1344. // System.Comparison<Excel2Json.HeroQiangDuAddConfig>
  1345. // System.Comparison<Excel2Json.InitialPlayerConfig>
  1346. // System.Comparison<Excel2Json.ItemConfig>
  1347. // System.Comparison<Excel2Json.LanguageChineseConfig>
  1348. // System.Comparison<Excel2Json.LanguageChineseConfig_skill>
  1349. // System.Comparison<Excel2Json.LevelSupressConfig>
  1350. // System.Comparison<Excel2Json.LevelbattleConfig>
  1351. // System.Comparison<Excel2Json.MitigationParaConfig>
  1352. // System.Comparison<Excel2Json.MonsterPowerUpConfig>
  1353. // System.Comparison<Excel2Json.OpenBoxConfig>
  1354. // System.Comparison<Excel2Json.OpenBoxProgressReward>
  1355. // System.Comparison<Excel2Json.OpenBoxScoreRule>
  1356. // System.Comparison<Excel2Json.PlacesConfig>
  1357. // System.Comparison<Excel2Json.PlayerGuideConfig>
  1358. // System.Comparison<Excel2Json.QiankundaiConfig>
  1359. // System.Comparison<Excel2Json.RandomNameListConfig>
  1360. // System.Comparison<Excel2Json.ResourceLevelConfig>
  1361. // System.Comparison<Excel2Json.SentimentConfig>
  1362. // System.Comparison<Excel2Json.SentimentEffectConfig>
  1363. // System.Comparison<Excel2Json.ShopConfig>
  1364. // System.Comparison<Excel2Json.ShopGroupConfig>
  1365. // System.Comparison<Excel2Json.ShopItemConfig>
  1366. // System.Comparison<Excel2Json.SkillConfig>
  1367. // System.Comparison<Excel2Json.SkillConstant>
  1368. // System.Comparison<Excel2Json.SkillPowerupConfig>
  1369. // System.Comparison<Excel2Json.SkiptoConfig>
  1370. // System.Comparison<Excel2Json.SmallPlacesConfig>
  1371. // System.Comparison<Excel2Json.TanxianConfig>
  1372. // System.Comparison<Excel2Json.TowerConfig>
  1373. // System.Comparison<Excel2Json.TowerInfoConfig>
  1374. // System.Comparison<Excel2Json.UnlockConfig>
  1375. // System.Comparison<Excel2Json.WorldMapConfig>
  1376. // System.Comparison<Excel2Json.XianTuLogConfig>
  1377. // System.Comparison<Excel2Json.daolvSkill>
  1378. // System.Comparison<Excel2Json.emotionConfig>
  1379. // System.Comparison<Excel2Json.guajibuff>
  1380. // System.Comparison<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  1381. // System.Comparison<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  1382. // System.Comparison<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1383. // System.Comparison<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1384. // System.Comparison<MemoryPack.Internal.BufferSegment>
  1385. // System.Comparison<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  1386. // System.Comparison<System.Net.Sockets.Kcp.KcpSegment>
  1387. // System.Comparison<UnityEngine.CombineInstance>
  1388. // System.Comparison<UnityEngine.EventSystems.RaycastResult>
  1389. // System.Comparison<UnityEngine.Matrix4x4>
  1390. // System.Comparison<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  1391. // System.Comparison<UnityEngine.UIVertex>
  1392. // System.Comparison<UnityEngine.Vector2>
  1393. // System.Comparison<UnityEngine.Vector3>
  1394. // System.Comparison<UnityEngine.Vector4>
  1395. // System.Comparison<byte>
  1396. // System.Comparison<float>
  1397. // System.Comparison<int>
  1398. // System.Comparison<long>
  1399. // System.Comparison<object>
  1400. // System.Func<Excel2Json.EventConfig,byte>
  1401. // System.Func<Excel2Json.FabaoPowerupConfig,Excel2Json.FabaoPowerupConfig>
  1402. // System.Func<Excel2Json.FabaoPowerupConfig,int>
  1403. // System.Func<Excel2Json.HeroPowerUpConfig,byte>
  1404. // System.Func<Excel2Json.ItemConfig,byte>
  1405. // System.Func<Excel2Json.OpenBoxScoreRule,byte>
  1406. // System.Func<Excel2Json.OpenBoxScoreRule,int>
  1407. // System.Func<Excel2Json.SentimentEffectConfig,byte>
  1408. // System.Func<Excel2Json.SkillConfig,byte>
  1409. // System.Func<Excel2Json.TowerInfoConfig,byte>
  1410. // System.Func<System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1411. // System.Func<System.ArraySegment<object>>
  1412. // System.Func<System.Net.Sockets.UdpReceiveResult>
  1413. // System.Func<System.Threading.Tasks.VoidTaskResult>
  1414. // System.Func<System.ValueTuple<object,int>>
  1415. // System.Func<UnityEngine.Vector3,System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>,UnityEngine.Vector3>
  1416. // System.Func<UnityEngine.Vector3>
  1417. // System.Func<float,byte>
  1418. // System.Func<float>
  1419. // System.Func<int,byte>
  1420. // System.Func<int>
  1421. // System.Func<object,System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1422. // System.Func<object,System.ArraySegment<object>>
  1423. // System.Func<object,System.Net.Sockets.UdpReceiveResult>
  1424. // System.Func<object,System.Threading.Tasks.VoidTaskResult>
  1425. // System.Func<object,System.ValueTuple<object,int>>
  1426. // System.Func<object,byte>
  1427. // System.Func<object,float>
  1428. // System.Func<object,int>
  1429. // System.Func<object,object,object>
  1430. // System.Func<object,object>
  1431. // System.Func<object>
  1432. // System.Linq.Buffer<Excel2Json.FabaoPowerupConfig>
  1433. // System.Linq.Buffer<Excel2Json.HeroPowerUpConfig>
  1434. // System.Linq.Buffer<byte>
  1435. // System.Linq.Buffer<float>
  1436. // System.Linq.Buffer<object>
  1437. // System.Linq.Enumerable.<IntersectIterator>d__74<object>
  1438. // System.Linq.Enumerable.<ReverseIterator>d__79<byte>
  1439. // System.Linq.Enumerable.Iterator<Excel2Json.EventConfig>
  1440. // System.Linq.Enumerable.Iterator<Excel2Json.HeroPowerUpConfig>
  1441. // System.Linq.Enumerable.Iterator<Excel2Json.ItemConfig>
  1442. // System.Linq.Enumerable.Iterator<Excel2Json.OpenBoxScoreRule>
  1443. // System.Linq.Enumerable.Iterator<Excel2Json.SentimentEffectConfig>
  1444. // System.Linq.Enumerable.Iterator<Excel2Json.SkillConfig>
  1445. // System.Linq.Enumerable.Iterator<Excel2Json.TowerInfoConfig>
  1446. // System.Linq.Enumerable.Iterator<float>
  1447. // System.Linq.Enumerable.Iterator<int>
  1448. // System.Linq.Enumerable.Iterator<object>
  1449. // System.Linq.Enumerable.WhereArrayIterator<Excel2Json.EventConfig>
  1450. // System.Linq.Enumerable.WhereArrayIterator<Excel2Json.HeroPowerUpConfig>
  1451. // System.Linq.Enumerable.WhereArrayIterator<Excel2Json.ItemConfig>
  1452. // System.Linq.Enumerable.WhereArrayIterator<Excel2Json.SentimentEffectConfig>
  1453. // System.Linq.Enumerable.WhereArrayIterator<Excel2Json.SkillConfig>
  1454. // System.Linq.Enumerable.WhereArrayIterator<Excel2Json.TowerInfoConfig>
  1455. // System.Linq.Enumerable.WhereArrayIterator<object>
  1456. // System.Linq.Enumerable.WhereEnumerableIterator<Excel2Json.EventConfig>
  1457. // System.Linq.Enumerable.WhereEnumerableIterator<Excel2Json.HeroPowerUpConfig>
  1458. // System.Linq.Enumerable.WhereEnumerableIterator<Excel2Json.ItemConfig>
  1459. // System.Linq.Enumerable.WhereEnumerableIterator<Excel2Json.SentimentEffectConfig>
  1460. // System.Linq.Enumerable.WhereEnumerableIterator<Excel2Json.SkillConfig>
  1461. // System.Linq.Enumerable.WhereEnumerableIterator<Excel2Json.TowerInfoConfig>
  1462. // System.Linq.Enumerable.WhereEnumerableIterator<float>
  1463. // System.Linq.Enumerable.WhereEnumerableIterator<int>
  1464. // System.Linq.Enumerable.WhereEnumerableIterator<object>
  1465. // System.Linq.Enumerable.WhereListIterator<Excel2Json.EventConfig>
  1466. // System.Linq.Enumerable.WhereListIterator<Excel2Json.HeroPowerUpConfig>
  1467. // System.Linq.Enumerable.WhereListIterator<Excel2Json.ItemConfig>
  1468. // System.Linq.Enumerable.WhereListIterator<Excel2Json.SentimentEffectConfig>
  1469. // System.Linq.Enumerable.WhereListIterator<Excel2Json.SkillConfig>
  1470. // System.Linq.Enumerable.WhereListIterator<Excel2Json.TowerInfoConfig>
  1471. // System.Linq.Enumerable.WhereListIterator<object>
  1472. // System.Linq.Enumerable.WhereSelectArrayIterator<Excel2Json.OpenBoxScoreRule,int>
  1473. // System.Linq.Enumerable.WhereSelectArrayIterator<object,float>
  1474. // System.Linq.Enumerable.WhereSelectArrayIterator<object,int>
  1475. // System.Linq.Enumerable.WhereSelectArrayIterator<object,object>
  1476. // System.Linq.Enumerable.WhereSelectEnumerableIterator<Excel2Json.OpenBoxScoreRule,int>
  1477. // System.Linq.Enumerable.WhereSelectEnumerableIterator<object,float>
  1478. // System.Linq.Enumerable.WhereSelectEnumerableIterator<object,int>
  1479. // System.Linq.Enumerable.WhereSelectEnumerableIterator<object,object>
  1480. // System.Linq.Enumerable.WhereSelectListIterator<Excel2Json.OpenBoxScoreRule,int>
  1481. // System.Linq.Enumerable.WhereSelectListIterator<object,float>
  1482. // System.Linq.Enumerable.WhereSelectListIterator<object,int>
  1483. // System.Linq.Enumerable.WhereSelectListIterator<object,object>
  1484. // System.Linq.EnumerableSorter<Excel2Json.FabaoPowerupConfig,int>
  1485. // System.Linq.EnumerableSorter<Excel2Json.FabaoPowerupConfig>
  1486. // System.Linq.EnumerableSorter<object,int>
  1487. // System.Linq.EnumerableSorter<object>
  1488. // System.Linq.GroupedEnumerable<Excel2Json.FabaoPowerupConfig,int,Excel2Json.FabaoPowerupConfig>
  1489. // System.Linq.IdentityFunction.<>c<Excel2Json.FabaoPowerupConfig>
  1490. // System.Linq.IdentityFunction<Excel2Json.FabaoPowerupConfig>
  1491. // System.Linq.Lookup.<GetEnumerator>d__12<int,Excel2Json.FabaoPowerupConfig>
  1492. // System.Linq.Lookup.Grouping.<GetEnumerator>d__7<int,Excel2Json.FabaoPowerupConfig>
  1493. // System.Linq.Lookup.Grouping<int,Excel2Json.FabaoPowerupConfig>
  1494. // System.Linq.Lookup<int,Excel2Json.FabaoPowerupConfig>
  1495. // System.Linq.OrderedEnumerable.<GetEnumerator>d__1<Excel2Json.FabaoPowerupConfig>
  1496. // System.Linq.OrderedEnumerable.<GetEnumerator>d__1<object>
  1497. // System.Linq.OrderedEnumerable<Excel2Json.FabaoPowerupConfig,int>
  1498. // System.Linq.OrderedEnumerable<Excel2Json.FabaoPowerupConfig>
  1499. // System.Linq.OrderedEnumerable<object,int>
  1500. // System.Linq.OrderedEnumerable<object>
  1501. // System.Linq.Set<object>
  1502. // System.Memory<byte>
  1503. // System.Nullable<int>
  1504. // System.Predicate<CombatLibrary.CombatLibrary.CombatCore.Utility.CurveInfo>
  1505. // System.Predicate<Core.BattleReport.ReportFightMassgeLogData>
  1506. // System.Predicate<Excel2Json.AttributeConfig>
  1507. // System.Predicate<Excel2Json.BigMapConfig>
  1508. // System.Predicate<Excel2Json.BuffConfig>
  1509. // System.Predicate<Excel2Json.ChanllegeResource>
  1510. // System.Predicate<Excel2Json.ChanllegeTower>
  1511. // System.Predicate<Excel2Json.DaoyouGiftConfig>
  1512. // System.Predicate<Excel2Json.DaoyouLevelupConfig>
  1513. // System.Predicate<Excel2Json.DaoyouModelConfig>
  1514. // System.Predicate<Excel2Json.DaoyouguajiResourcLevel>
  1515. // System.Predicate<Excel2Json.DivineSenseConfig>
  1516. // System.Predicate<Excel2Json.DropConfig>
  1517. // System.Predicate<Excel2Json.DropCountConfig>
  1518. // System.Predicate<Excel2Json.DropGroupConfig>
  1519. // System.Predicate<Excel2Json.DropItemConfig>
  1520. // System.Predicate<Excel2Json.EventConditionConfig>
  1521. // System.Predicate<Excel2Json.EventConfig>
  1522. // System.Predicate<Excel2Json.EventLinkConfig>
  1523. // System.Predicate<Excel2Json.EventNPC>
  1524. // System.Predicate<Excel2Json.FabaoConfig>
  1525. // System.Predicate<Excel2Json.FabaoPowerupConfig>
  1526. // System.Predicate<Excel2Json.GameConstantConfig>
  1527. // System.Predicate<Excel2Json.GroupConfig>
  1528. // System.Predicate<Excel2Json.HeroModelConfig>
  1529. // System.Predicate<Excel2Json.HeroPowerUpConfig>
  1530. // System.Predicate<Excel2Json.HeroQiangDuAddConfig>
  1531. // System.Predicate<Excel2Json.InitialPlayerConfig>
  1532. // System.Predicate<Excel2Json.ItemConfig>
  1533. // System.Predicate<Excel2Json.LanguageChineseConfig>
  1534. // System.Predicate<Excel2Json.LanguageChineseConfig_skill>
  1535. // System.Predicate<Excel2Json.LevelSupressConfig>
  1536. // System.Predicate<Excel2Json.LevelbattleConfig>
  1537. // System.Predicate<Excel2Json.MitigationParaConfig>
  1538. // System.Predicate<Excel2Json.MonsterPowerUpConfig>
  1539. // System.Predicate<Excel2Json.OpenBoxConfig>
  1540. // System.Predicate<Excel2Json.OpenBoxProgressReward>
  1541. // System.Predicate<Excel2Json.OpenBoxScoreRule>
  1542. // System.Predicate<Excel2Json.PlacesConfig>
  1543. // System.Predicate<Excel2Json.PlayerGuideConfig>
  1544. // System.Predicate<Excel2Json.QiankundaiConfig>
  1545. // System.Predicate<Excel2Json.RandomNameListConfig>
  1546. // System.Predicate<Excel2Json.ResourceLevelConfig>
  1547. // System.Predicate<Excel2Json.SentimentConfig>
  1548. // System.Predicate<Excel2Json.SentimentEffectConfig>
  1549. // System.Predicate<Excel2Json.ShopConfig>
  1550. // System.Predicate<Excel2Json.ShopGroupConfig>
  1551. // System.Predicate<Excel2Json.ShopItemConfig>
  1552. // System.Predicate<Excel2Json.SkillConfig>
  1553. // System.Predicate<Excel2Json.SkillConstant>
  1554. // System.Predicate<Excel2Json.SkillPowerupConfig>
  1555. // System.Predicate<Excel2Json.SkiptoConfig>
  1556. // System.Predicate<Excel2Json.SmallPlacesConfig>
  1557. // System.Predicate<Excel2Json.TanxianConfig>
  1558. // System.Predicate<Excel2Json.TowerConfig>
  1559. // System.Predicate<Excel2Json.TowerInfoConfig>
  1560. // System.Predicate<Excel2Json.UnlockConfig>
  1561. // System.Predicate<Excel2Json.WorldMapConfig>
  1562. // System.Predicate<Excel2Json.XianTuLogConfig>
  1563. // System.Predicate<Excel2Json.daolvSkill>
  1564. // System.Predicate<Excel2Json.emotionConfig>
  1565. // System.Predicate<Excel2Json.guajibuff>
  1566. // System.Predicate<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationDataBufferElement>
  1567. // System.Predicate<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAnimationEventOccurenceBufferElement>
  1568. // System.Predicate<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1569. // System.Predicate<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1570. // System.Predicate<MemoryPack.Internal.BufferSegment>
  1571. // System.Predicate<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>
  1572. // System.Predicate<System.IntPtr>
  1573. // System.Predicate<System.Net.Sockets.Kcp.KcpSegment>
  1574. // System.Predicate<UnityEngine.CombineInstance>
  1575. // System.Predicate<UnityEngine.EventSystems.RaycastResult>
  1576. // System.Predicate<UnityEngine.Matrix4x4>
  1577. // System.Predicate<UnityEngine.UI.UGUITextTool.LanguageChineseConfig>
  1578. // System.Predicate<UnityEngine.UIVertex>
  1579. // System.Predicate<UnityEngine.Vector2>
  1580. // System.Predicate<UnityEngine.Vector3>
  1581. // System.Predicate<UnityEngine.Vector4>
  1582. // System.Predicate<byte>
  1583. // System.Predicate<float>
  1584. // System.Predicate<int>
  1585. // System.Predicate<long>
  1586. // System.Predicate<object>
  1587. // System.ReadOnlyMemory<byte>
  1588. // System.ReadOnlySpan.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1589. // System.ReadOnlySpan.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1590. // System.ReadOnlySpan.Enumerator<UnityEngine.Quaternion>
  1591. // System.ReadOnlySpan.Enumerator<UnityEngine.Vector3>
  1592. // System.ReadOnlySpan.Enumerator<UnityEngine.jvalue>
  1593. // System.ReadOnlySpan.Enumerator<byte>
  1594. // System.ReadOnlySpan.Enumerator<ushort>
  1595. // System.ReadOnlySpan<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1596. // System.ReadOnlySpan<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1597. // System.ReadOnlySpan<UnityEngine.Quaternion>
  1598. // System.ReadOnlySpan<UnityEngine.Vector3>
  1599. // System.ReadOnlySpan<UnityEngine.jvalue>
  1600. // System.ReadOnlySpan<byte>
  1601. // System.ReadOnlySpan<ushort>
  1602. // System.Runtime.CompilerServices.AsyncTaskMethodBuilder<System.Threading.Tasks.VoidTaskResult>
  1603. // System.Runtime.CompilerServices.AsyncTaskMethodBuilder<int>
  1604. // System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder<int>
  1605. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1606. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<object>>
  1607. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.Net.Sockets.UdpReceiveResult>
  1608. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>
  1609. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ValueTuple<object,int>>
  1610. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<int>
  1611. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>
  1612. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable<System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1613. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable<System.ArraySegment<object>>
  1614. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable<System.Net.Sockets.UdpReceiveResult>
  1615. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable<System.Threading.Tasks.VoidTaskResult>
  1616. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable<System.ValueTuple<object,int>>
  1617. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable<int>
  1618. // System.Runtime.CompilerServices.ConfiguredTaskAwaitable<object>
  1619. // System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter<int>
  1620. // System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable<int>
  1621. // System.Runtime.CompilerServices.TaskAwaiter<System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1622. // System.Runtime.CompilerServices.TaskAwaiter<System.ArraySegment<object>>
  1623. // System.Runtime.CompilerServices.TaskAwaiter<System.Net.Sockets.UdpReceiveResult>
  1624. // System.Runtime.CompilerServices.TaskAwaiter<System.Threading.Tasks.VoidTaskResult>
  1625. // System.Runtime.CompilerServices.TaskAwaiter<System.ValueTuple<object,int>>
  1626. // System.Runtime.CompilerServices.TaskAwaiter<int>
  1627. // System.Runtime.CompilerServices.TaskAwaiter<object>
  1628. // System.Runtime.CompilerServices.ValueTaskAwaiter<int>
  1629. // System.Span.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1630. // System.Span.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1631. // System.Span.Enumerator<UnityEngine.Quaternion>
  1632. // System.Span.Enumerator<UnityEngine.Vector3>
  1633. // System.Span.Enumerator<UnityEngine.jvalue>
  1634. // System.Span.Enumerator<byte>
  1635. // System.Span.Enumerator<ushort>
  1636. // System.Span<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1637. // System.Span<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1638. // System.Span<UnityEngine.Quaternion>
  1639. // System.Span<UnityEngine.Vector3>
  1640. // System.Span<UnityEngine.jvalue>
  1641. // System.Span<byte>
  1642. // System.Span<ushort>
  1643. // System.Threading.Tasks.ContinuationTaskFromResultTask<System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1644. // System.Threading.Tasks.ContinuationTaskFromResultTask<System.ArraySegment<object>>
  1645. // System.Threading.Tasks.ContinuationTaskFromResultTask<System.Net.Sockets.UdpReceiveResult>
  1646. // System.Threading.Tasks.ContinuationTaskFromResultTask<System.Threading.Tasks.VoidTaskResult>
  1647. // System.Threading.Tasks.ContinuationTaskFromResultTask<System.ValueTuple<object,int>>
  1648. // System.Threading.Tasks.ContinuationTaskFromResultTask<int>
  1649. // System.Threading.Tasks.ContinuationTaskFromResultTask<object>
  1650. // System.Threading.Tasks.Sources.IValueTaskSource<int>
  1651. // System.Threading.Tasks.Task<System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1652. // System.Threading.Tasks.Task<System.ArraySegment<object>>
  1653. // System.Threading.Tasks.Task<System.Net.Sockets.UdpReceiveResult>
  1654. // System.Threading.Tasks.Task<System.Threading.Tasks.VoidTaskResult>
  1655. // System.Threading.Tasks.Task<System.ValueTuple<object,int>>
  1656. // System.Threading.Tasks.Task<int>
  1657. // System.Threading.Tasks.Task<object>
  1658. // System.Threading.Tasks.TaskCompletionSource<System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1659. // System.Threading.Tasks.TaskCompletionSource<System.ArraySegment<object>>
  1660. // System.Threading.Tasks.TaskCompletionSource<System.ValueTuple<object,int>>
  1661. // System.Threading.Tasks.TaskCompletionSource<object>
  1662. // System.Threading.Tasks.TaskFactory.<>c__DisplayClass35_0<System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1663. // System.Threading.Tasks.TaskFactory.<>c__DisplayClass35_0<System.ArraySegment<object>>
  1664. // System.Threading.Tasks.TaskFactory.<>c__DisplayClass35_0<System.Net.Sockets.UdpReceiveResult>
  1665. // System.Threading.Tasks.TaskFactory.<>c__DisplayClass35_0<System.Threading.Tasks.VoidTaskResult>
  1666. // System.Threading.Tasks.TaskFactory.<>c__DisplayClass35_0<System.ValueTuple<object,int>>
  1667. // System.Threading.Tasks.TaskFactory.<>c__DisplayClass35_0<int>
  1668. // System.Threading.Tasks.TaskFactory.<>c__DisplayClass35_0<object>
  1669. // System.Threading.Tasks.TaskFactory<System.ArraySegment<System.Net.Sockets.Kcp.KcpSegment>>
  1670. // System.Threading.Tasks.TaskFactory<System.ArraySegment<object>>
  1671. // System.Threading.Tasks.TaskFactory<System.Net.Sockets.UdpReceiveResult>
  1672. // System.Threading.Tasks.TaskFactory<System.Threading.Tasks.VoidTaskResult>
  1673. // System.Threading.Tasks.TaskFactory<System.ValueTuple<object,int>>
  1674. // System.Threading.Tasks.TaskFactory<int>
  1675. // System.Threading.Tasks.TaskFactory<object>
  1676. // System.Threading.Tasks.ValueTask.ValueTaskSourceAsTask.<>c<int>
  1677. // System.Threading.Tasks.ValueTask.ValueTaskSourceAsTask<int>
  1678. // System.Threading.Tasks.ValueTask<int>
  1679. // System.ValueTuple<object,int>
  1680. // System.ValueTuple<object,object>
  1681. // System.ValueTuple<uint,uint>
  1682. // TMPro.FastAction<object>
  1683. // Unity.Collections.NativeArray.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1684. // Unity.Collections.NativeArray.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1685. // Unity.Collections.NativeArray.ReadOnly.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1686. // Unity.Collections.NativeArray.ReadOnly.Enumerator<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1687. // Unity.Collections.NativeArray.ReadOnly<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1688. // Unity.Collections.NativeArray.ReadOnly<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1689. // Unity.Collections.NativeArray<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsAttachmentAnchorDataBufferElement>
  1690. // Unity.Collections.NativeArray<GPUECSAnimationBaker.Engine.AnimatorSystem.GpuEcsCurrentAttachmentAnchorBufferElement>
  1691. // UnityEngine.AsyncInstantiateOperation<object>
  1692. // UnityEngine.Events.InvokableCall<UnityEngine.Vector2>
  1693. // UnityEngine.Events.InvokableCall<byte>
  1694. // UnityEngine.Events.InvokableCall<float>
  1695. // UnityEngine.Events.InvokableCall<object,int,int>
  1696. // UnityEngine.Events.InvokableCall<object,object,int>
  1697. // UnityEngine.Events.InvokableCall<object>
  1698. // UnityEngine.Events.InvokableCall<ushort,int>
  1699. // UnityEngine.Events.UnityAction<UnityEngine.Vector2>
  1700. // UnityEngine.Events.UnityAction<byte>
  1701. // UnityEngine.Events.UnityAction<float>
  1702. // UnityEngine.Events.UnityAction<object,int,int>
  1703. // UnityEngine.Events.UnityAction<object,object,int>
  1704. // UnityEngine.Events.UnityAction<object>
  1705. // UnityEngine.Events.UnityAction<ushort,int>
  1706. // UnityEngine.Events.UnityEvent<UnityEngine.Vector2>
  1707. // UnityEngine.Events.UnityEvent<byte>
  1708. // UnityEngine.Events.UnityEvent<float>
  1709. // UnityEngine.Events.UnityEvent<object,int,int>
  1710. // UnityEngine.Events.UnityEvent<object,object,int>
  1711. // UnityEngine.Events.UnityEvent<object>
  1712. // UnityEngine.Events.UnityEvent<ushort,int>
  1713. // UnityEngine.ExposedReference<object>
  1714. // UnityEngine.Pool.CollectionPool.<>c<object,object>
  1715. // UnityEngine.Pool.CollectionPool<object,object>
  1716. // }}
  1717. public void RefMethods()
  1718. {
  1719. // object LitJson.JsonMapper.ToObject<object>(string)
  1720. // System.Collections.Generic.List<object> MemoryPack.Formatters.ListFormatter.DeserializePackable<object>(MemoryPack.MemoryPackReader&)
  1721. // System.Void MemoryPack.Formatters.ListFormatter.DeserializePackable<object>(MemoryPack.MemoryPackReader&,System.Collections.Generic.List<object>&)
  1722. // System.Void MemoryPack.Formatters.ListFormatter.SerializePackable<object,object>(MemoryPack.MemoryPackWriter<object>&,System.Collections.Generic.List<object>)
  1723. // System.Void MemoryPack.IMemoryPackFormatter<object>.Serialize<object>(MemoryPack.MemoryPackWriter<object>&,object&)
  1724. // byte[] MemoryPack.Internal.MemoryMarshalEx.AllocateUninitializedArray<byte>(int,bool)
  1725. // byte& MemoryPack.Internal.MemoryMarshalEx.GetArrayDataReference<byte>(byte[])
  1726. // MemoryPack.MemoryPackFormatter<object> MemoryPack.MemoryPackFormatterProvider.GetFormatter<object>()
  1727. // bool MemoryPack.MemoryPackFormatterProvider.IsRegistered<int>()
  1728. // bool MemoryPack.MemoryPackFormatterProvider.IsRegistered<object>()
  1729. // System.Void MemoryPack.MemoryPackFormatterProvider.Register<int>(MemoryPack.MemoryPackFormatter<int>)
  1730. // System.Void MemoryPack.MemoryPackFormatterProvider.Register<object>(MemoryPack.MemoryPackFormatter<object>)
  1731. // MemoryPack.IMemoryPackFormatter<object> MemoryPack.MemoryPackReader.GetFormatter<object>()
  1732. // System.Void MemoryPack.MemoryPackReader.ReadPackable<object>(object&)
  1733. // object MemoryPack.MemoryPackReader.ReadPackable<object>()
  1734. // System.Void MemoryPack.MemoryPackReader.ReadUnmanaged<byte>(byte&)
  1735. // System.Void MemoryPack.MemoryPackReader.ReadUnmanaged<int,int,int,byte>(int&,int&,int&,byte&)
  1736. // System.Void MemoryPack.MemoryPackReader.ReadUnmanaged<int,int,int,int>(int&,int&,int&,int&)
  1737. // System.Void MemoryPack.MemoryPackReader.ReadUnmanaged<int,int>(int&,int&)
  1738. // System.Void MemoryPack.MemoryPackReader.ReadUnmanaged<int,long>(int&,long&)
  1739. // System.Void MemoryPack.MemoryPackReader.ReadUnmanaged<int>(int&)
  1740. // System.Void MemoryPack.MemoryPackReader.ReadUnmanaged<long>(long&)
  1741. // System.Void MemoryPack.MemoryPackReader.ReadValue<object>(object&)
  1742. // object MemoryPack.MemoryPackReader.ReadValue<object>()
  1743. // int MemoryPack.MemoryPackSerializer.Deserialize<object>(System.ReadOnlySpan<byte>,object&,MemoryPack.MemoryPackSerializerOptions)
  1744. // object MemoryPack.MemoryPackSerializer.Deserialize<object>(System.ReadOnlySpan<byte>,MemoryPack.MemoryPackSerializerOptions)
  1745. // System.Void MemoryPack.MemoryPackSerializer.Serialize<object,object>(MemoryPack.MemoryPackWriter<object>&,object&)
  1746. // byte[] MemoryPack.MemoryPackSerializer.Serialize<object>(object&,MemoryPack.MemoryPackSerializerOptions)
  1747. // MemoryPack.IMemoryPackFormatter<object> MemoryPack.MemoryPackWriter<object>.GetFormatter<object>()
  1748. // System.Void MemoryPack.MemoryPackWriter<object>.WritePackable<object>(object&)
  1749. // System.Void MemoryPack.MemoryPackWriter<object>.WriteUnmanagedWithObjectHeader<int,int,int,byte>(byte,int&,int&,int&,byte&)
  1750. // System.Void MemoryPack.MemoryPackWriter<object>.WriteUnmanagedWithObjectHeader<int,int,int,int>(byte,int&,int&,int&,int&)
  1751. // System.Void MemoryPack.MemoryPackWriter<object>.WriteUnmanagedWithObjectHeader<int,int>(byte,int&,int&)
  1752. // System.Void MemoryPack.MemoryPackWriter<object>.WriteUnmanagedWithObjectHeader<int,long>(byte,int&,long&)
  1753. // System.Void MemoryPack.MemoryPackWriter<object>.WriteUnmanagedWithObjectHeader<int>(byte,int&)
  1754. // System.Void MemoryPack.MemoryPackWriter<object>.WriteValue<object>(object&)
  1755. // object Newtonsoft.Json.JsonConvert.DeserializeObject<object>(string)
  1756. // object Newtonsoft.Json.JsonConvert.DeserializeObject<object>(string,Newtonsoft.Json.JsonSerializerSettings)
  1757. // object System.Activator.CreateInstance<object>()
  1758. // object[] System.Array.Empty<object>()
  1759. // System.Void System.Array.Resize<object>(object[]&,int)
  1760. // System.Void System.Array.Sort<object>(object[],System.Comparison<object>)
  1761. // System.Void System.Buffers.BuffersExtensions.CopyTo<byte>(System.Buffers.ReadOnlySequence<byte>&,System.Span<byte>)
  1762. // System.Void System.Buffers.BuffersExtensions.CopyToMultiSegment<byte>(System.Buffers.ReadOnlySequence<byte>&,System.Span<byte>)
  1763. // bool System.Collections.Generic.CollectionExtensions.Remove<int,object>(System.Collections.Generic.IDictionary<int,object>,int,object&)
  1764. // UnityEngine.Vector3 System.Linq.Enumerable.Aggregate<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>,UnityEngine.Vector3>(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>>,UnityEngine.Vector3,System.Func<UnityEngine.Vector3,System.Collections.Generic.KeyValuePair<int,UnityEngine.Vector3>,UnityEngine.Vector3>)
  1765. // bool System.Linq.Enumerable.Contains<int>(System.Collections.Generic.IEnumerable<int>,int)
  1766. // bool System.Linq.Enumerable.Contains<int>(System.Collections.Generic.IEnumerable<int>,int,System.Collections.Generic.IEqualityComparer<int>)
  1767. // bool System.Linq.Enumerable.Contains<object>(System.Collections.Generic.IEnumerable<object>,object)
  1768. // bool System.Linq.Enumerable.Contains<object>(System.Collections.Generic.IEnumerable<object>,object,System.Collections.Generic.IEqualityComparer<object>)
  1769. // int System.Linq.Enumerable.Count<object>(System.Collections.Generic.IEnumerable<object>)
  1770. // object System.Linq.Enumerable.First<object>(System.Collections.Generic.IEnumerable<object>)
  1771. // object System.Linq.Enumerable.First<object>(System.Collections.Generic.IEnumerable<object>,System.Func<object,bool>)
  1772. // Excel2Json.FabaoPowerupConfig System.Linq.Enumerable.FirstOrDefault<Excel2Json.FabaoPowerupConfig>(System.Collections.Generic.IEnumerable<Excel2Json.FabaoPowerupConfig>)
  1773. // object System.Linq.Enumerable.FirstOrDefault<object>(System.Collections.Generic.IEnumerable<object>,System.Func<object,bool>)
  1774. // System.Collections.Generic.IEnumerable<System.Linq.IGrouping<int,Excel2Json.FabaoPowerupConfig>> System.Linq.Enumerable.GroupBy<Excel2Json.FabaoPowerupConfig,int>(System.Collections.Generic.IEnumerable<Excel2Json.FabaoPowerupConfig>,System.Func<Excel2Json.FabaoPowerupConfig,int>)
  1775. // System.Collections.Generic.IEnumerable<object> System.Linq.Enumerable.Intersect<object>(System.Collections.Generic.IEnumerable<object>,System.Collections.Generic.IEnumerable<object>)
  1776. // System.Collections.Generic.IEnumerable<object> System.Linq.Enumerable.IntersectIterator<object>(System.Collections.Generic.IEnumerable<object>,System.Collections.Generic.IEnumerable<object>,System.Collections.Generic.IEqualityComparer<object>)
  1777. // int System.Linq.Enumerable.Max<Excel2Json.OpenBoxScoreRule>(System.Collections.Generic.IEnumerable<Excel2Json.OpenBoxScoreRule>,System.Func<Excel2Json.OpenBoxScoreRule,int>)
  1778. // int System.Linq.Enumerable.Max<object>(System.Collections.Generic.IEnumerable<object>,System.Func<object,int>)
  1779. // System.Linq.IOrderedEnumerable<Excel2Json.FabaoPowerupConfig> System.Linq.Enumerable.OrderBy<Excel2Json.FabaoPowerupConfig,int>(System.Collections.Generic.IEnumerable<Excel2Json.FabaoPowerupConfig>,System.Func<Excel2Json.FabaoPowerupConfig,int>)
  1780. // System.Linq.IOrderedEnumerable<object> System.Linq.Enumerable.OrderBy<object,int>(System.Collections.Generic.IEnumerable<object>,System.Func<object,int>)
  1781. // System.Collections.Generic.IEnumerable<byte> System.Linq.Enumerable.Reverse<byte>(System.Collections.Generic.IEnumerable<byte>)
  1782. // System.Collections.Generic.IEnumerable<byte> System.Linq.Enumerable.ReverseIterator<byte>(System.Collections.Generic.IEnumerable<byte>)
  1783. // System.Collections.Generic.IEnumerable<float> System.Linq.Enumerable.Select<object,float>(System.Collections.Generic.IEnumerable<object>,System.Func<object,float>)
  1784. // System.Collections.Generic.IEnumerable<int> System.Linq.Enumerable.Select<Excel2Json.OpenBoxScoreRule,int>(System.Collections.Generic.IEnumerable<Excel2Json.OpenBoxScoreRule>,System.Func<Excel2Json.OpenBoxScoreRule,int>)
  1785. // System.Collections.Generic.IEnumerable<int> System.Linq.Enumerable.Select<object,int>(System.Collections.Generic.IEnumerable<object>,System.Func<object,int>)
  1786. // System.Collections.Generic.IEnumerable<object> System.Linq.Enumerable.Select<object,object>(System.Collections.Generic.IEnumerable<object>,System.Func<object,object>)
  1787. // Excel2Json.HeroPowerUpConfig[] System.Linq.Enumerable.ToArray<Excel2Json.HeroPowerUpConfig>(System.Collections.Generic.IEnumerable<Excel2Json.HeroPowerUpConfig>)
  1788. // byte[] System.Linq.Enumerable.ToArray<byte>(System.Collections.Generic.IEnumerable<byte>)
  1789. // float[] System.Linq.Enumerable.ToArray<float>(System.Collections.Generic.IEnumerable<float>)
  1790. // object[] System.Linq.Enumerable.ToArray<object>(System.Collections.Generic.IEnumerable<object>)
  1791. // System.Collections.Generic.List<Excel2Json.DivineSenseConfig> System.Linq.Enumerable.ToList<Excel2Json.DivineSenseConfig>(System.Collections.Generic.IEnumerable<Excel2Json.DivineSenseConfig>)
  1792. // System.Collections.Generic.List<Excel2Json.EventConfig> System.Linq.Enumerable.ToList<Excel2Json.EventConfig>(System.Collections.Generic.IEnumerable<Excel2Json.EventConfig>)
  1793. // System.Collections.Generic.List<Excel2Json.FabaoPowerupConfig> System.Linq.Enumerable.ToList<Excel2Json.FabaoPowerupConfig>(System.Collections.Generic.IEnumerable<Excel2Json.FabaoPowerupConfig>)
  1794. // System.Collections.Generic.List<Excel2Json.HeroPowerUpConfig> System.Linq.Enumerable.ToList<Excel2Json.HeroPowerUpConfig>(System.Collections.Generic.IEnumerable<Excel2Json.HeroPowerUpConfig>)
  1795. // System.Collections.Generic.List<Excel2Json.ItemConfig> System.Linq.Enumerable.ToList<Excel2Json.ItemConfig>(System.Collections.Generic.IEnumerable<Excel2Json.ItemConfig>)
  1796. // System.Collections.Generic.List<Excel2Json.SentimentEffectConfig> System.Linq.Enumerable.ToList<Excel2Json.SentimentEffectConfig>(System.Collections.Generic.IEnumerable<Excel2Json.SentimentEffectConfig>)
  1797. // System.Collections.Generic.List<Excel2Json.ShopGroupConfig> System.Linq.Enumerable.ToList<Excel2Json.ShopGroupConfig>(System.Collections.Generic.IEnumerable<Excel2Json.ShopGroupConfig>)
  1798. // System.Collections.Generic.List<Excel2Json.SkillConfig> System.Linq.Enumerable.ToList<Excel2Json.SkillConfig>(System.Collections.Generic.IEnumerable<Excel2Json.SkillConfig>)
  1799. // System.Collections.Generic.List<Excel2Json.SkillPowerupConfig> System.Linq.Enumerable.ToList<Excel2Json.SkillPowerupConfig>(System.Collections.Generic.IEnumerable<Excel2Json.SkillPowerupConfig>)
  1800. // System.Collections.Generic.List<Excel2Json.TowerInfoConfig> System.Linq.Enumerable.ToList<Excel2Json.TowerInfoConfig>(System.Collections.Generic.IEnumerable<Excel2Json.TowerInfoConfig>)
  1801. // System.Collections.Generic.List<Excel2Json.XianTuLogConfig> System.Linq.Enumerable.ToList<Excel2Json.XianTuLogConfig>(System.Collections.Generic.IEnumerable<Excel2Json.XianTuLogConfig>)
  1802. // System.Collections.Generic.List<float> System.Linq.Enumerable.ToList<float>(System.Collections.Generic.IEnumerable<float>)
  1803. // System.Collections.Generic.List<int> System.Linq.Enumerable.ToList<int>(System.Collections.Generic.IEnumerable<int>)
  1804. // System.Collections.Generic.List<object> System.Linq.Enumerable.ToList<object>(System.Collections.Generic.IEnumerable<object>)
  1805. // System.Collections.Generic.IEnumerable<Excel2Json.EventConfig> System.Linq.Enumerable.Where<Excel2Json.EventConfig>(System.Collections.Generic.IEnumerable<Excel2Json.EventConfig>,System.Func<Excel2Json.EventConfig,bool>)
  1806. // System.Collections.Generic.IEnumerable<Excel2Json.HeroPowerUpConfig> System.Linq.Enumerable.Where<Excel2Json.HeroPowerUpConfig>(System.Collections.Generic.IEnumerable<Excel2Json.HeroPowerUpConfig>,System.Func<Excel2Json.HeroPowerUpConfig,bool>)
  1807. // System.Collections.Generic.IEnumerable<Excel2Json.ItemConfig> System.Linq.Enumerable.Where<Excel2Json.ItemConfig>(System.Collections.Generic.IEnumerable<Excel2Json.ItemConfig>,System.Func<Excel2Json.ItemConfig,bool>)
  1808. // System.Collections.Generic.IEnumerable<Excel2Json.SentimentEffectConfig> System.Linq.Enumerable.Where<Excel2Json.SentimentEffectConfig>(System.Collections.Generic.IEnumerable<Excel2Json.SentimentEffectConfig>,System.Func<Excel2Json.SentimentEffectConfig,bool>)
  1809. // System.Collections.Generic.IEnumerable<Excel2Json.SkillConfig> System.Linq.Enumerable.Where<Excel2Json.SkillConfig>(System.Collections.Generic.IEnumerable<Excel2Json.SkillConfig>,System.Func<Excel2Json.SkillConfig,bool>)
  1810. // System.Collections.Generic.IEnumerable<Excel2Json.TowerInfoConfig> System.Linq.Enumerable.Where<Excel2Json.TowerInfoConfig>(System.Collections.Generic.IEnumerable<Excel2Json.TowerInfoConfig>,System.Func<Excel2Json.TowerInfoConfig,bool>)
  1811. // System.Collections.Generic.IEnumerable<object> System.Linq.Enumerable.Where<object>(System.Collections.Generic.IEnumerable<object>,System.Func<object,bool>)
  1812. // System.Collections.Generic.IEnumerable<float> System.Linq.Enumerable.Iterator<object>.Select<float>(System.Func<object,float>)
  1813. // System.Collections.Generic.IEnumerable<int> System.Linq.Enumerable.Iterator<Excel2Json.OpenBoxScoreRule>.Select<int>(System.Func<Excel2Json.OpenBoxScoreRule,int>)
  1814. // System.Collections.Generic.IEnumerable<int> System.Linq.Enumerable.Iterator<object>.Select<int>(System.Func<object,int>)
  1815. // System.Collections.Generic.IEnumerable<object> System.Linq.Enumerable.Iterator<object>.Select<object>(System.Func<object,object>)
  1816. // System.Span<byte> System.MemoryExtensions.AsSpan<byte>(byte[])
  1817. // object System.Reflection.CustomAttributeExtensions.GetCustomAttribute<object>(System.Reflection.MemberInfo)
  1818. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitOnCompleted<object,Core.KCPTool.TCPClient.<Connect>d__27>(object&,Core.KCPTool.TCPClient.<Connect>d__27&)
  1819. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitOnCompleted<object,Fort23.Core.CTask.<AwaitTask>d__18<object>>(object&,Fort23.Core.CTask.<AwaitTask>d__18<object>&)
  1820. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitOnCompleted<object,Fort23.Core.CTask.<AwaitTask>d__18>(object&,Fort23.Core.CTask.<AwaitTask>d__18&)
  1821. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitOnCompleted<object,UGUIPackLoad.<InitPack>d__3>(object&,UGUIPackLoad.<InitPack>d__3&)
  1822. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<System.Threading.Tasks.VoidTaskResult>.AwaitOnCompleted<object,Core.KCPTool.TCPClient.<Connect>d__27>(object&,Core.KCPTool.TCPClient.<Connect>d__27&)
  1823. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<System.Threading.Tasks.VoidTaskResult>.AwaitOnCompleted<object,Fort23.Core.CTask.<AwaitTask>d__18<object>>(object&,Fort23.Core.CTask.<AwaitTask>d__18<object>&)
  1824. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<System.Threading.Tasks.VoidTaskResult>.AwaitOnCompleted<object,Fort23.Core.CTask.<AwaitTask>d__18>(object&,Fort23.Core.CTask.<AwaitTask>d__18&)
  1825. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<System.Threading.Tasks.VoidTaskResult>.AwaitOnCompleted<object,UGUIPackLoad.<InitPack>d__3>(object&,UGUIPackLoad.<InitPack>d__3&)
  1826. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<object>>,System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__3<object>>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<object>>&,System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__3<object>&)
  1827. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ValueTuple<object,int>>,System.Net.Sockets.Kcp.KcpIO.<OutputAsync>d__5<object>>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ValueTuple<object,int>>&,System.Net.Sockets.Kcp.KcpIO.<OutputAsync>d__5<object>&)
  1828. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>,System.Net.Sockets.Kcp.FakeKcpIO.<OutputAsync>d__8>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>&,System.Net.Sockets.Kcp.FakeKcpIO.<OutputAsync>d__8&)
  1829. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>,System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__4>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>&,System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__4&)
  1830. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.TaskAwaiter,Core.KCPTool.TCPClient.<Connect>d__27>(System.Runtime.CompilerServices.TaskAwaiter&,Core.KCPTool.TCPClient.<Connect>d__27&)
  1831. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.TaskAwaiter,NetClientCore.TCP.TCPClient.<Connect>d__19<object,object>>(System.Runtime.CompilerServices.TaskAwaiter&,NetClientCore.TCP.TCPClient.<Connect>d__19<object,object>&)
  1832. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<System.Threading.Tasks.VoidTaskResult>.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<object>>,System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__3<object>>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<object>>&,System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__3<object>&)
  1833. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<System.Threading.Tasks.VoidTaskResult>.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ValueTuple<object,int>>,System.Net.Sockets.Kcp.KcpIO.<OutputAsync>d__5<object>>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ValueTuple<object,int>>&,System.Net.Sockets.Kcp.KcpIO.<OutputAsync>d__5<object>&)
  1834. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<System.Threading.Tasks.VoidTaskResult>.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>,System.Net.Sockets.Kcp.FakeKcpIO.<OutputAsync>d__8>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>&,System.Net.Sockets.Kcp.FakeKcpIO.<OutputAsync>d__8&)
  1835. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<System.Threading.Tasks.VoidTaskResult>.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>,System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__4>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>&,System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__4&)
  1836. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<System.Threading.Tasks.VoidTaskResult>.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.TaskAwaiter,Core.KCPTool.TCPClient.<Connect>d__27>(System.Runtime.CompilerServices.TaskAwaiter&,Core.KCPTool.TCPClient.<Connect>d__27&)
  1837. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<System.Threading.Tasks.VoidTaskResult>.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.TaskAwaiter,NetClientCore.TCP.TCPClient.<Connect>d__19<object,object>>(System.Runtime.CompilerServices.TaskAwaiter&,NetClientCore.TCP.TCPClient.<Connect>d__19<object,object>&)
  1838. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<int>.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<object>>,System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__4<object>>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<object>>&,System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__4<object>&)
  1839. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<int>.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>,System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__5>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>&,System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__5&)
  1840. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start<Core.KCPTool.TCPClient.<Connect>d__27>(Core.KCPTool.TCPClient.<Connect>d__27&)
  1841. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start<Fort23.Core.CTask.<AwaitTask>d__18<object>>(Fort23.Core.CTask.<AwaitTask>d__18<object>&)
  1842. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start<Fort23.Core.CTask.<AwaitTask>d__18>(Fort23.Core.CTask.<AwaitTask>d__18&)
  1843. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start<Fort23.Core.ICTaskResult.<AwaitTask>d__0>(Fort23.Core.ICTaskResult.<AwaitTask>d__0&)
  1844. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start<NetClientCore.TCP.TCPClient.<Connect>d__19<object,object>>(NetClientCore.TCP.TCPClient.<Connect>d__19<object,object>&)
  1845. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start<System.Net.Sockets.Kcp.FakeKcpIO.<OutputAsync>d__8>(System.Net.Sockets.Kcp.FakeKcpIO.<OutputAsync>d__8&)
  1846. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start<System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__4>(System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__4&)
  1847. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start<System.Net.Sockets.Kcp.KcpIO.<OutputAsync>d__5<object>>(System.Net.Sockets.Kcp.KcpIO.<OutputAsync>d__5<object>&)
  1848. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start<System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__3<object>>(System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__3<object>&)
  1849. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start<UGUIPackLoad.<InitPack>d__3>(UGUIPackLoad.<InitPack>d__3&)
  1850. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<int>.Start<System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__5>(System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__5&)
  1851. // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder<int>.Start<System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__4<object>>(System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__4<object>&)
  1852. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<object>>,System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__3<object>>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<object>>&,System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__3<object>&)
  1853. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ValueTuple<object,int>>,System.Net.Sockets.Kcp.KcpIO.<OutputAsync>d__5<object>>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ValueTuple<object,int>>&,System.Net.Sockets.Kcp.KcpIO.<OutputAsync>d__5<object>&)
  1854. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>,System.Net.Sockets.Kcp.FakeKcpIO.<OutputAsync>d__8>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>&,System.Net.Sockets.Kcp.FakeKcpIO.<OutputAsync>d__8&)
  1855. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>,System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__4>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>&,System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__4&)
  1856. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder<int>.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<object>>,System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__4<object>>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<System.ArraySegment<object>>&,System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__4<object>&)
  1857. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder<int>.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>,System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__5>(System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter<object>&,System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__5&)
  1858. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.Start<System.Net.Sockets.Kcp.FakeKcpIO.<OutputAsync>d__8>(System.Net.Sockets.Kcp.FakeKcpIO.<OutputAsync>d__8&)
  1859. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.Start<System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__4>(System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__4&)
  1860. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.Start<System.Net.Sockets.Kcp.KcpIO.<OutputAsync>d__5<object>>(System.Net.Sockets.Kcp.KcpIO.<OutputAsync>d__5<object>&)
  1861. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.Start<System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__3<object>>(System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__3<object>&)
  1862. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder<int>.Start<System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__5>(System.Net.Sockets.Kcp.FakeKcpIO.<RecvAsync>d__5&)
  1863. // System.Void System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder<int>.Start<System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__4<object>>(System.Net.Sockets.Kcp.KcpIO.<RecvAsync>d__4<object>&)
  1864. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Core.AssetLoadTool.Asset.BundleAssetLoadTask.<<StartLoadAsset>b__1_0>d<object>>(object&,Core.AssetLoadTool.Asset.BundleAssetLoadTask.<<StartLoadAsset>b__1_0>d<object>&)
  1865. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Core.Audio.AudioManager.<PlayBGM>d__26>(object&,Core.Audio.AudioManager.<PlayBGM>d__26&)
  1866. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Core.UI.UTool.UISpriteLoad.<Load>d__0>(object&,Core.UI.UTool.UISpriteLoad.<Load>d__0&)
  1867. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,DialogueManager.<EndDialogue1>d__10>(object&,DialogueManager.<EndDialogue1>d__10&)
  1868. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,EventSystemManager.<CompleteEvent>d__35>(object&,EventSystemManager.<CompleteEvent>d__35&)
  1869. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Core.ComponentQueue.<Enqueue>d__5>(object&,Fort23.Core.ComponentQueue.<Enqueue>d__5&)
  1870. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_6>d>(object&,Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_6>d&)
  1871. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.AppBarPanel.<Bne_dongfu_Click>d__13>(object&,Fort23.Mono.AppBarPanel.<Bne_dongfu_Click>d__13&)
  1872. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.AppBarPanel.<Bnt_ShengShi_Click>d__9>(object&,Fort23.Mono.AppBarPanel.<Bnt_ShengShi_Click>d__9&)
  1873. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.AppBarPanel.<Bnt_shengShi_onClick>d__15>(object&,Fort23.Mono.AppBarPanel.<Bnt_shengShi_onClick>d__15&)
  1874. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.AppBarPanel.<Btn_GongFa_Click>d__11>(object&,Fort23.Mono.AppBarPanel.<Btn_GongFa_Click>d__11&)
  1875. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.AppBarPanel.<Btn_HeroInfomation_Click>d__12>(object&,Fort23.Mono.AppBarPanel.<Btn_HeroInfomation_Click>d__12&)
  1876. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.AppBarPanel.<Btn_Shop_Click>d__10>(object&,Fort23.Mono.AppBarPanel.<Btn_Shop_Click>d__10&)
  1877. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.BattleSettlementPanel.<<AddButtonEvent>b__5_0>d>(object&,Fort23.Mono.BattleSettlementPanel.<<AddButtonEvent>b__5_0>d&)
  1878. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.BattleSettlementPanel.<<AddButtonEvent>b__5_1>d>(object&,Fort23.Mono.BattleSettlementPanel.<<AddButtonEvent>b__5_1>d&)
  1879. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.BattleSettlementPanel.<CustomInit>d__6>(object&,Fort23.Mono.BattleSettlementPanel.<CustomInit>d__6&)
  1880. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.BattleSettlementPanel.<OnClick>d__7>(object&,Fort23.Mono.BattleSettlementPanel.<OnClick>d__7&)
  1881. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.BigMapItem.<CustomInit>d__3>(object&,Fort23.Mono.BigMapItem.<CustomInit>d__3&)
  1882. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.BossInfoPanel.<UpdateInfo>d__13>(object&,Fort23.Mono.BossInfoPanel.<UpdateInfo>d__13&)
  1883. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.BoxPanel.<OnButtonCallBack>d__9>(object&,Fort23.Mono.BoxPanel.<OnButtonCallBack>d__9&)
  1884. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.BoxPanel.<OpenBoxPanel>d__2>(object&,Fort23.Mono.BoxPanel.<OpenBoxPanel>d__2&)
  1885. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.BoxPanel.<TenButtonCallBack>d__10>(object&,Fort23.Mono.BoxPanel.<TenButtonCallBack>d__10&)
  1886. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.BreakthroughItemWidget.<<AddButtonEvent>b__8_0>d>(object&,Fort23.Mono.BreakthroughItemWidget.<<AddButtonEvent>b__8_0>d&)
  1887. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.BtnFaBaoWidget.<CustomInit>d__6>(object&,Fort23.Mono.BtnFaBaoWidget.<CustomInit>d__6&)
  1888. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ChatPanel.<SendMessage>d__10>(object&,Fort23.Mono.ChatPanel.<SendMessage>d__10&)
  1889. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.CombatHPPanel.<CreateHpUI>d__9>(object&,Fort23.Mono.CombatHPPanel.<CreateHpUI>d__9&)
  1890. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.CombatHPPanel.<FaBaoDuiPingStart>d__10>(object&,Fort23.Mono.CombatHPPanel.<FaBaoDuiPingStart>d__10&)
  1891. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.CombatPanel.<AddMagicWeaponHeroEntity>d__10>(object&,Fort23.Mono.CombatPanel.<AddMagicWeaponHeroEntity>d__10&)
  1892. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.CombatPanel.<UseMagicWeapon>d__9>(object&,Fort23.Mono.CombatPanel.<UseMagicWeapon>d__9&)
  1893. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.CombatShowTextPanel.<HarmUpdate>d__7>(object&,Fort23.Mono.CombatShowTextPanel.<HarmUpdate>d__7&)
  1894. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.CombatShowTextPanel.<RecoverUpdate>d__6>(object&,Fort23.Mono.CombatShowTextPanel.<RecoverUpdate>d__6&)
  1895. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DaoYouGuaJiAwardPanel.<<AddButtonEvent>b__4_1>d>(object&,Fort23.Mono.DaoYouGuaJiAwardPanel.<<AddButtonEvent>b__4_1>d&)
  1896. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DaoYouGuaJiAwardWidget.<CustomInit>d__5>(object&,Fort23.Mono.DaoYouGuaJiAwardWidget.<CustomInit>d__5&)
  1897. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DaoYouInfoPanel.<<AddButtonEvent>b__12_3>d>(object&,Fort23.Mono.DaoYouInfoPanel.<<AddButtonEvent>b__12_3>d&)
  1898. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DaoYouInfoPanel.<OnClick>d__24>(object&,Fort23.Mono.DaoYouInfoPanel.<OnClick>d__24&)
  1899. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DaoYouInvitePanel.<OnClick2>d__8>(object&,Fort23.Mono.DaoYouInvitePanel.<OnClick2>d__8&)
  1900. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DaoYouLevelWidget.<CustomInit>d__7>(object&,Fort23.Mono.DaoYouLevelWidget.<CustomInit>d__7&)
  1901. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DaoYouWidgetItem.<CustomInit>d__4>(object&,Fort23.Mono.DaoYouWidgetItem.<CustomInit>d__4&)
  1902. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DialoguePanel.<OpenDialoguePanel>d__22>(object&,Fort23.Mono.DialoguePanel.<OpenDialoguePanel>d__22&)
  1903. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DialoguePanel.<SelectOption>d__35>(object&,Fort23.Mono.DialoguePanel.<SelectOption>d__35&)
  1904. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DialoguePanel.<ShowOptions>d__34>(object&,Fort23.Mono.DialoguePanel.<ShowOptions>d__34&)
  1905. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DialoguePanel.<StartShowMassge>d__33>(object&,Fort23.Mono.DialoguePanel.<StartShowMassge>d__33&)
  1906. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DivineSenceInfoPanel.<<AddButtonEvent>b__10_4>d>(object&,Fort23.Mono.DivineSenceInfoPanel.<<AddButtonEvent>b__10_4>d&)
  1907. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DivineSenceInfoPanel.<CustomInit>d__12>(object&,Fort23.Mono.DivineSenceInfoPanel.<CustomInit>d__12&)
  1908. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DivineSenceItemWidget.<CustomInit>d__6>(object&,Fort23.Mono.DivineSenceItemWidget.<CustomInit>d__6&)
  1909. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.DivineSenceRestoredWidget.<<AddButtonEvent>b__7_0>d>(object&,Fort23.Mono.DivineSenceRestoredWidget.<<AddButtonEvent>b__7_0>d&)
  1910. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.GongFaDetailsPanel.<CustomInit>d__13>(object&,Fort23.Mono.GongFaDetailsPanel.<CustomInit>d__13&)
  1911. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.GongFaUpgradePanel.<CustomInit>d__12>(object&,Fort23.Mono.GongFaUpgradePanel.<CustomInit>d__12&)
  1912. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.HeroBreakthroughPanel.<<AddButtonEvent>b__8_2>d>(object&,Fort23.Mono.HeroBreakthroughPanel.<<AddButtonEvent>b__8_2>d&)
  1913. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.HeroBreakthroughSuccessPanel.<CustomInit>d__7>(object&,Fort23.Mono.HeroBreakthroughSuccessPanel.<CustomInit>d__7&)
  1914. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.HeroHpWidget.<AddBuff>d__12>(object&,Fort23.Mono.HeroHpWidget.<AddBuff>d__12&)
  1915. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.HeroInformationPanel.<<AddButtonEvent>b__8_4>d>(object&,Fort23.Mono.HeroInformationPanel.<<AddButtonEvent>b__8_4>d&)
  1916. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.LevelChoosePanel.<CustomInit>d__10>(object&,Fort23.Mono.LevelChoosePanel.<CustomInit>d__10&)
  1917. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.LoadingPanel.<OpenLodingPanel>d__0>(object&,Fort23.Mono.LoadingPanel.<OpenLodingPanel>d__0&)
  1918. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.MainHeroPanel.<CustomInit>d__13>(object&,Fort23.Mono.MainHeroPanel.<CustomInit>d__13&)
  1919. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.MainHeroPanel.<OnClick>d__14>(object&,Fort23.Mono.MainHeroPanel.<OnClick>d__14&)
  1920. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.MainPanel.<CreatShengShiEvent>d__21>(object&,Fort23.Mono.MainPanel.<CreatShengShiEvent>d__21&)
  1921. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.MainPanel.<CustomInit>d__8>(object&,Fort23.Mono.MainPanel.<CustomInit>d__8&)
  1922. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.OpenBoxaiLvPanel.<OpenPanel>d__4>(object&,Fort23.Mono.OpenBoxaiLvPanel.<OpenPanel>d__4&)
  1923. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.PlacesInfoPanel.<Click_Go>d__13>(object&,Fort23.Mono.PlacesInfoPanel.<Click_Go>d__13&)
  1924. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.PlayerGuideManager.<NextGuide>d__47>(object&,Fort23.Mono.PlayerGuideManager.<NextGuide>d__47&)
  1925. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.PlayerGuideManager.<RunNextGuide>d__49>(object&,Fort23.Mono.PlayerGuideManager.<RunNextGuide>d__49&)
  1926. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.RewardsPanel.<GenerateWidget>d__12>(object&,Fort23.Mono.RewardsPanel.<GenerateWidget>d__12&)
  1927. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SelectElixirPanel.<CustomInit>d__9>(object&,Fort23.Mono.SelectElixirPanel.<CustomInit>d__9&)
  1928. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SelectFaBaoPanel.<CustomInit>d__21>(object&,Fort23.Mono.SelectFaBaoPanel.<CustomInit>d__21&)
  1929. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SelectFaBaoPanel.<OnClick>d__19>(object&,Fort23.Mono.SelectFaBaoPanel.<OnClick>d__19&)
  1930. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SentimentEffectWidget.<CreatXian>d__9>(object&,Fort23.Mono.SentimentEffectWidget.<CreatXian>d__9&)
  1931. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SentimentInfoPanel.<UpdateUi>d__17>(object&,Fort23.Mono.SentimentInfoPanel.<UpdateUi>d__17&)
  1932. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ShengShiEventWidgetType2.<<AddButtonEvent>b__7_1>d>(object&,Fort23.Mono.ShengShiEventWidgetType2.<<AddButtonEvent>b__7_1>d&)
  1933. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ShengShiEventWidgetType2.<CustomInit>d__12>(object&,Fort23.Mono.ShengShiEventWidgetType2.<CustomInit>d__12&)
  1934. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ShopBoxWidget.<<AddButtonEvent>b__7_0>d>(object&,Fort23.Mono.ShopBoxWidget.<<AddButtonEvent>b__7_0>d&)
  1935. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ShopBoxWidget.<OnButtonCallBack>d__8>(object&,Fort23.Mono.ShopBoxWidget.<OnButtonCallBack>d__8&)
  1936. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ShopBoxWidget.<TenButtonCallBack>d__9>(object&,Fort23.Mono.ShopBoxWidget.<TenButtonCallBack>d__9&)
  1937. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ShopBuyItemPanel.<CustomInit>d__9>(object&,Fort23.Mono.ShopBuyItemPanel.<CustomInit>d__9&)
  1938. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ShopItemWidgetType1.<Buy>d__9>(object&,Fort23.Mono.ShopItemWidgetType1.<Buy>d__9&)
  1939. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ShopItemWidgetType2.<<AddButtonEvent>b__6_0>d>(object&,Fort23.Mono.ShopItemWidgetType2.<<AddButtonEvent>b__6_0>d&)
  1940. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ShopItemWidgetType2.<<AddButtonEvent>b__6_1>d>(object&,Fort23.Mono.ShopItemWidgetType2.<<AddButtonEvent>b__6_1>d&)
  1941. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ShopPanel.<OnClick>d__11>(object&,Fort23.Mono.ShopPanel.<OnClick>d__11&)
  1942. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ShowItemMoveToTargetPanel.<ShowPanel>d__10>(object&,Fort23.Mono.ShowItemMoveToTargetPanel.<ShowPanel>d__10&)
  1943. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SkillInfopanel.<OpenPanle>d__6>(object&,Fort23.Mono.SkillInfopanel.<OpenPanle>d__6&)
  1944. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SkillInfopanel.<OpenPanle>d__7>(object&,Fort23.Mono.SkillInfopanel.<OpenPanle>d__7&)
  1945. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SkillRoadSelecPanel.<CustomInit>d__6>(object&,Fort23.Mono.SkillRoadSelecPanel.<CustomInit>d__6&)
  1946. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SkillRoadSelecPanel.<OpenPanel>d__8>(object&,Fort23.Mono.SkillRoadSelecPanel.<OpenPanel>d__8&)
  1947. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SkillSelectPanel.<<AddButtonEvent>b__18_2>d>(object&,Fort23.Mono.SkillSelectPanel.<<AddButtonEvent>b__18_2>d&)
  1948. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SkillSelectPanel.<OnClick>d__47>(object&,Fort23.Mono.SkillSelectPanel.<OnClick>d__47&)
  1949. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SkillSelectPanel.<OnClickSkillKongWidget>d__37>(object&,Fort23.Mono.SkillSelectPanel.<OnClickSkillKongWidget>d__37&)
  1950. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SkillSelectPanel.<SkillBeginDragHandle>d__23>(object&,Fort23.Mono.SkillSelectPanel.<SkillBeginDragHandle>d__23&)
  1951. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.SummonScoreAwardWidget.<CustomInit>d__7>(object&,Fort23.Mono.SummonScoreAwardWidget.<CustomInit>d__7&)
  1952. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.TaskInfoPanel.<CustomInit>d__6>(object&,Fort23.Mono.TaskInfoPanel.<CustomInit>d__6&)
  1953. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.TowerLevelWidget.<<AddButtonEvent>b__8_0>d>(object&,Fort23.Mono.TowerLevelWidget.<<AddButtonEvent>b__8_0>d&)
  1954. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.UIComponent.<Show>d__1>(object&,Fort23.Mono.UIComponent.<Show>d__1&)
  1955. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.UIPanel.<Hide>d__28>(object&,Fort23.Mono.UIPanel.<Hide>d__28&)
  1956. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.UseExpElixirPanel.<CustomInit>d__5>(object&,Fort23.Mono.UseExpElixirPanel.<CustomInit>d__5&)
  1957. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.WidgetItemWithName.<InitWidget>d__6>(object&,Fort23.Mono.WidgetItemWithName.<InitWidget>d__6&)
  1958. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.XianTuLogPanel.<OnClick>d__21>(object&,Fort23.Mono.XianTuLogPanel.<OnClick>d__21&)
  1959. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ZhuanPanPanel.<AddUseGongFa>d__10>(object&,Fort23.Mono.ZhuanPanPanel.<AddUseGongFa>d__10&)
  1960. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,Fort23.Mono.ZhuanPanPanel.<ExercisesAlter>d__13>(object&,Fort23.Mono.ZhuanPanPanel.<ExercisesAlter>d__13&)
  1961. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,GameApplction.<StartGame>d__9>(object&,GameApplction.<StartGame>d__9&)
  1962. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,GameApplction.<XinShouCombat>d__13>(object&,GameApplction.<XinShouCombat>d__13&)
  1963. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,GameLogic.Combat.CombatDrive.<CombatFinish>d__9>(object&,GameLogic.Combat.CombatDrive.<CombatFinish>d__9&)
  1964. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,GameLogic.Combat.CombatState.CombatMiniSceneSwitchState.<InitScenes>d__11>(object&,GameLogic.Combat.CombatState.CombatMiniSceneSwitchState.<InitScenes>d__11&)
  1965. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,GameLogic.Combat.CombatState.CombatSceneSwitchState.<InitScenes>d__11>(object&,GameLogic.Combat.CombatState.CombatSceneSwitchState.<InitScenes>d__11&)
  1966. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,GameLogic.Combat.CombatTool.MagicWeaponCollisionInfo.<PongZhuang>d__15>(object&,GameLogic.Combat.CombatTool.MagicWeaponCollisionInfo.<PongZhuang>d__15&)
  1967. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,GameUI.Combat.LevelBattleCombatMono.<UICallBack>d__1>(object&,GameUI.Combat.LevelBattleCombatMono.<UICallBack>d__1&)
  1968. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted<object,UTool.CustomizeTimeLogic.FxLogic.TimeLineEventLogic.TimeLineAudioEventLogic.<ProEnter>d__2>(object&,UTool.CustomizeTimeLogic.FxLogic.TimeLineEventLogic.TimeLineAudioEventLogic.<ProEnter>d__2&)
  1969. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.TaskAwaiter,Fort23.Core.CTaskAwaitBuffer.<AwaitTask>d__9>(System.Runtime.CompilerServices.TaskAwaiter&,Fort23.Core.CTaskAwaitBuffer.<AwaitTask>d__9&)
  1970. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.TaskAwaiter<System.Net.Sockets.UdpReceiveResult>,UDPForKCP.<BeginRecv>d__20>(System.Runtime.CompilerServices.TaskAwaiter<System.Net.Sockets.UdpReceiveResult>&,UDPForKCP.<BeginRecv>d__20&)
  1971. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Core.AssetLoadTool.Asset.BundleAssetLoadTask.<<StartLoadAsset>b__1_0>d<object>>(Core.AssetLoadTool.Asset.BundleAssetLoadTask.<<StartLoadAsset>b__1_0>d<object>&)
  1972. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Core.Audio.AudioManager.<PlayBGM>d__26>(Core.Audio.AudioManager.<PlayBGM>d__26&)
  1973. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Core.Audio.AudioManager.<StopBGM>d__29>(Core.Audio.AudioManager.<StopBGM>d__29&)
  1974. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Core.KCPTool.KCPClient.<BeginRecv>d__37>(Core.KCPTool.KCPClient.<BeginRecv>d__37&)
  1975. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Core.KCPTool.TCPClient.<ReConnect>d__28>(Core.KCPTool.TCPClient.<ReConnect>d__28&)
  1976. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Core.UI.UTool.UISpriteLoad.<Load>d__0>(Core.UI.UTool.UISpriteLoad.<Load>d__0&)
  1977. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<DialogueManager.<EndDialogue1>d__10>(DialogueManager.<EndDialogue1>d__10&)
  1978. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<EventSystemManager.<CompleteEvent>d__35>(EventSystemManager.<CompleteEvent>d__35&)
  1979. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Core.CTaskAwaitBuffer.<AwaitTask>d__9>(Fort23.Core.CTaskAwaitBuffer.<AwaitTask>d__9&)
  1980. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Core.ComponentQueue.<Enqueue>d__5>(Fort23.Core.ComponentQueue.<Enqueue>d__5&)
  1981. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_0>d>(Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_0>d&)
  1982. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_2>d>(Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_2>d&)
  1983. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_3>d>(Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_3>d&)
  1984. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_4>d>(Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_4>d&)
  1985. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_6>d>(Fort23.Mono.AppBarPanel.<<AddButtonEvent>b__7_6>d&)
  1986. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.AppBarPanel.<Bne_dongfu_Click>d__13>(Fort23.Mono.AppBarPanel.<Bne_dongfu_Click>d__13&)
  1987. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.AppBarPanel.<Bnt_ShengShi_Click>d__9>(Fort23.Mono.AppBarPanel.<Bnt_ShengShi_Click>d__9&)
  1988. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.AppBarPanel.<Bnt_shengShi_onClick>d__15>(Fort23.Mono.AppBarPanel.<Bnt_shengShi_onClick>d__15&)
  1989. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.AppBarPanel.<Btn_GongFa_Click>d__11>(Fort23.Mono.AppBarPanel.<Btn_GongFa_Click>d__11&)
  1990. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.AppBarPanel.<Btn_HeroInfomation_Click>d__12>(Fort23.Mono.AppBarPanel.<Btn_HeroInfomation_Click>d__12&)
  1991. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.AppBarPanel.<Btn_Shop_Click>d__10>(Fort23.Mono.AppBarPanel.<Btn_Shop_Click>d__10&)
  1992. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BattleSettlementPanel.<<AddButtonEvent>b__5_0>d>(Fort23.Mono.BattleSettlementPanel.<<AddButtonEvent>b__5_0>d&)
  1993. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BattleSettlementPanel.<<AddButtonEvent>b__5_1>d>(Fort23.Mono.BattleSettlementPanel.<<AddButtonEvent>b__5_1>d&)
  1994. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BattleSettlementPanel.<CustomInit>d__6>(Fort23.Mono.BattleSettlementPanel.<CustomInit>d__6&)
  1995. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BattleSettlementPanel.<OnClick>d__7>(Fort23.Mono.BattleSettlementPanel.<OnClick>d__7&)
  1996. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BigMapItem.<CustomInit>d__3>(Fort23.Mono.BigMapItem.<CustomInit>d__3&)
  1997. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BossInfoPanel.<UpdateInfo>d__13>(Fort23.Mono.BossInfoPanel.<UpdateInfo>d__13&)
  1998. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BoxPanel.<OnButtonCallBack>d__9>(Fort23.Mono.BoxPanel.<OnButtonCallBack>d__9&)
  1999. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BoxPanel.<OpenBoxPanel>d__2>(Fort23.Mono.BoxPanel.<OpenBoxPanel>d__2&)
  2000. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BoxPanel.<TenButtonCallBack>d__10>(Fort23.Mono.BoxPanel.<TenButtonCallBack>d__10&)
  2001. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BreakthroughItemWidget.<<AddButtonEvent>b__8_0>d>(Fort23.Mono.BreakthroughItemWidget.<<AddButtonEvent>b__8_0>d&)
  2002. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BreakthroughItemWidget.<<AddButtonEvent>b__8_1>d>(Fort23.Mono.BreakthroughItemWidget.<<AddButtonEvent>b__8_1>d&)
  2003. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BreakthroughItemWidget.<<AddButtonEvent>b__8_2>d>(Fort23.Mono.BreakthroughItemWidget.<<AddButtonEvent>b__8_2>d&)
  2004. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BtnFaBaoWidget.<CustomInit>d__6>(Fort23.Mono.BtnFaBaoWidget.<CustomInit>d__6&)
  2005. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.BuffWidget.<AddBuff>d__5>(Fort23.Mono.BuffWidget.<AddBuff>d__5&)
  2006. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ChatPanel.<SendMessage>d__10>(Fort23.Mono.ChatPanel.<SendMessage>d__10&)
  2007. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.CombatHPPanel.<CreateHeroHp>d__13>(Fort23.Mono.CombatHPPanel.<CreateHeroHp>d__13&)
  2008. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.CombatHPPanel.<CreateHpUI>d__9>(Fort23.Mono.CombatHPPanel.<CreateHpUI>d__9&)
  2009. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.CombatHPPanel.<FaBaoDuiPingFinish>d__11>(Fort23.Mono.CombatHPPanel.<FaBaoDuiPingFinish>d__11&)
  2010. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.CombatHPPanel.<FaBaoDuiPingStart>d__10>(Fort23.Mono.CombatHPPanel.<FaBaoDuiPingStart>d__10&)
  2011. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.CombatPanel.<AddMagicWeaponHeroEntity>d__10>(Fort23.Mono.CombatPanel.<AddMagicWeaponHeroEntity>d__10&)
  2012. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.CombatPanel.<UseMagicWeapon>d__9>(Fort23.Mono.CombatPanel.<UseMagicWeapon>d__9&)
  2013. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.CombatShowTextPanel.<HarmUpdate>d__7>(Fort23.Mono.CombatShowTextPanel.<HarmUpdate>d__7&)
  2014. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.CombatShowTextPanel.<RecoverUpdate>d__6>(Fort23.Mono.CombatShowTextPanel.<RecoverUpdate>d__6&)
  2015. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DaoYouGuaJiAwardPanel.<<AddButtonEvent>b__4_1>d>(Fort23.Mono.DaoYouGuaJiAwardPanel.<<AddButtonEvent>b__4_1>d&)
  2016. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DaoYouGuaJiAwardWidget.<CustomInit>d__5>(Fort23.Mono.DaoYouGuaJiAwardWidget.<CustomInit>d__5&)
  2017. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DaoYouInfoPanel.<<AddButtonEvent>b__12_3>d>(Fort23.Mono.DaoYouInfoPanel.<<AddButtonEvent>b__12_3>d&)
  2018. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DaoYouInfoPanel.<OnClick>d__24>(Fort23.Mono.DaoYouInfoPanel.<OnClick>d__24&)
  2019. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DaoYouInvitePanel.<OnClick2>d__8>(Fort23.Mono.DaoYouInvitePanel.<OnClick2>d__8&)
  2020. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DaoYouLevelWidget.<CustomInit>d__7>(Fort23.Mono.DaoYouLevelWidget.<CustomInit>d__7&)
  2021. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DaoYouWidgetItem.<CustomInit>d__4>(Fort23.Mono.DaoYouWidgetItem.<CustomInit>d__4&)
  2022. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DialoguePanel.<OpenDialoguePanel>d__22>(Fort23.Mono.DialoguePanel.<OpenDialoguePanel>d__22&)
  2023. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DialoguePanel.<SelectOption>d__35>(Fort23.Mono.DialoguePanel.<SelectOption>d__35&)
  2024. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DialoguePanel.<ShowOptions>d__34>(Fort23.Mono.DialoguePanel.<ShowOptions>d__34&)
  2025. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DialoguePanel.<StartShowMassge>d__33>(Fort23.Mono.DialoguePanel.<StartShowMassge>d__33&)
  2026. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DivineSenceEventPreviewPanel.<<AddButtonEvent>b__10_2>d>(Fort23.Mono.DivineSenceEventPreviewPanel.<<AddButtonEvent>b__10_2>d&)
  2027. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DivineSenceEventPreviewPanel.<<AddButtonEvent>b__10_3>d>(Fort23.Mono.DivineSenceEventPreviewPanel.<<AddButtonEvent>b__10_3>d&)
  2028. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DivineSenceInfoPanel.<<AddButtonEvent>b__10_4>d>(Fort23.Mono.DivineSenceInfoPanel.<<AddButtonEvent>b__10_4>d&)
  2029. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DivineSenceInfoPanel.<CustomInit>d__12>(Fort23.Mono.DivineSenceInfoPanel.<CustomInit>d__12&)
  2030. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DivineSenceItemWidget.<CustomInit>d__6>(Fort23.Mono.DivineSenceItemWidget.<CustomInit>d__6&)
  2031. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.DivineSenceRestoredWidget.<<AddButtonEvent>b__7_0>d>(Fort23.Mono.DivineSenceRestoredWidget.<<AddButtonEvent>b__7_0>d&)
  2032. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.FaBaoDetailsPanel.<CustomInit>d__13>(Fort23.Mono.FaBaoDetailsPanel.<CustomInit>d__13&)
  2033. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.GongFaDetailsPanel.<CustomInit>d__13>(Fort23.Mono.GongFaDetailsPanel.<CustomInit>d__13&)
  2034. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.GongFaUpgradePanel.<CustomInit>d__12>(Fort23.Mono.GongFaUpgradePanel.<CustomInit>d__12&)
  2035. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.GuidePanel.<<AddButtonEvent>b__4_0>d>(Fort23.Mono.GuidePanel.<<AddButtonEvent>b__4_0>d&)
  2036. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.HeroBreakthroughPanel.<<AddButtonEvent>b__8_2>d>(Fort23.Mono.HeroBreakthroughPanel.<<AddButtonEvent>b__8_2>d&)
  2037. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.HeroBreakthroughSuccessPanel.<CustomInit>d__7>(Fort23.Mono.HeroBreakthroughSuccessPanel.<CustomInit>d__7&)
  2038. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.HeroHpWidget.<AddBuff>d__12>(Fort23.Mono.HeroHpWidget.<AddBuff>d__12&)
  2039. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.HeroHpWidget.<RemoveBuff>d__11>(Fort23.Mono.HeroHpWidget.<RemoveBuff>d__11&)
  2040. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.HeroInformationPanel.<<AddButtonEvent>b__8_4>d>(Fort23.Mono.HeroInformationPanel.<<AddButtonEvent>b__8_4>d&)
  2041. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.LevelChoosePanel.<CustomInit>d__10>(Fort23.Mono.LevelChoosePanel.<CustomInit>d__10&)
  2042. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.LevelChoosePanel.<PlacesOnClick>d__8>(Fort23.Mono.LevelChoosePanel.<PlacesOnClick>d__8&)
  2043. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.LoadingPanel.<OpenLodingPanel>d__0>(Fort23.Mono.LoadingPanel.<OpenLodingPanel>d__0&)
  2044. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.MainHeroPanel.<CustomInit>d__13>(Fort23.Mono.MainHeroPanel.<CustomInit>d__13&)
  2045. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.MainHeroPanel.<OnClick>d__14>(Fort23.Mono.MainHeroPanel.<OnClick>d__14&)
  2046. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.MainPanel.<>c.<<AddButtonEvent>b__14_8>d>(Fort23.Mono.MainPanel.<>c.<<AddButtonEvent>b__14_8>d&)
  2047. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.MainPanel.<CreatShengShiEvent>d__21>(Fort23.Mono.MainPanel.<CreatShengShiEvent>d__21&)
  2048. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.MainPanel.<CustomInit>d__8>(Fort23.Mono.MainPanel.<CustomInit>d__8&)
  2049. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.OpenBoxaiLvPanel.<OpenPanel>d__4>(Fort23.Mono.OpenBoxaiLvPanel.<OpenPanel>d__4&)
  2050. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.PlacesInfoPanel.<Click_Go>d__13>(Fort23.Mono.PlacesInfoPanel.<Click_Go>d__13&)
  2051. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.PlayerGuideManager.<NextGuide>d__47>(Fort23.Mono.PlayerGuideManager.<NextGuide>d__47&)
  2052. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.PlayerGuideManager.<RunNextGuide>d__49>(Fort23.Mono.PlayerGuideManager.<RunNextGuide>d__49&)
  2053. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.RewardsPanel.<GenerateWidget>d__12>(Fort23.Mono.RewardsPanel.<GenerateWidget>d__12&)
  2054. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.RewardsPanel.<InitRewardsPanel>d__11>(Fort23.Mono.RewardsPanel.<InitRewardsPanel>d__11&)
  2055. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.RewardsPanel.<InitRewardsPanel>d__9>(Fort23.Mono.RewardsPanel.<InitRewardsPanel>d__9&)
  2056. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SelectElixirPanel.<CustomInit>d__9>(Fort23.Mono.SelectElixirPanel.<CustomInit>d__9&)
  2057. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SelectFaBaoPanel.<CustomInit>d__21>(Fort23.Mono.SelectFaBaoPanel.<CustomInit>d__21&)
  2058. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SelectFaBaoPanel.<OnClick>d__19>(Fort23.Mono.SelectFaBaoPanel.<OnClick>d__19&)
  2059. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SentimentEffectWidget.<CreatXian>d__9>(Fort23.Mono.SentimentEffectWidget.<CreatXian>d__9&)
  2060. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SentimentInfoPanel.<UpdateUi>d__17>(Fort23.Mono.SentimentInfoPanel.<UpdateUi>d__17&)
  2061. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShengShiEventWidgetType2.<<AddButtonEvent>b__7_1>d>(Fort23.Mono.ShengShiEventWidgetType2.<<AddButtonEvent>b__7_1>d&)
  2062. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShengShiEventWidgetType2.<CustomInit>d__12>(Fort23.Mono.ShengShiEventWidgetType2.<CustomInit>d__12&)
  2063. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShopBoxWidget.<<AddButtonEvent>b__7_0>d>(Fort23.Mono.ShopBoxWidget.<<AddButtonEvent>b__7_0>d&)
  2064. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShopBoxWidget.<OnButtonCallBack>d__8>(Fort23.Mono.ShopBoxWidget.<OnButtonCallBack>d__8&)
  2065. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShopBoxWidget.<TenButtonCallBack>d__9>(Fort23.Mono.ShopBoxWidget.<TenButtonCallBack>d__9&)
  2066. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShopBuyItemPanel.<CustomInit>d__9>(Fort23.Mono.ShopBuyItemPanel.<CustomInit>d__9&)
  2067. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShopBuyItemPanel.<Function>d__14>(Fort23.Mono.ShopBuyItemPanel.<Function>d__14&)
  2068. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShopItemWidgetType1.<<AddButtonEvent>b__7_0>d>(Fort23.Mono.ShopItemWidgetType1.<<AddButtonEvent>b__7_0>d&)
  2069. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShopItemWidgetType1.<Buy>d__9>(Fort23.Mono.ShopItemWidgetType1.<Buy>d__9&)
  2070. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShopItemWidgetType2.<<AddButtonEvent>b__6_0>d>(Fort23.Mono.ShopItemWidgetType2.<<AddButtonEvent>b__6_0>d&)
  2071. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShopItemWidgetType2.<<AddButtonEvent>b__6_1>d>(Fort23.Mono.ShopItemWidgetType2.<<AddButtonEvent>b__6_1>d&)
  2072. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShopPanel.<OnClick>d__11>(Fort23.Mono.ShopPanel.<OnClick>d__11&)
  2073. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ShowItemMoveToTargetPanel.<ShowPanel>d__10>(Fort23.Mono.ShowItemMoveToTargetPanel.<ShowPanel>d__10&)
  2074. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SkillInfopanel.<OpenPanle>d__6>(Fort23.Mono.SkillInfopanel.<OpenPanle>d__6&)
  2075. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SkillInfopanel.<OpenPanle>d__7>(Fort23.Mono.SkillInfopanel.<OpenPanle>d__7&)
  2076. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SkillRoadSelecPanel.<CustomInit>d__6>(Fort23.Mono.SkillRoadSelecPanel.<CustomInit>d__6&)
  2077. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SkillRoadSelecPanel.<OpenPanel>d__8>(Fort23.Mono.SkillRoadSelecPanel.<OpenPanel>d__8&)
  2078. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SkillSelectPanel.<<AddButtonEvent>b__18_2>d>(Fort23.Mono.SkillSelectPanel.<<AddButtonEvent>b__18_2>d&)
  2079. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SkillSelectPanel.<OnClick>d__47>(Fort23.Mono.SkillSelectPanel.<OnClick>d__47&)
  2080. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SkillSelectPanel.<OnClickSkillKongWidget>d__37>(Fort23.Mono.SkillSelectPanel.<OnClickSkillKongWidget>d__37&)
  2081. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SkillSelectPanel.<SkillBeginDragHandle>d__23>(Fort23.Mono.SkillSelectPanel.<SkillBeginDragHandle>d__23&)
  2082. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.SummonScoreAwardWidget.<CustomInit>d__7>(Fort23.Mono.SummonScoreAwardWidget.<CustomInit>d__7&)
  2083. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.TaskInfoPanel.<CustomInit>d__6>(Fort23.Mono.TaskInfoPanel.<CustomInit>d__6&)
  2084. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.TipMessagePanel.<SetTipMessage>d__8>(Fort23.Mono.TipMessagePanel.<SetTipMessage>d__8&)
  2085. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.TipMessagePanelType2.<SetTipMessage>d__10>(Fort23.Mono.TipMessagePanelType2.<SetTipMessage>d__10&)
  2086. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.TowerLevelWidget.<<AddButtonEvent>b__8_0>d>(Fort23.Mono.TowerLevelWidget.<<AddButtonEvent>b__8_0>d&)
  2087. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.TowerLevelWidget.<CustomInit>d__9>(Fort23.Mono.TowerLevelWidget.<CustomInit>d__9&)
  2088. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.TowerPanel.<<AddButtonEvent>b__9_0>d>(Fort23.Mono.TowerPanel.<<AddButtonEvent>b__9_0>d&)
  2089. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.UIBase.<Dispose>d__30>(Fort23.Mono.UIBase.<Dispose>d__30&)
  2090. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.UIBase.<Hide>d__28>(Fort23.Mono.UIBase.<Hide>d__28&)
  2091. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.UIComponent.<Show>d__1>(Fort23.Mono.UIComponent.<Show>d__1&)
  2092. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.UIManager.<Awake>d__30>(Fort23.Mono.UIManager.<Awake>d__30&)
  2093. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.UIManager.<Update>d__35>(Fort23.Mono.UIManager.<Update>d__35&)
  2094. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.UIPanel.<Hide>d__28>(Fort23.Mono.UIPanel.<Hide>d__28&)
  2095. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.UseExpElixirPanel.<CustomInit>d__5>(Fort23.Mono.UseExpElixirPanel.<CustomInit>d__5&)
  2096. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.WidgetItemWithName.<InitWidget>d__6>(Fort23.Mono.WidgetItemWithName.<InitWidget>d__6&)
  2097. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.WuXingGongFaWidget.<UseSkillFinish>d__11>(Fort23.Mono.WuXingGongFaWidget.<UseSkillFinish>d__11&)
  2098. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.XianTuLogPanel.<OnClick>d__21>(Fort23.Mono.XianTuLogPanel.<OnClick>d__21&)
  2099. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ZhuanPanPanel.<AddUseGongFa>d__10>(Fort23.Mono.ZhuanPanPanel.<AddUseGongFa>d__10&)
  2100. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ZhuanPanPanel.<ExercisesAlter>d__13>(Fort23.Mono.ZhuanPanPanel.<ExercisesAlter>d__13&)
  2101. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ZhuanPanPanel.<UseSkill>d__9>(Fort23.Mono.ZhuanPanPanel.<UseSkill>d__9&)
  2102. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Fort23.Mono.ZhuanPanPanel.<UseSkillFinish>d__8>(Fort23.Mono.ZhuanPanPanel.<UseSkillFinish>d__8&)
  2103. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<GameApplction.<StartGame>d__9>(GameApplction.<StartGame>d__9&)
  2104. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<GameApplction.<XinShouCombat>d__13>(GameApplction.<XinShouCombat>d__13&)
  2105. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<GameAssetUpdatePanel.<DownloadFile>d__6>(GameAssetUpdatePanel.<DownloadFile>d__6&)
  2106. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<GameLogic.Combat.CombatDrive.<CombatFinish>d__9>(GameLogic.Combat.CombatDrive.<CombatFinish>d__9&)
  2107. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<GameLogic.Combat.CombatState.CombatMiniSceneSwitchState.<InitScenes>d__11>(GameLogic.Combat.CombatState.CombatMiniSceneSwitchState.<InitScenes>d__11&)
  2108. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<GameLogic.Combat.CombatState.CombatSceneSwitchState.<InitScenes>d__11>(GameLogic.Combat.CombatState.CombatSceneSwitchState.<InitScenes>d__11&)
  2109. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<GameLogic.Combat.CombatTool.MagicWeaponCollisionInfo.<PongZhuang>d__15>(GameLogic.Combat.CombatTool.MagicWeaponCollisionInfo.<PongZhuang>d__15&)
  2110. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<GameUI.Combat.LevelBattleCombatMono.<UICallBack>d__1>(GameUI.Combat.LevelBattleCombatMono.<UICallBack>d__1&)
  2111. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<ScrollList.<onValueChanged2>d__38>(ScrollList.<onValueChanged2>d__38&)
  2112. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<UDPForKCP.<BeginRecv>d__20>(UDPForKCP.<BeginRecv>d__20&)
  2113. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<UDPForKCP.<SendAsync>d__18>(UDPForKCP.<SendAsync>d__18&)
  2114. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<UTool.CustomizeTimeLogic.FxLogic.TimeLineEventLogic.TimeLineAudioEventLogic.<ProEnter>d__2>(UTool.CustomizeTimeLogic.FxLogic.TimeLineEventLogic.TimeLineAudioEventLogic.<ProEnter>d__2&)
  2115. // System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<Utility.CTween.CustomTweener.<Kill>d__20>(Utility.CTween.CustomTweener.<Kill>d__20&)
  2116. // bool System.Runtime.CompilerServices.RuntimeHelpers.IsReferenceOrContainsReferences<object>()
  2117. // byte& System.Runtime.CompilerServices.Unsafe.Add<byte>(byte&,int)
  2118. // object& System.Runtime.CompilerServices.Unsafe.As<object,object>(object&)
  2119. // System.Void* System.Runtime.CompilerServices.Unsafe.AsPointer<object>(object&)
  2120. // object& System.Runtime.CompilerServices.Unsafe.AsRef<object>(object&)
  2121. // byte System.Runtime.CompilerServices.Unsafe.ReadUnaligned<byte>(byte&)
  2122. // int System.Runtime.CompilerServices.Unsafe.ReadUnaligned<int>(byte&)
  2123. // long System.Runtime.CompilerServices.Unsafe.ReadUnaligned<long>(byte&)
  2124. // object System.Runtime.CompilerServices.Unsafe.ReadUnaligned<object>(byte&)
  2125. // int System.Runtime.CompilerServices.Unsafe.SizeOf<byte>()
  2126. // int System.Runtime.CompilerServices.Unsafe.SizeOf<int>()
  2127. // int System.Runtime.CompilerServices.Unsafe.SizeOf<long>()
  2128. // int System.Runtime.CompilerServices.Unsafe.SizeOf<object>()
  2129. // System.Void System.Runtime.CompilerServices.Unsafe.WriteUnaligned<byte>(byte&,byte)
  2130. // System.Void System.Runtime.CompilerServices.Unsafe.WriteUnaligned<int>(byte&,int)
  2131. // System.Void System.Runtime.CompilerServices.Unsafe.WriteUnaligned<long>(byte&,long)
  2132. // System.Void System.Runtime.CompilerServices.Unsafe.WriteUnaligned<object>(byte&,object)
  2133. // byte& System.Runtime.InteropServices.MemoryMarshal.GetReference<byte>(System.ReadOnlySpan<byte>)
  2134. // byte& System.Runtime.InteropServices.MemoryMarshal.GetReference<byte>(System.Span<byte>)
  2135. // System.Threading.Tasks.Task<object> System.Threading.Tasks.Task.FromResult<object>(object)
  2136. // System.Threading.Tasks.Task<object> System.Threading.Tasks.Task.Run<object>(System.Func<object>)
  2137. // int UnityEngine.AndroidJNIHelper.ConvertFromJNIArray<int>(System.IntPtr)
  2138. // object UnityEngine.AndroidJNIHelper.ConvertFromJNIArray<object>(System.IntPtr)
  2139. // System.IntPtr UnityEngine.AndroidJNIHelper.GetFieldID<int>(System.IntPtr,string,bool)
  2140. // System.IntPtr UnityEngine.AndroidJNIHelper.GetFieldID<object>(System.IntPtr,string,bool)
  2141. // System.IntPtr UnityEngine.AndroidJNIHelper.GetMethodID<object>(System.IntPtr,string,object[],bool)
  2142. // object UnityEngine.AndroidJavaObject.Call<object>(string,object[])
  2143. // int UnityEngine.AndroidJavaObject.FromJavaArrayDeleteLocalRef<int>(System.IntPtr)
  2144. // object UnityEngine.AndroidJavaObject.FromJavaArrayDeleteLocalRef<object>(System.IntPtr)
  2145. // object UnityEngine.AndroidJavaObject.Get<object>(string)
  2146. // int UnityEngine.AndroidJavaObject.GetStatic<int>(string)
  2147. // object UnityEngine.AndroidJavaObject.GetStatic<object>(string)
  2148. // object UnityEngine.AndroidJavaObject._Call<object>(System.IntPtr,object[])
  2149. // object UnityEngine.AndroidJavaObject._Call<object>(string,object[])
  2150. // object UnityEngine.AndroidJavaObject._Get<object>(System.IntPtr)
  2151. // object UnityEngine.AndroidJavaObject._Get<object>(string)
  2152. // int UnityEngine.AndroidJavaObject._GetStatic<int>(System.IntPtr)
  2153. // int UnityEngine.AndroidJavaObject._GetStatic<int>(string)
  2154. // object UnityEngine.AndroidJavaObject._GetStatic<object>(System.IntPtr)
  2155. // object UnityEngine.AndroidJavaObject._GetStatic<object>(string)
  2156. // object[] UnityEngine.AssetBundle.ConvertObjects<object>(UnityEngine.Object[])
  2157. // object[] UnityEngine.AssetBundle.LoadAllAssets<object>()
  2158. // object UnityEngine.AssetBundle.LoadAsset<object>(string)
  2159. // UnityEngine.AssetBundleRequest UnityEngine.AssetBundle.LoadAssetAsync<object>(string)
  2160. // object UnityEngine.Component.GetComponent<object>()
  2161. // object UnityEngine.Component.GetComponentInChildren<object>()
  2162. // object UnityEngine.Component.GetComponentInChildren<object>(bool)
  2163. // object UnityEngine.Component.GetComponentInParent<object>()
  2164. // object UnityEngine.Component.GetComponentInParent<object>(bool)
  2165. // object[] UnityEngine.Component.GetComponents<object>()
  2166. // System.Void UnityEngine.Component.GetComponentsInChildren<object>(bool,System.Collections.Generic.List<object>)
  2167. // object[] UnityEngine.Component.GetComponentsInChildren<object>()
  2168. // object[] UnityEngine.Component.GetComponentsInChildren<object>(bool)
  2169. // object UnityEngine.GameObject.AddComponent<object>()
  2170. // object UnityEngine.GameObject.GetComponent<object>()
  2171. // object UnityEngine.GameObject.GetComponentInChildren<object>()
  2172. // object UnityEngine.GameObject.GetComponentInChildren<object>(bool)
  2173. // object UnityEngine.GameObject.GetComponentInParent<object>()
  2174. // object UnityEngine.GameObject.GetComponentInParent<object>(bool)
  2175. // object[] UnityEngine.GameObject.GetComponents<object>()
  2176. // System.Void UnityEngine.GameObject.GetComponentsInChildren<object>(System.Collections.Generic.List<object>)
  2177. // System.Void UnityEngine.GameObject.GetComponentsInChildren<object>(bool,System.Collections.Generic.List<object>)
  2178. // object[] UnityEngine.GameObject.GetComponentsInChildren<object>()
  2179. // object[] UnityEngine.GameObject.GetComponentsInChildren<object>(bool)
  2180. // System.Void UnityEngine.Graphics.RenderMeshInstanced<UnityEngine.Matrix4x4>(UnityEngine.RenderParams&,UnityEngine.Mesh,int,UnityEngine.Matrix4x4[],int,int)
  2181. // object UnityEngine.JsonUtility.FromJson<object>(string)
  2182. // object UnityEngine.Object.FindFirstObjectByType<object>()
  2183. // object UnityEngine.Object.FindObjectOfType<object>()
  2184. // object UnityEngine.Object.Instantiate<object>(object)
  2185. // object UnityEngine.Object.Instantiate<object>(object,UnityEngine.Vector3,UnityEngine.Quaternion)
  2186. // UnityEngine.AsyncInstantiateOperation<object> UnityEngine.Object.InstantiateAsync<object>(object)
  2187. // UnityEngine.AsyncInstantiateOperation<object> UnityEngine.Object.InstantiateAsync<object>(object,int,UnityEngine.Transform,System.ReadOnlySpan<UnityEngine.Vector3>,System.ReadOnlySpan<UnityEngine.Quaternion>)
  2188. // object UnityEngine.Resources.GetBuiltinResource<object>(string)
  2189. // object UnityEngine.Resources.Load<object>(string)
  2190. // object UnityEngine.ScriptableObject.CreateInstance<object>()
  2191. // int UnityEngine._AndroidJNIHelper.ConvertFromJNIArray<int>(System.IntPtr)
  2192. // object UnityEngine._AndroidJNIHelper.ConvertFromJNIArray<object>(System.IntPtr)
  2193. // System.IntPtr UnityEngine._AndroidJNIHelper.GetFieldID<int>(System.IntPtr,string,bool)
  2194. // System.IntPtr UnityEngine._AndroidJNIHelper.GetFieldID<object>(System.IntPtr,string,bool)
  2195. // System.IntPtr UnityEngine._AndroidJNIHelper.GetMethodID<object>(System.IntPtr,string,object[],bool)
  2196. // string UnityEngine._AndroidJNIHelper.GetSignature<object>(object[])
  2197. }
  2198. }