changhong/xcode/Classes/Native/System3.cpp

35303 lines
1.7 MiB

#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
struct VirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct VirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
struct GenericVirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct GenericVirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct GenericVirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct InterfaceActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
struct GenericInterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct GenericInterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct GenericInterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74;
// System.Attribute[]
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.ArrayList
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.ComponentModel.EventDescriptor>[]
struct EntryU5BU5D_t638C976D49A211F6F476614A253B4EE4F453CCA9;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.ComponentModel.PropertyDescriptor>[]
struct EntryU5BU5D_tD80F8A706A062DE842D7696906B1367AA5A51D36;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.ComponentModel.EventDescriptor>
struct KeyCollection_tB35289347DFD10B6097E793310BCEBFA319BB178;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.ComponentModel.PropertyDescriptor>
struct KeyCollection_tFEE8D76F4F2F2B6974A4F7C4DE33015B9CF6BEE6;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>
struct ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.ComponentModel.EventDescriptor>
struct ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.ComponentModel.PropertyDescriptor>
struct ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA;
// System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.EventDescriptor>
struct Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298;
// System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.PropertyDescriptor>
struct Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9;
// System.Collections.Generic.List`1<System.WeakReference>
struct List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF;
// System.Collections.Hashtable
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9;
// System.Collections.Hashtable/bucket[]
struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A;
// System.Collections.ICollection
struct ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54;
// System.Collections.IComparer
struct IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.IEnumerator
struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A;
// System.Collections.IEqualityComparer
struct IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C;
// System.Collections.IList
struct IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA;
// System.Collections.Specialized.OrderedDictionary
struct OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D;
// System.ComponentModel.AmbientValueAttribute
struct AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E;
// System.ComponentModel.AsyncCompletedEventArgs
struct AsyncCompletedEventArgs_tADCBE47368F4D8B198B46D332B27EE38C8B5F8B7;
// System.ComponentModel.AttributeCollection
struct AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE;
// System.ComponentModel.AttributeCollection/AttributeEntry[]
struct AttributeEntryU5BU5D_t82EF07E3984B106E346A6B35336772424C0FCB5A;
// System.ComponentModel.AttributeProviderAttribute
struct AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068;
// System.ComponentModel.BaseNumberConverter
struct BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63;
// System.ComponentModel.CategoryAttribute
struct CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80;
// System.ComponentModel.CustomTypeDescriptor
struct CustomTypeDescriptor_tF8665CD45DFFA622F7EB328A2F77067DD2147689;
// System.ComponentModel.DefaultEventAttribute
struct DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846;
// System.ComponentModel.DefaultPropertyAttribute
struct DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7;
// System.ComponentModel.DelegatingTypeDescriptionProvider
struct DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56;
// System.ComponentModel.Design.IDesigner
struct IDesigner_tB0DC62D61F9C80E298D483CDDD55D2E8E5C66AC2;
// System.ComponentModel.Design.ITypeDescriptorFilterService
struct ITypeDescriptorFilterService_t7F3A790DAB15141C69DE8916436C6AAD67C7EFDA;
// System.ComponentModel.Design.Serialization.InstanceDescriptor
struct InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6;
// System.ComponentModel.DesignerAttribute
struct DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0;
// System.ComponentModel.EditorAttribute
struct EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5;
// System.ComponentModel.EventDescriptor
struct EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222;
// System.ComponentModel.EventDescriptorCollection
struct EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37;
// System.ComponentModel.EventDescriptor[]
struct EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4;
// System.ComponentModel.ExtendedPropertyDescriptor
struct ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6;
// System.ComponentModel.ExtenderProvidedPropertyAttribute
struct ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68;
// System.ComponentModel.IComNativeDescriptorHandler
struct IComNativeDescriptorHandler_t37AAAFAEE49C1CEB4F9AF7AAC05A955D1DD70678;
// System.ComponentModel.IComponent
struct IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6;
// System.ComponentModel.ICustomTypeDescriptor
struct ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384;
// System.ComponentModel.IExtenderProvider
struct IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7;
// System.ComponentModel.IExtenderProvider[]
struct IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031;
// System.ComponentModel.ISite
struct ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2;
// System.ComponentModel.ITypeDescriptorContext
struct ITypeDescriptorContext_tE299A513DA3526C32BFAC7D1FDFFC55AFB1D0CD6;
// System.ComponentModel.MemberDescriptor
struct MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8;
// System.ComponentModel.PropertyChangedEventArgs
struct PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46;
// System.ComponentModel.PropertyChangedEventHandler
struct PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82;
// System.ComponentModel.PropertyDescriptor
struct PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D;
// System.ComponentModel.PropertyDescriptorCollection
struct PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2;
// System.ComponentModel.PropertyDescriptorCollection/PropertyDescriptorEnumerator
struct PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D;
// System.ComponentModel.PropertyDescriptor[]
struct PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F;
// System.ComponentModel.PropertyTabAttribute
struct PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8;
// System.ComponentModel.PropertyTabScope[]
struct PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260;
// System.ComponentModel.ProvidePropertyAttribute
struct ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3;
// System.ComponentModel.ReadOnlyAttribute
struct ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B;
// System.ComponentModel.RecommendedAsConfigurableAttribute
struct RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55;
// System.ComponentModel.ReferenceConverter
struct ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4;
// System.ComponentModel.ReferenceConverter/ReferenceComparer
struct ReferenceComparer_t3DEA0E67FDC8BA34C167CC4401A1FCC3CFE0B33A;
// System.ComponentModel.ReflectEventDescriptor
struct ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360;
// System.ComponentModel.ReflectPropertyDescriptor
struct ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E;
// System.ComponentModel.ReflectTypeDescriptionProvider
struct ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675;
// System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData
struct ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96;
// System.ComponentModel.RefreshEventArgs
struct RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650;
// System.ComponentModel.RefreshEventHandler
struct RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27;
// System.ComponentModel.RefreshPropertiesAttribute
struct RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1;
// System.ComponentModel.RunInstallerAttribute
struct RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3;
// System.ComponentModel.RunWorkerCompletedEventArgs
struct RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D;
// System.ComponentModel.RunWorkerCompletedEventHandler
struct RunWorkerCompletedEventHandler_t8E766853412F70C3B8826718D59377F7F464BCAB;
// System.ComponentModel.SByteConverter
struct SByteConverter_t99F8032C93CF0F34D8C8BB8AA744D39E794AA4B7;
// System.ComponentModel.SRCategoryAttribute
struct SRCategoryAttribute_t1C136A51E836D96E811610B3BB0ADFE784A7CF65;
// System.ComponentModel.SettingsBindableAttribute
struct SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664;
// System.ComponentModel.SingleConverter
struct SingleConverter_t86A24FBD46D753B99344470E9566584F15538902;
// System.ComponentModel.StringConverter
struct StringConverter_t054FA0796F4C8E951208AFA052D99BCB8E68BED7;
// System.ComponentModel.TimeSpanConverter
struct TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7;
// System.ComponentModel.ToolboxItemAttribute
struct ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C;
// System.ComponentModel.ToolboxItemFilterAttribute
struct ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910;
// System.ComponentModel.TypeConverter
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB;
// System.ComponentModel.TypeConverter/SimplePropertyDescriptor
struct SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA;
// System.ComponentModel.TypeConverter/StandardValuesCollection
struct StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3;
// System.ComponentModel.TypeConverterAttribute
struct TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8;
// System.ComponentModel.TypeDescriptionProvider
struct TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591;
// System.ComponentModel.TypeDescriptionProvider/EmptyCustomTypeDescriptor
struct EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8;
// System.ComponentModel.TypeDescriptionProviderAttribute
struct TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034;
// System.ComponentModel.TypeDescriptor
struct TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF;
// System.ComponentModel.TypeDescriptor/AttributeFilterCacheItem
struct AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01;
// System.ComponentModel.TypeDescriptor/AttributeProvider
struct AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF;
// System.ComponentModel.TypeDescriptor/ComNativeDescriptionProvider
struct ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D;
// System.ComponentModel.TypeDescriptor/FilterCacheItem
struct FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4;
// System.ComponentModel.TypeDescriptor/MergedTypeDescriptor
struct MergedTypeDescriptor_t9395D9B4F23C94B7997A9ED698CBEF7995EB162B;
// System.ComponentModel.TypeDescriptor/TypeDescriptionNode
struct TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1;
// System.ComponentModel.WeakHashtable
struct WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.BooleanSwitch
struct BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Diagnostics.TraceSwitch
struct TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8;
// System.EventArgs
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E;
// System.EventHandler
struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C;
// System.Exception
struct Exception_t;
// System.FormatException
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC;
// System.Globalization.Calendar
struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5;
// System.Globalization.CompareInfo
struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1;
// System.Globalization.CultureData
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD;
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8;
// System.Globalization.TextInfo
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8;
// System.Guid[]
struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.IFormatProvider
struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901;
// System.IServiceProvider
struct IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Reflection.Assembly
struct Assembly_t;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF;
// System.Reflection.EventInfo
struct EventInfo_t;
// System.Reflection.EventInfo/AddEventAdapter
struct AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MemberInfo[]
struct MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6;
// System.Reflection.MethodBase
struct MethodBase_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Reflection.Module
struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7;
// System.Reflection.Module[]
struct ModuleU5BU5D_t5A96D0D19A757DE3D576E4EB81BE0FD6326DBB6E;
// System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB;
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA;
// System.Reflection.PropertyInfo
struct PropertyInfo_t;
// System.Reflection.TargetInvocationException
struct TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8;
// System.Reflection.TypeFilter
struct TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18;
// System.Runtime.InteropServices.MarshalAsAttribute
struct MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Type
struct Type_t;
// System.TypeLoadException
struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// System.WeakReference
struct WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D;
IL2CPP_EXTERN_C RuntimeClass* AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Delegate_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IContainer_tA0D1065AEB21197BA9E1F139F6501B8ADCB66077_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDesignerHost_tCA513EB1D3737F4248D27D16475E00F8C561219E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDesigner_tB0DC62D61F9C80E298D483CDDD55D2E8E5C66AC2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IExtenderListService_t0B2C88F531ED7EB2EE3AF4251D51FA289253434A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* INestedSite_t9A84D4AF79B470FD45AF5F23123DAB2C923DD6A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IReferenceService_t3D5BD2CDF5EA822FDE024FD069D65B6161BC5F9F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITypeDescriptorContext_tE299A513DA3526C32BFAC7D1FDFFC55AFB1D0CD6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITypeDescriptorFilterService_t7F3A790DAB15141C69DE8916436C6AAD67C7EFDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITypeResolutionService_t7F3892CAAFEF769D52D791845BBDC389788F3B26_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IUnimplemented_t534F24BFF614BAA8687C052B77E71CB975EC0D0D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MergedTypeDescriptor_t9395D9B4F23C94B7997A9ED698CBEF7995EB162B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReferenceComparer_t3DEA0E67FDC8BA34C167CC4401A1FCC3CFE0B33A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ToolboxItemFilterType_t55CD1A1F306F891450DFC2290FE851E94CC3B8C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral06576556D1AD802F247CAD11AE748BE47B70CD9C;
IL2CPP_EXTERN_C String_t* _stringLiteral0D406DC498224C465C9F2AEF544FD6543E2F3256;
IL2CPP_EXTERN_C String_t* _stringLiteral1708ED1EF3F1A4D2BF086D271CAE42596C45D55A;
IL2CPP_EXTERN_C String_t* _stringLiteral183286DAC61719C4FD901D84F84C9E91585B6986;
IL2CPP_EXTERN_C String_t* _stringLiteral194F10DF7E62063526272FE8EC1D30CA08046A77;
IL2CPP_EXTERN_C String_t* _stringLiteral22A11CBBFC52FA75AC18728855898EDCDEF239D2;
IL2CPP_EXTERN_C String_t* _stringLiteral3030E728F154BF51419109EFB93B6B8AEEC9A976;
IL2CPP_EXTERN_C String_t* _stringLiteral31A81EC93DB3740EE3984FC40E34A60B0412643D;
IL2CPP_EXTERN_C String_t* _stringLiteral335C4C1E2F05B5297A56769D8DE75AD9C4874CD3;
IL2CPP_EXTERN_C String_t* _stringLiteral39BAF81F3F938D8F9BD5FF57BF42FDE083C39811;
IL2CPP_EXTERN_C String_t* _stringLiteral39DCE7E6DE04ADD6AF893DDAF2D66B921FF02280;
IL2CPP_EXTERN_C String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
IL2CPP_EXTERN_C String_t* _stringLiteral3B6A4FA2E23B76A292EA032537ED56D3084067A8;
IL2CPP_EXTERN_C String_t* _stringLiteral3C6B183D348F955357B33A3FBA45083E98AB8125;
IL2CPP_EXTERN_C String_t* _stringLiteral42CA2466BE73DFBF4566E79C71B6090A7346DF09;
IL2CPP_EXTERN_C String_t* _stringLiteral448AB73BA1C21E671E218FB91F2644C834F0C16F;
IL2CPP_EXTERN_C String_t* _stringLiteral44C57ABD888A66B36D4B7C902134063E4A097223;
IL2CPP_EXTERN_C String_t* _stringLiteral463436EF053720E6820027AC19A91955E21430D5;
IL2CPP_EXTERN_C String_t* _stringLiteral57D0D110DFCECD43C3781F997F490B8F87031F95;
IL2CPP_EXTERN_C String_t* _stringLiteral5C10B5B2CD673A0616D529AA5234B12EE7153808;
IL2CPP_EXTERN_C String_t* _stringLiteral6F168092555938E6A3D3B918C82C2D26170041FC;
IL2CPP_EXTERN_C String_t* _stringLiteral6F4CF4C32070EEC47857D2D1C0E9656C7B2D0F80;
IL2CPP_EXTERN_C String_t* _stringLiteral70E0E4E783C78C1A0EBC1C9D2B25532407E568D5;
IL2CPP_EXTERN_C String_t* _stringLiteral710779C60AD7499E477DA8802B6979170C7BA227;
IL2CPP_EXTERN_C String_t* _stringLiteral716BF4BFDD48C8BE1229F59CD0D8B35D54774E2D;
IL2CPP_EXTERN_C String_t* _stringLiteral71BE626854390279C8DE7ECCCFA7B9B42168F86B;
IL2CPP_EXTERN_C String_t* _stringLiteral75DCD1F61A1F7E67C90F78978534AFCD113053A6;
IL2CPP_EXTERN_C String_t* _stringLiteral79292189B5C0A7B6DE3BDA58667E26472826017E;
IL2CPP_EXTERN_C String_t* _stringLiteral7DE3492745C0E4A99AFFB51D2CBB382C843F75B5;
IL2CPP_EXTERN_C String_t* _stringLiteral7F9642E831E1D7887F2F2BE3154F1533B5C390C0;
IL2CPP_EXTERN_C String_t* _stringLiteral8572C0E406DBF82FA5574E14CA56E07642DE3310;
IL2CPP_EXTERN_C String_t* _stringLiteral876BAB78066F4F76F12B4112D6DB4A433C09DD31;
IL2CPP_EXTERN_C String_t* _stringLiteral88D4C9655BC7EFADB5989A802C6F0FB153615D01;
IL2CPP_EXTERN_C String_t* _stringLiteral8DC7D044CD123CF43C6C3692B3DACF8DA158EE4E;
IL2CPP_EXTERN_C String_t* _stringLiteral90C5D1358D128117989FC21F2897A25C99205E50;
IL2CPP_EXTERN_C String_t* _stringLiteral90CE69628586A9232EAA11888B4D010682DB9C4C;
IL2CPP_EXTERN_C String_t* _stringLiteral9852EF6A4E62DEF490CCB6F200BC08F5D8D5AC92;
IL2CPP_EXTERN_C String_t* _stringLiteral9B7BC23CFD2D5498482F57CBA31E729EE22C71F3;
IL2CPP_EXTERN_C String_t* _stringLiteral9E94758983980504AF303EF297FD2BF9D9CEA063;
IL2CPP_EXTERN_C String_t* _stringLiteral9FA22049CF6367C2DB11AB15BC3EDE8D5104CB06;
IL2CPP_EXTERN_C String_t* _stringLiteralA0DA104AA05B235639E5FC94B288E06E21037F0D;
IL2CPP_EXTERN_C String_t* _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B;
IL2CPP_EXTERN_C String_t* _stringLiteralB16716A1E72199716214493190761B3375C63F23;
IL2CPP_EXTERN_C String_t* _stringLiteralB25D43BA18FDE045622CA56DCD4CC5121EF85531;
IL2CPP_EXTERN_C String_t* _stringLiteralB7E45A36FF3610E06A3801FD14FA6C1E6B89312F;
IL2CPP_EXTERN_C String_t* _stringLiteralB81ACAA21AE2689401AFD1AF79138ED5CB275C58;
IL2CPP_EXTERN_C String_t* _stringLiteralBFFFD736CDDD08A4EEE689949C3399CB61DA773B;
IL2CPP_EXTERN_C String_t* _stringLiteralC0DE08B271A7803949CF3701177C39EA82D111C5;
IL2CPP_EXTERN_C String_t* _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93;
IL2CPP_EXTERN_C String_t* _stringLiteralC9937828CE00719332E80BEA0A26B7DDD25E1012;
IL2CPP_EXTERN_C String_t* _stringLiteralCC342BE8143233CD53918E1DFEE1DA80BEA484D3;
IL2CPP_EXTERN_C String_t* _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9;
IL2CPP_EXTERN_C String_t* _stringLiteralD2AD511C8E3470443090EE15D44BB5849824FB7A;
IL2CPP_EXTERN_C String_t* _stringLiteralD7F67A250D8254339CC572B200990D99FE1BAF29;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDB7F56C5583130E4C5D05C8A9FF06FFC0024175E;
IL2CPP_EXTERN_C String_t* _stringLiteralDFC7BE8AA4DBFC6FFC24F7485405960CE6429E88;
IL2CPP_EXTERN_C String_t* _stringLiteralE059FC6904F0A3146139802D09BC08D1C34F0E25;
IL2CPP_EXTERN_C String_t* _stringLiteralE06528401F91994FE8F0216AE8D798BA948D62F0;
IL2CPP_EXTERN_C String_t* _stringLiteralE10FB83C6288E277CEDA92426153BE5417FCBBBA;
IL2CPP_EXTERN_C String_t* _stringLiteralE3B7C980D763196E9D134C3EC1C3DE0DED54E5CE;
IL2CPP_EXTERN_C String_t* _stringLiteralFCF25CDFBB71E0585A34354EEA2D84AEE8F57EA2;
IL2CPP_EXTERN_C String_t* _stringLiteralFDE49AA00F4966A6ABC348B5B3B985032EABF411;
IL2CPP_EXTERN_C String_t* _stringLiteralFF3BA695D3EFEA937A1B1571C4E6461A8DACB151;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m54593B30AF9AE0DF167A91C9EB0DE2EBF0585CA8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m8CA97D8A79287AD4B0BA6D9C175DFAA86CBFE699_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m884FAA4910F04B198C6B0BD971350142CF9B7321_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m8EE2B265525E3930B7BC2B503CE232A26A4108CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m24D3A769E17A29BB0F5DDFA3EB5B814D2EE4FEFC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m677E022065BF1E72B83C3FE0E35860BEE9D6A845_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_mD459DDC86CEE637B693CF8D067475A1C0BABAC6B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_mE835AEFCCB352A3F1B68D9900793B66C3E5EAD97_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_m83EF51F934DEF17DEEB16AE63C4C9E89DE5850AC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_m8F0EB76F42A5C202CFB98B83BF9FED0CA858572B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PropertyTabAttribute_InitializeArrays_mD8AE560AB430117121701B018B9C36B9CDA3B531_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PropertyTabAttribute__ctor_m61853ADFF5EC012A40B967FE861832DDAF7D1A08_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PropertyTabAttribute__ctor_mB42E8A52E002DEC87211862DAECBAB55BF62249D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PropertyTabAttribute_get_TabClasses_m6CE9F5CB57CDD0AD0BEA1C9CBC9125D1701AC995_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReferenceConverter_ConvertTo_m82E3032D3598D3E709C5475209ADFE427FD7EDFE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectEventDescriptor_AddEventHandler_m48D106DBB820A98053D0AB78E162E9CD9FE9FC59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectEventDescriptor_FillMethods_m7AAD8CF57D3F38B679BB63966AD032684072E3B7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectEventDescriptor_RemoveEventHandler_m7E857D97702405D54DF79D0BE1917F5CEDF1F650_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectEventDescriptor__ctor_m148E8EA0618ACD1C6E5C671B38BDFE3BE048FD12_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectEventDescriptor__ctor_mA48120EE25265C1F7739FFA078DC2462F89F24DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectPropertyDescriptor_AddValueChanged_m3197A9D9D7029DF4FD0D05ACF1972107B86FC0DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectPropertyDescriptor_ExtenderResetValue_mD615C4E5718D88643447EA1115D1B48460D2DA06_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectPropertyDescriptor_ExtenderSetValue_mC58759964687244DFA66A4330C48B8EC0BFA860E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectPropertyDescriptor_GetValue_mE3BE8817DAF798E0E09269B39C1650DF4B480688_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectPropertyDescriptor_OnINotifyPropertyChanged_mBD589BFB27A3750D64BB9404B282E699BF366739_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectPropertyDescriptor_RemoveValueChanged_mEDF7F459C71B83D8DDF666A3BCA4120639048560_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectPropertyDescriptor_ResetValue_m0B916789E04B78F99B67E2B67710230B081260DF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectPropertyDescriptor_SetValue_m0789356EEA5ECB86774764A46A36C3BDBAFAE629_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectPropertyDescriptor__ctor_mB5E1EB28647D1B39D7EEC2A60C41BD3F2B5EBB4E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectPropertyDescriptor__ctor_mD94CA3BC0F9D3DA32E778F0F8724BE6CAA213475_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectTypeDescriptionProvider_AddEditorTable_m990D5117A898C6C261F5195516D1032F04028262_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectTypeDescriptionProvider_GetExtenderProviders_mF9938FD27716A116007EF4F9E60B2E4E318D62F6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TimeSpanConverter_ConvertFrom_m4244DF51D5A1AC286C35FCE04D82F5A9A2F33894_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TimeSpanConverter_ConvertTo_m6A1E0C832909670E26B892813AD9E14F08EE316E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ToolboxItemAttribute_get_ToolboxItemType_m8F418ADC24E7FBB4311BA4799A974EE383B5CC86_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeConverter_GetConvertFromException_m10012C012ED008F8AC9DF76BBAD93E19DDA6EAC3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeConverter_GetConvertToException_mD906D7D39A16CC8ACFC0179208CE2627B73D5C32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptionProviderAttribute__ctor_m10489BA811D0D61760F9C90B2D72542A08A3F90A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptionProviderAttribute__ctor_mFF54F364489EC3FCDA8D2980796604488C0D3121_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptionProvider_CreateInstance_m5BE90DBA6F931D0EC8A7DA9162EDC27B8F141B97_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptionProvider_GetExtenderProviders_mF8C68F2BA1E5CDDFAD9618C257F2D743FD10FF39_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptionProvider_GetReflectionType_mB8AF537325510600B0C5A2B9940C970FA9DF23E4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptionProvider_GetRuntimeType_m981840CB2ED5D8AA352E4AE15691C5B883AD0099_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptionProvider_GetTypeDescriptor_m04847083CB9DB8E7BF69CFCD06283A8D817293A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptionProvider_IsSupportedType_m1E8F92E78E758F5D520EA5562878A1B54303E61F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_AddAttributes_mB0746794E9E442A99B5F8EEDB072D9DB2EE1F85B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_AddAttributes_mD1811913AC4018397C137D19A21CC41591D7C227_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_AddProviderTransparent_m0D344B2FDDCC7DFA802B757229B8915BFD5491CC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_AddProviderTransparent_m9F8960CB1DFA72AC6314EB663EFE25E5B469CF72_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_AddProvider_mD81A072B4AB0D7801F9297879CB43071C8740C9A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_AddProvider_mEB5B4337E9B7531C2335CE716429A9881ECD92C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_CreateAssociation_mD52776F0B75C62C60CB8C089475727A0D7BF5B17_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_CreateInstance_m9615D98B08C826DF6B261B054FCB88C56E96CDC2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_GetAssociation_m45465AA1409C932535F021345F71CFF99CBC4D98_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_GetEditor_m5205BD6EA7BC05FA4DD716AE0E15A5B2A4BC8234_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_GetEditor_m66F3C5F1EF83D37BD530FDBC91EACCDD6E339611_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_GetFullComponentName_m138486221163708B96C25C805A85F8414598F74E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_GetProvider_m3265CFAFF759A9DC540031E2401F96CD00BE9BF7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_GetProvider_mCD95C62422DB0D4811ACE64E72D3C4C5B25BDD90_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_GetReflectionType_m92BF9F8F63D9F2A14BD3E40941A7FD4B3662043E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_GetReflectionType_mB28D64FBA294D618334381A77DAE790811611C3D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_RemoveAssociation_m1C3673E59BB67895F9462F6BD390BFFEA7CFEA63_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_RemoveAssociations_mC32F5B12534541E6C2426ECCD01E3686DC5584FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_RemoveProviderTransparent_m01E159D92DF8529B013003E7490F438A20F9150D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_RemoveProviderTransparent_m26D6ACC950A85E69D6EB21C0F1DBE28789E3E043_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_RemoveProvider_m64D37F2DD488312D85314715D4F41DDCFF14D588_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_RemoveProvider_m6AC5F6B0977537915ED5D177715CF02DA4E6F3C6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TypeDescriptor_SortDescriptorArray_mF1BF8FDE18108198B6E5CF6B31909A7F544F649C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m93F5F0418A24D3024919B502958D9A8F3941D196_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mA9C03E1628819B8A1A9D16D0BA29BCD78E252873_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ArrayConverter_tAAD8F39711C6ECD39D31226FA1D140DD38752B57_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* BooleanConverter_tD0D177A9F577915FAA9F6749229672CE8EBAA94C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ByteConverter_t59E5742D740228F5B9AB91169C2EA907A023328A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* CharConverter_tFD013540F3AFDBF6DB36FEE066025D778FAED95A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* CollectionConverter_t039E15C433996B0F0F0EB78BEE81F6DE0705F184_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ComVisibleAttribute_t3815D768D1DE3E84BAF7FC90E9F2F283FB1C74B3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* CultureInfoConverter_t6BD4316CF7C9163A01C35EC9382BC3D1C01FB6C0_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DateTimeConverter_tE35DE01AAE1A29D50B4B0DC6467C9219CCE04DE1_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DateTimeOffsetConverter_tD9E7BEFD22CBB5DA01F50C0D51CDD60DF29F1D33_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DecimalConverter_t10232B897580B6DE599BB375BE8C0F4E1C30B0C1_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Delegate_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* GuidAttribute_t12D6C9EA1C65F4B67401C657AB97CD253FC09D34_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* GuidConverter_t9207FA129C0A5A7AD84D5FEC9C9F2CA5F3FB9D7D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Guid_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IDesignerHost_tCA513EB1D3737F4248D27D16475E00F8C561219E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IExtenderListService_t0B2C88F531ED7EB2EE3AF4251D51FA289253434A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* INotifyPropertyChanged_t60B44979ACFFDE2136E090F0E834D9190558C2B7_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IReferenceService_t3D5BD2CDF5EA822FDE024FD069D65B6161BC5F9F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ITypeDescriptorFilterService_t7F3A790DAB15141C69DE8916436C6AAD67C7EFDA_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ITypeResolutionService_t7F3892CAAFEF769D52D791845BBDC389788F3B26_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* InterfaceTypeAttribute_t4FD9BC97FD0CCFF82FA0562D6F897A54C00F9BEF_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* MulticastDelegate_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* RuntimeArray_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* SByteConverter_t99F8032C93CF0F34D8C8BB8AA744D39E794AA4B7_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* SingleConverter_t86A24FBD46D753B99344470E9566584F15538902_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* StringConverter_t054FA0796F4C8E951208AFA052D99BCB8E68BED7_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ToolboxItemFilterType_t55CD1A1F306F891450DFC2290FE851E94CC3B8C5_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TypeDescriptorComObject_t531EE8D60EE83A09B6539D079E837E68DC289B76_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TypeDescriptorInterface_t872F528EF86C66103396D4D796A932A0FF88C4D7_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Type_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt16Converter_t4BC0EAF1F93E418E020D9F6636F89276782C6803_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt32Converter_t13F2DD92CDD0CD6A0EFD9D0F45AF88B3893DCA65_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt64Converter_t0A91AD27C69DB74D2C09B17006EFE2F873566F6E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var;
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorEnumerator_get_Current_m010FD0E05A0FA950A30C202CF643D7B3934557D8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PropertyTabAttribute_Equals_m124B0306933902AE12C2DA00B0997CFABCAF2702_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PropertyTabAttribute_Equals_m3D0564F307FC227C7FB38F5B9D1B667F39A1E584_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PropertyTabAttribute_InitializeArrays_mD8AE560AB430117121701B018B9C36B9CDA3B531_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PropertyTabAttribute__ctor_m374749B7B7ED94FF2DC5825776307F8EB70F2D19_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PropertyTabAttribute__ctor_m61853ADFF5EC012A40B967FE861832DDAF7D1A08_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PropertyTabAttribute__ctor_mB42E8A52E002DEC87211862DAECBAB55BF62249D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PropertyTabAttribute_get_TabClassNames_m66CD61EDE2222A20EA4C8B303B0D76123D02305F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PropertyTabAttribute_get_TabClasses_m6CE9F5CB57CDD0AD0BEA1C9CBC9125D1701AC995_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ProvidePropertyAttribute_Equals_mB8923F76CF6AEA2DD5FE365E075654D2FFC7EAF2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReadOnlyAttribute_Equals_m26B602C82A7F89B540D34BCC23DBAFEF44AA8F4F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReadOnlyAttribute_IsDefaultAttribute_mFE2BD94B822BE83971CA81A4A364ED0265E7B294_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReadOnlyAttribute__cctor_m82F2AA3C79CBEBF7C845B6EF35A5774A25CB33C4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RecommendedAsConfigurableAttribute_Equals_mF18C273B93F9EAA08FAF46109E48D15D40B4AD3F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RecommendedAsConfigurableAttribute__cctor_mBCCC4D55AFDCFDDEAA62473BD41B1644165F5685_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReferenceComparer_Compare_m0B320ABB7F1A30AD4FB195849020B843764BE1D0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReferenceConverter_CanConvertFrom_m5B23C497B2BFB682E5733F35369FB714098EA731_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReferenceConverter_ConvertFrom_m9D3A8DC96E994551E61A2432EDE3978A61370650_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReferenceConverter_ConvertTo_m82E3032D3598D3E709C5475209ADFE427FD7EDFE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReferenceConverter_GetStandardValues_mF0F5434970C6CA3D182842120296A2FCC3928BE2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReferenceConverter__cctor_m6B8D4BF669E7923D139320E54DF971BF30D4825C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReferenceConverter__ctor_m2FB1721E7BE48D8857E0BF4690A1FB82C9EC1DC7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectEventDescriptor_AddEventHandler_m48D106DBB820A98053D0AB78E162E9CD9FE9FC59_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectEventDescriptor_FillEventInfoAttribute_m3E056666DC23914CEE8B585782483C0207E6FD53_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectEventDescriptor_FillMethods_m7AAD8CF57D3F38B679BB63966AD032684072E3B7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectEventDescriptor_FillSingleMethodAttribute_mC67C5577BF6FBA1FFCBADED02CC4F03F8E9AEC9B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectEventDescriptor_RemoveEventHandler_m7E857D97702405D54DF79D0BE1917F5CEDF1F650_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectEventDescriptor__ctor_m148E8EA0618ACD1C6E5C671B38BDFE3BE048FD12_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectEventDescriptor__ctor_mA2D771927AB9F0F9D9DE61868FFE7E0BBA173A8F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectEventDescriptor__ctor_mA48120EE25265C1F7739FFA078DC2462F89F24DE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectEventDescriptor_get_IsMulticast_mDCE6D94CAADAFD0BAC3414D432B3C19C8E2D1703_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_AddValueChanged_m3197A9D9D7029DF4FD0D05ACF1972107B86FC0DB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_CanResetValue_mD2A00DE68F5D8509FF25E61EF73732238D032176_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_ExtenderCanResetValue_mACFED798483AFF6BB779CF30C35D735A484B4DAB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_ExtenderGetValue_m741FE4C60D34936C3505CE5E90DB426593C7F96F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_ExtenderResetValue_mD615C4E5718D88643447EA1115D1B48460D2DA06_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_ExtenderSetValue_mC58759964687244DFA66A4330C48B8EC0BFA860E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_ExtenderShouldSerializeValue_mD2094CC76B452BFB3D7157B92FC88D1F3C016BE9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_FillAttributes_m6D3D9FF9C54562771EAFA7176184DF610B99B6EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_GetValue_mE3BE8817DAF798E0E09269B39C1650DF4B480688_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_OnINotifyPropertyChanged_mBD589BFB27A3750D64BB9404B282E699BF366739_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_OnValueChanged_mBEFE9C12D39E3C37866E423BB06CB4FB8BDF0C94_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_RemoveValueChanged_mEDF7F459C71B83D8DDF666A3BCA4120639048560_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_ResetValue_m0B916789E04B78F99B67E2B67710230B081260DF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_SetValue_m0789356EEA5ECB86774764A46A36C3BDBAFAE629_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_ShouldSerializeValue_mD8E9C0904036CD32906C82AA06AC1C0E21C901C3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor__cctor_m63AF69EC4D3FA3894DDDFC6704D71401FE8DF9F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor__ctor_m81658E6FF4EDE19BDC21661F2AD7F1D428DE2D90_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor__ctor_mB5E1EB28647D1B39D7EEC2A60C41BD3F2B5EBB4E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor__ctor_mD94CA3BC0F9D3DA32E778F0F8724BE6CAA213475_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor__ctor_mED173B591B660C3642C4F39591EF6A2CBBA13C5F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_get_AmbientValue_m2FE1E71F14949D9DA86714056C74205C3672D6D3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_get_ChangedEventValue_m53318DC3BCA673EA99F7D7B8CA6A5BA314D6D0A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_get_IPropChangedEventValue_m09F9B4CC2CF462E85042BAAD57FC69A3A84BB73A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_get_IsExtender_mFFEE1C5A723D8A0BBBAC2AFE3DA9B77D7821727A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_get_IsReadOnly_m5E22D2D628A2EE4DA486A40ED815A72C1574D641_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_get_SetMethodValue_m9C7CB91D0400A7450E620516B1A30B2FD37791A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectPropertyDescriptor_set_IPropChangedEventValue_m4A7C7B24C72BA1DB14833DC2CB2804187A89A54F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_AddEditorTable_m990D5117A898C6C261F5195516D1032F04028262_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_CreateInstance_m1A50E07E2455EA23FDE96B06EFD81DCA451025D4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_CreateInstance_m65E85722552FC495BE764F3AA5C0044C0A0CC398_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetCache_m90103F5B0B173BA5AA6F8B773FA02EE66FA58D7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetEditorTable_mA1A47B11840415F81A04510F88B5CB225085ED21_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetExtendedAttributes_m27849C4290581FFD9B350AD671E5DE9764531E46_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetExtendedEvents_m646C13AACBDD5DB676F15F78597C6B3685905A45_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetExtendedProperties_mFFA65F71DEFE3C3EBEBF8EE010EA69F524AE3D1A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetExtenderProviders_mF9938FD27716A116007EF4F9E60B2E4E318D62F6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetExtenders_m37F9CE244018FF66E847402A2E3F3A0F805D4843_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetFullComponentName_mF8D268EC8D8E8587153C420BBA6F167DD2889471_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetPopulatedTypes_mC33B39A2E560A2A7137D85F6A93ECE1F5B269D3B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetPropertyOwner_m1F756D26F3F69E8C5574225867C90D3793E0FCE2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_GetTypeFromName_mAAEB4488DDC97DDC4780EC28C8CF4BD27BB9E9EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_ReflectGetAttributes_m378C9A3D2CB09CE7EBA76BCF431A99F6C2EF67DD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_ReflectGetAttributes_mA3DA28648085382DC968178CE6B9D5288DE17739_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_ReflectGetEvents_m450768FFE6CB456734C6C9C01FAF08EB80BC67D0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_ReflectGetExtendedProperties_m8DF1B37E62CB64A4249355F85F421C57BA1A16F1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_ReflectGetProperties_m0F7F5B7591FEC0B4F26419E559C20E3134F522B6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_SearchIntrinsicTable_mD70A9E795A2A1411479E8BB0ACE34604726C9D82_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider__cctor_mB9C7F73E1722134C687B3BB8E0F484EF2F30FEA5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_get_ExtenderProviderKey_m5436EF198F3970CCBCDE4559257D03471691D3EE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectTypeDescriptionProvider_get_IntrinsicTypeConverters_m9CC87D07619955CD00731AD91FC7F8323C18AF4F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectedTypeData_GetAttributes_m663A1FD9948A46D290B3D9E033F291B1E535452E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectedTypeData_GetComponentName_m688C3E2D5D955FF24A051F1E21FC6ABB1BCDE17A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectedTypeData_GetConverter_mD37346D7D19C72DC50CBB82BF4F4F9DF5218D0B6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectedTypeData_GetDefaultEvent_m31A6B84818BEBF7977111E35658D6CFB319F4737_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectedTypeData_GetDefaultProperty_m6A5070505225614BD439CE0195A5725EFE7BB612_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectedTypeData_GetEditorAttribute_m0E1FCE2A7D4A6FF4E6B129F6D938A31DCC475E7A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectedTypeData_GetEditor_m64641DA7947F872252041D99AD2D4FFB346DF531_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectedTypeData_GetEvents_m1AA3F18FBA9137AD6D28C5FEA2B525641BAFB7D6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectedTypeData_GetProperties_mEDCD21FF9DB7D27C3EF7ACC291E12B348AEC7CF5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReflectedTypeData_GetTypeFromName_m9E59CF61CA7CAC4E47B9736F36891FCB2E325D27_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RefreshEventArgs__ctor_mE6F6B0E8B783784BF676F37DCB9C196E5064928D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RefreshEventArgs__ctor_mEC162508026E43A0B4E193163E6ED7D6B682D342_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RefreshPropertiesAttribute_Equals_mD4A517842BBDF8790433BB98C874C7CA6F6229B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RefreshPropertiesAttribute_IsDefaultAttribute_mB541CF71C997B4F977BC4E3FDFD590852D6A21DF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RefreshPropertiesAttribute__cctor_mEE041F46103289862182B245DE9BFC8FF634D5DE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RunInstallerAttribute_Equals_m0711E9CBFD9720377364CC0E0CB932A20AF9A894_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RunInstallerAttribute_IsDefaultAttribute_mA14418E89F9E93128E5C4C0D70D80A238362563A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RunInstallerAttribute__cctor_m470CB7AD2244C5652D63B03A7A8939EE1326AAD6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SByteConverter_FromString_m0AE243DE3D62BE5B4D6B5902412E59B6F2B4C6B4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SByteConverter_FromString_m7B5EE08AE984C1211B9647C245A9DB220C867467_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SByteConverter_FromString_mE18AD8A52E1E48B186DE67EAE676B20B29C69DD3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SByteConverter_ToString_m7DFD79BF472530D27DE2EFA08023C39AEF3EE048_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SByteConverter_get_TargetType_m034BBA889EAAC775483117120F159E328D1260D6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SettingsBindableAttribute_Equals_m9E8FB04B837842F0EBC1AF051523DBB710DEB085_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SettingsBindableAttribute__cctor_m0778E972EB351189AF9CF1D74B712DD257AD885F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SimplePropertyDescriptor_CanResetValue_mEA3525ACF505860EF1338996CA9CAA87E868D15D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SimplePropertyDescriptor_ResetValue_m9A0C21FDF9032EA0EF180204FD616B2BB6ECA962_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SimplePropertyDescriptor__ctor_m2EAEF866952555B868108C646EA224EA4C87DE06_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SimplePropertyDescriptor_get_IsReadOnly_mD5DD3E9534AFE907A9D3A6E1E00ECF6B35FE2F3D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SingleConverter_FromString_mAB67D8A4BDEAC852EA4060FCE6F69C40F48E13DB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SingleConverter_FromString_mAE00A2E4F24907D0666B2C4B62833289E96FDE8C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SingleConverter_FromString_mCE7472435CF8E8DF01D4B286AFFF545393E10E28_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SingleConverter_ToString_m5002E1C3937CECC3094583349B9EF72474524583_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SingleConverter_get_TargetType_mEE841A77D0642D07A7978A8A871FD73DD57EB7DF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandardValuesCollection_CopyTo_mA319F11A11360C258FCEEF3C9EFA53D504BD7C3E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandardValuesCollection__ctor_m75578979BC0D77C0D622E4C9D7C1CB1E047615C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandardValuesCollection_get_Item_m9A5475A893EB6F19F22BB4939BBF3FFF117A6AAA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringConverter_CanConvertFrom_m50224B731176E5B25E43B35F74C0D1EA0859EC81_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringConverter_ConvertFrom_mC11C90F2FD2BD033AEA354185DC892D951FA5005_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringConverter__ctor_m2718AC00691AF4A3AF8A8D64896BE3B5D58658B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SyntaxCheck_CheckMachineName_mBBC300169F51CB046FC35BFE6CDAF1DA99411230_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SyntaxCheck_CheckPath_mFDE06CE99C5F733E3B5E323EEDA2F9A24CE2131B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SyntaxCheck_CheckRootedPath_mA9A8C25EE9D9CFC1C76B72317A0A8B2896A95906_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TimeSpanConverter_CanConvertFrom_m693C336C7A5435912FC4AC569E1EAD30BEB32FFF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TimeSpanConverter_CanConvertTo_m5AC96B662FA4EACCEADAC81931591E0B14711276_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TimeSpanConverter_ConvertFrom_m4244DF51D5A1AC286C35FCE04D82F5A9A2F33894_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TimeSpanConverter_ConvertTo_m6A1E0C832909670E26B892813AD9E14F08EE316E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TimeSpanConverter__ctor_m28E7294174F979EF86FEF9511474B0AB9431217B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ToolboxItemAttribute_Equals_m1F1515BB04A2AD1ADA8A820D5481F7306F91EAE2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ToolboxItemAttribute_IsDefaultAttribute_mCE3A7AE67179AF466C911394DBD256E673E5023C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ToolboxItemAttribute__cctor_m71C70EF1FE141D0904DC1ADE3A8209D808196C4D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ToolboxItemAttribute__ctor_m928FB88168D50A283E63170782864167D9BA1A1A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ToolboxItemAttribute__ctor_mE30C2B3914C44361BACB775B4F4464F46536CE9D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ToolboxItemAttribute_get_ToolboxItemTypeName_m37914F48C67146F8C93D27EDA5CB8895DAF5AB31_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ToolboxItemAttribute_get_ToolboxItemType_m8F418ADC24E7FBB4311BA4799A974EE383B5CC86_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ToolboxItemFilterAttribute_Equals_mA96AF3C6A2B62FE03A324C6481DDD8ACCECA562B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ToolboxItemFilterAttribute_Match_m8096BD0D4F44181B001657AFCD7C517DFA1F2539_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ToolboxItemFilterAttribute_ToString_m570A8F659CDAD3B7A847400E31D1D1A5B004C5E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ToolboxItemFilterAttribute__ctor_mFAC0E4977E406F58310744D0159E3F94EB43BA71_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverterAttribute_Equals_mDA74DFC28CC7ABC315407EDD1AAC14531C5F6AC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverterAttribute__cctor_mB1A775F56A5933A17CF349BD466B0CCE66B1078A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverterAttribute__ctor_m61FDD082554FD8ECBF61BFFF62345F0A15D98391_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverterAttribute__ctor_mD0795A29B6FD59978CAAC6DAF3AC7EC564C519A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_CanConvertFrom_m8E1F9E41B7DEE6A032EAC70130ADC6356C3F227D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_CanConvertTo_m1CD3397D9E5717DE72A13B28C0A75D997A9F337D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_ConvertFromInvariantString_m8CA941FF49C01AB09F89531ACB3FDF4F97C041E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_ConvertFromInvariantString_m9293C7DF0805F4C7EA4510B71724BDAC3BE80AB2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_ConvertFromString_m24C4F0F94A2F6758E32DC307B232B29E2F05049A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_ConvertFrom_m3E71724F5033CD589B5D01DDD14E357582BD2476_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_ConvertToInvariantString_m382F27F2262271AB0775D6FA6F413D24BEA28808_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_ConvertToInvariantString_m761850CEC1FEE3C82ABE5F794DE84FFE29C852A2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_ConvertToString_m2601B49A8D7AB780DBA7F2DD08A3790DF7987FB4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_ConvertToString_m2CBE8E127541982F2FB74F81D59AA62D097FD623_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_ConvertToString_m5F4325990F5C0E979B0C18408D276534CC2B5101_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_GetConvertFromException_m10012C012ED008F8AC9DF76BBAD93E19DDA6EAC3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_GetConvertToException_mD906D7D39A16CC8ACFC0179208CE2627B73D5C32_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_GetProperties_m5C07AE2E3658FB12366BFAA4A6DA26C9AA26F631_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_IsValid_m7F461605B50FF4BAED21EB5B59C65459CF5DC8F4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeConverter_get_UseCompatibleTypeConversion_m4E8A4FB4000523FF099E5B064BF58BA44664E8CF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptionProviderAttribute__ctor_m10489BA811D0D61760F9C90B2D72542A08A3F90A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptionProviderAttribute__ctor_mFF54F364489EC3FCDA8D2980796604488C0D3121_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptionProvider_CreateInstance_m5BE90DBA6F931D0EC8A7DA9162EDC27B8F141B97_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptionProvider_GetExtendedTypeDescriptor_mA6C0C2BCF78F4018FA4C2278CBFD07E2E77E3347_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptionProvider_GetExtenderProviders_mF8C68F2BA1E5CDDFAD9618C257F2D743FD10FF39_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptionProvider_GetFullComponentName_mEB358F23FD79D7EE2016CA06ECDC47D6036AEF43_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptionProvider_GetReflectionType_mB8AF537325510600B0C5A2B9940C970FA9DF23E4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptionProvider_GetRuntimeType_m981840CB2ED5D8AA352E4AE15691C5B883AD0099_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptionProvider_GetTypeDescriptor_m04847083CB9DB8E7BF69CFCD06283A8D817293A0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptionProvider_GetTypeDescriptor_mE0B51D84608BE9DAB9597220D009C8F03ED7EE39_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptionProvider_IsSupportedType_m1E8F92E78E758F5D520EA5562878A1B54303E61F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_AddAttributes_mB0746794E9E442A99B5F8EEDB072D9DB2EE1F85B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_AddAttributes_mD1811913AC4018397C137D19A21CC41591D7C227_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_AddEditorTable_mD8428DBDFF99E14DE047D67DED8C32EE7B652350_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_AddProviderTransparent_m0D344B2FDDCC7DFA802B757229B8915BFD5491CC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_AddProviderTransparent_m9F8960CB1DFA72AC6314EB663EFE25E5B469CF72_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_AddProvider_mD81A072B4AB0D7801F9297879CB43071C8740C9A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_AddProvider_mEB5B4337E9B7531C2335CE716429A9881ECD92C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_CheckDefaultProvider_m992A2ED0D5F3621C00369DF8CF35D6AFB17D3ADC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_CreateAssociation_mD52776F0B75C62C60CB8C089475727A0D7BF5B17_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_CreateDesigner_m4243B05F425A7ACA49F80C7878155CAE35236EF9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_CreateEvent_m8C78D1FEAA1F3D886DEF6FE25C2F19E4EA160612_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_CreateEvent_mDEC73A18F3C1F0F523E6B65E5CD22F555E1BE613_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_CreateInstance_m9615D98B08C826DF6B261B054FCB88C56E96CDC2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_CreateProperty_m80C1C5E1ED1D7EAF1AA5A1A156406CB807E462C6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_CreateProperty_m9BE66DBCA07296098C3DA980BEB20985BFDEFF2E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_FilterMembers_m6DE8E2489628CB06AFAE539F0202E73AEB645AA9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetAssociation_m45465AA1409C932535F021345F71CFF99CBC4D98_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetAttributes_m0325F763D0AA6354E3F7859E15FF7BE3A8D5F3D3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetAttributes_mA96E001729AC6C2EF5ED8E0E5573BABF67501C44_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetCache_mC7540D2FBAB562E689ED1BC2399D3F3C31D97145_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetClassName_m539DE8A8C913A996F10E44F0AD222E33B88FF4D4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetClassName_m8136D73D8DCF9FCD7E82565CE8CEA957F18DE9E4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetClassName_mACBEC8CAA950839E997F497253ED5940863A7B09_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetComponentName_m459C41F0CF27D483E7285912BA6936553D90688B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetComponentName_mA9AC0DEB74A03166BEB397C9B8E44B8D3AFA175B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetConverter_m30E075F6ED53FD85B7C1F7F44E58BA20645A68BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetConverter_m75EE0FF29752ACFC062B86D27CCBE99DB48FD5E8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetConverter_mAC1F889B22B0561918C9FE3CE2AFC3B983E6AABC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetDefaultEvent_m270F00968BD241719B4510CE74AFD8CE6B1CC5A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetDefaultEvent_m4BD6A2A34BA730F46533F1862A9F03D82255D6BC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetDefaultEvent_mF65AF0663D6DBBB76E3A8718561A29B9A63C2045_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetDefaultProperty_m0ABAF110FC9CA1F6265C19D5A7ADB524B883D9B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetDefaultProperty_m2C964DA038C7C1D114862E1C5FE2507E26F38DF6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetDefaultProperty_m92DAAC0601FC527EE5B2399EF1AC88ACB9A488DD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetEditor_m5205BD6EA7BC05FA4DD716AE0E15A5B2A4BC8234_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetEditor_m66F3C5F1EF83D37BD530FDBC91EACCDD6E339611_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetEditor_mC998B8DCA2771C639A6F3E4A1AEB9C716455F9C5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetEvents_m31040103B07E1239FBBF0A69D5067016BE8D52E3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetEvents_m5BCF7AC534063AAAAB0BEB78AAA98AFA98A3406E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetEvents_mA157A3DD309A7F9B964A9C1CD8942ED3B395439D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetEvents_mA76921E0FEA0CFBA15CF0864A20664F2CC3DC4E4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetEvents_mEB93FB58F539D9302E2ACAA823DABB199DFB9944_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetEvents_mFCF0F9D2DF4E79782E05309867A0537AFC2B5B08_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetExtenderCollisionSuffix_m686BE0F744E8E5511310EA611B39FF891AEDC784_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetFullComponentName_m138486221163708B96C25C805A85F8414598F74E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetNodeForBaseType_mD4DC672E329294D1CC62ED255A60FEB216151414_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetPropertiesImpl_m0F204546AFC2CCED7979E08E0FF134D7084DC248_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetProperties_m0398CE2B5F7971982337E934990B8A2128675024_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetProperties_m05CFF294019C93C8ADC7433BB7D5D87F19DDE7FC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetProperties_m9A75CAB323930B35DC4ED5EC53BFCB2C85BD7170_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetProperties_mADA58F0BAD4560D62BF7ADB7186B990D11780B0C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetProperties_mB120D4E97EBF1F7E8C585380F0B6EF8E5EC843EE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetProperties_mD2A9DF20F4E4373E7144791303ECB062973647FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetProviderRecursive_mFA9FD212A625262784E9B1B05D3B82564B393877_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetProvider_m3265CFAFF759A9DC540031E2401F96CD00BE9BF7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetProvider_mCD95C62422DB0D4811ACE64E72D3C4C5B25BDD90_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetReflectionType_m92BF9F8F63D9F2A14BD3E40941A7FD4B3662043E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_GetReflectionType_mB28D64FBA294D618334381A77DAE790811611C3D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_NodeFor_m47CC24E4CFA599136DD05F6DD9A72A4B309D0D90_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_NodeFor_m5CD091DA5BF7D035FA36E6E397A96B2A9610E9D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_NodeFor_m767FF87E78839CA052D9BA45FC6E18BD28F8E2E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_NodeFor_m90ADBC22F629303B34247E6000724298EDDF3E61_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_NodeRemove_mA49498A2B87FC037CE2A9C6D26CDF6043FEFC122_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_PipelineAttributeFilter_mDFD0C9F6114800954B3A9275EB4109520570307D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_PipelineInitialize_mE238329E4034835777FC35289A14EA9A1397CF66_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_PipelineMerge_m12CD63D0457BCA451AF9635E4E754A1E27122E65_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_RaiseRefresh_m59D4457847547E4C32159C2F24E1DDDA1D34F60C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_RaiseRefresh_m75708E2026685B087D03E5383F08E65F1608332C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_Refresh_m3EE0C2B17D9683C6C719C590D0D9744D16F58027_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_Refresh_m7FAA7FE3754BE2B7DAA44DEC226F1451FEFB3143_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_Refresh_m9229980150993B812922316474D9806CB2B23B66_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_Refresh_mEC7669AD5516911D4C54E02A9F073CF89E59DC6E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_Refresh_mF1572C257E75B5BBBA5468FE0FB982ACB33F8E90_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_RemoveAssociation_m1C3673E59BB67895F9462F6BD390BFFEA7CFEA63_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_RemoveAssociations_mC32F5B12534541E6C2426ECCD01E3686DC5584FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_RemoveProviderTransparent_m01E159D92DF8529B013003E7490F438A20F9150D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_RemoveProviderTransparent_m26D6ACC950A85E69D6EB21C0F1DBE28789E3E043_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_RemoveProvider_m64D37F2DD488312D85314715D4F41DDCFF14D588_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_RemoveProvider_m6AC5F6B0977537915ED5D177715CF02DA4E6F3C6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_SortDescriptorArray_mF1BF8FDE18108198B6E5CF6B31909A7F544F649C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor__cctor_m93DDEDF2D6E089FEFA7A29B425C854E1E04E6145_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_add_Refreshed_m25494811B3F0C094735A304248AE786509F7399E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_get_ComNativeDescriptorHandler_m19CE21FBFA3BF90423D1CC80B4D3967BB43F8B2D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_get_ComObjectType_mD9A4F9CDA5863A62DEE85F88DECB3FF37CE42A4F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_get_InterfaceType_m0DB3316CB939FE67643C044BAF39EB4F69D758E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_get_MetadataVersion_m70C215D1B15DCBD67B58127EB0E6D7E6F5D020DC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_remove_Refreshed_m6EABBF22B7AB310BDCC581F101C2724832A00BE9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_set_ComNativeDescriptorHandler_m10F89A3F895163274E0E54458D8BBE1FA418BE63_MetadataUsageId;
struct Assembly_t_marshaled_com;
struct Assembly_t_marshaled_pinvoke;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17;
struct AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448;
struct EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4;
struct IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031;
struct PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F;
struct PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260;
struct ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24;
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C;
struct MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6;
struct ModuleU5BU5D_t5A96D0D19A757DE3D576E4EB81BE0FD6326DBB6E;
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694;
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA;
struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E;
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
// System.Collections.ArrayList
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 : public RuntimeObject
{
public:
// System.Object[] System.Collections.ArrayList::_items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_0;
// System.Int32 System.Collections.ArrayList::_size
int32_t ____size_1;
// System.Int32 System.Collections.ArrayList::_version
int32_t ____version_2;
// System.Object System.Collections.ArrayList::_syncRoot
RuntimeObject * ____syncRoot_3;
public:
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____items_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_0() const { return ____items_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_0() { return &____items_0; }
inline void set__items_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
};
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields
{
public:
// System.Object[] System.Collections.ArrayList::emptyArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___emptyArray_4;
public:
inline static int32_t get_offset_of_emptyArray_4() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields, ___emptyArray_4)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_emptyArray_4() const { return ___emptyArray_4; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_emptyArray_4() { return &___emptyArray_4; }
inline void set_emptyArray_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___emptyArray_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___emptyArray_4), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.String,System.ComponentModel.EventDescriptor>
struct ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E, ___dictionary_0)); }
inline Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.String,System.ComponentModel.PropertyDescriptor>
struct ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C, ___dictionary_0)); }
inline Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.EventDescriptor>
struct Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t638C976D49A211F6F476614A253B4EE4F453CCA9* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tB35289347DFD10B6097E793310BCEBFA319BB178 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298, ___entries_1)); }
inline EntryU5BU5D_t638C976D49A211F6F476614A253B4EE4F453CCA9* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t638C976D49A211F6F476614A253B4EE4F453CCA9** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t638C976D49A211F6F476614A253B4EE4F453CCA9* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298, ___keys_7)); }
inline KeyCollection_tB35289347DFD10B6097E793310BCEBFA319BB178 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tB35289347DFD10B6097E793310BCEBFA319BB178 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tB35289347DFD10B6097E793310BCEBFA319BB178 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298, ___values_8)); }
inline ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E * get_values_8() const { return ___values_8; }
inline ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.PropertyDescriptor>
struct Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_tD80F8A706A062DE842D7696906B1367AA5A51D36* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tFEE8D76F4F2F2B6974A4F7C4DE33015B9CF6BEE6 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0, ___entries_1)); }
inline EntryU5BU5D_tD80F8A706A062DE842D7696906B1367AA5A51D36* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tD80F8A706A062DE842D7696906B1367AA5A51D36** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tD80F8A706A062DE842D7696906B1367AA5A51D36* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0, ___keys_7)); }
inline KeyCollection_tFEE8D76F4F2F2B6974A4F7C4DE33015B9CF6BEE6 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tFEE8D76F4F2F2B6974A4F7C4DE33015B9CF6BEE6 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tFEE8D76F4F2F2B6974A4F7C4DE33015B9CF6BEE6 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0, ___values_8)); }
inline ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C * get_values_8() const { return ___values_8; }
inline ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.ReadOnlyCollectionBase
struct ReadOnlyCollectionBase_tFD695167917CE6DF4FA18A906FA530880B9B8772 : public RuntimeObject
{
public:
// System.Collections.ArrayList System.Collections.ReadOnlyCollectionBase::list
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___list_0;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollectionBase_tFD695167917CE6DF4FA18A906FA530880B9B8772, ___list_0)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_list_0() const { return ___list_0; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
};
// System.Collections.Specialized.OrderedDictionary
struct OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D : public RuntimeObject
{
public:
// System.Collections.ArrayList System.Collections.Specialized.OrderedDictionary::_objectsArray
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ____objectsArray_0;
// System.Collections.Hashtable System.Collections.Specialized.OrderedDictionary::_objectsTable
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____objectsTable_1;
// System.Int32 System.Collections.Specialized.OrderedDictionary::_initialCapacity
int32_t ____initialCapacity_2;
// System.Collections.IEqualityComparer System.Collections.Specialized.OrderedDictionary::_comparer
RuntimeObject* ____comparer_3;
// System.Boolean System.Collections.Specialized.OrderedDictionary::_readOnly
bool ____readOnly_4;
// System.Object System.Collections.Specialized.OrderedDictionary::_syncRoot
RuntimeObject * ____syncRoot_5;
// System.Runtime.Serialization.SerializationInfo System.Collections.Specialized.OrderedDictionary::_siInfo
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ____siInfo_6;
public:
inline static int32_t get_offset_of__objectsArray_0() { return static_cast<int32_t>(offsetof(OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D, ____objectsArray_0)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get__objectsArray_0() const { return ____objectsArray_0; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of__objectsArray_0() { return &____objectsArray_0; }
inline void set__objectsArray_0(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
____objectsArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objectsArray_0), (void*)value);
}
inline static int32_t get_offset_of__objectsTable_1() { return static_cast<int32_t>(offsetof(OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D, ____objectsTable_1)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__objectsTable_1() const { return ____objectsTable_1; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__objectsTable_1() { return &____objectsTable_1; }
inline void set__objectsTable_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____objectsTable_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objectsTable_1), (void*)value);
}
inline static int32_t get_offset_of__initialCapacity_2() { return static_cast<int32_t>(offsetof(OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D, ____initialCapacity_2)); }
inline int32_t get__initialCapacity_2() const { return ____initialCapacity_2; }
inline int32_t* get_address_of__initialCapacity_2() { return &____initialCapacity_2; }
inline void set__initialCapacity_2(int32_t value)
{
____initialCapacity_2 = value;
}
inline static int32_t get_offset_of__comparer_3() { return static_cast<int32_t>(offsetof(OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D, ____comparer_3)); }
inline RuntimeObject* get__comparer_3() const { return ____comparer_3; }
inline RuntimeObject** get_address_of__comparer_3() { return &____comparer_3; }
inline void set__comparer_3(RuntimeObject* value)
{
____comparer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comparer_3), (void*)value);
}
inline static int32_t get_offset_of__readOnly_4() { return static_cast<int32_t>(offsetof(OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D, ____readOnly_4)); }
inline bool get__readOnly_4() const { return ____readOnly_4; }
inline bool* get_address_of__readOnly_4() { return &____readOnly_4; }
inline void set__readOnly_4(bool value)
{
____readOnly_4 = value;
}
inline static int32_t get_offset_of__syncRoot_5() { return static_cast<int32_t>(offsetof(OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D, ____syncRoot_5)); }
inline RuntimeObject * get__syncRoot_5() const { return ____syncRoot_5; }
inline RuntimeObject ** get_address_of__syncRoot_5() { return &____syncRoot_5; }
inline void set__syncRoot_5(RuntimeObject * value)
{
____syncRoot_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_5), (void*)value);
}
inline static int32_t get_offset_of__siInfo_6() { return static_cast<int32_t>(offsetof(OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D, ____siInfo_6)); }
inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * get__siInfo_6() const { return ____siInfo_6; }
inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 ** get_address_of__siInfo_6() { return &____siInfo_6; }
inline void set__siInfo_6(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * value)
{
____siInfo_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____siInfo_6), (void*)value);
}
};
// System.ComponentModel.AttributeCollection
struct AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE : public RuntimeObject
{
public:
// System.Attribute[] System.ComponentModel.AttributeCollection::_attributes
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ____attributes_2;
// System.ComponentModel.AttributeCollection_AttributeEntry[] System.ComponentModel.AttributeCollection::_foundAttributeTypes
AttributeEntryU5BU5D_t82EF07E3984B106E346A6B35336772424C0FCB5A* ____foundAttributeTypes_5;
// System.Int32 System.ComponentModel.AttributeCollection::_index
int32_t ____index_6;
public:
inline static int32_t get_offset_of__attributes_2() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE, ____attributes_2)); }
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* get__attributes_2() const { return ____attributes_2; }
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17** get_address_of__attributes_2() { return &____attributes_2; }
inline void set__attributes_2(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* value)
{
____attributes_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____attributes_2), (void*)value);
}
inline static int32_t get_offset_of__foundAttributeTypes_5() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE, ____foundAttributeTypes_5)); }
inline AttributeEntryU5BU5D_t82EF07E3984B106E346A6B35336772424C0FCB5A* get__foundAttributeTypes_5() const { return ____foundAttributeTypes_5; }
inline AttributeEntryU5BU5D_t82EF07E3984B106E346A6B35336772424C0FCB5A** get_address_of__foundAttributeTypes_5() { return &____foundAttributeTypes_5; }
inline void set__foundAttributeTypes_5(AttributeEntryU5BU5D_t82EF07E3984B106E346A6B35336772424C0FCB5A* value)
{
____foundAttributeTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____foundAttributeTypes_5), (void*)value);
}
inline static int32_t get_offset_of__index_6() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE, ____index_6)); }
inline int32_t get__index_6() const { return ____index_6; }
inline int32_t* get_address_of__index_6() { return &____index_6; }
inline void set__index_6(int32_t value)
{
____index_6 = value;
}
};
struct AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_StaticFields
{
public:
// System.ComponentModel.AttributeCollection System.ComponentModel.AttributeCollection::Empty
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___Empty_0;
// System.Collections.Hashtable System.ComponentModel.AttributeCollection::_defaultAttributes
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____defaultAttributes_1;
// System.Object System.ComponentModel.AttributeCollection::internalSyncObject
RuntimeObject * ___internalSyncObject_3;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_StaticFields, ___Empty_0)); }
inline AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * get_Empty_0() const { return ___Empty_0; }
inline AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE ** get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value);
}
inline static int32_t get_offset_of__defaultAttributes_1() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_StaticFields, ____defaultAttributes_1)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__defaultAttributes_1() const { return ____defaultAttributes_1; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__defaultAttributes_1() { return &____defaultAttributes_1; }
inline void set__defaultAttributes_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____defaultAttributes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____defaultAttributes_1), (void*)value);
}
inline static int32_t get_offset_of_internalSyncObject_3() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_StaticFields, ___internalSyncObject_3)); }
inline RuntimeObject * get_internalSyncObject_3() const { return ___internalSyncObject_3; }
inline RuntimeObject ** get_address_of_internalSyncObject_3() { return &___internalSyncObject_3; }
inline void set_internalSyncObject_3(RuntimeObject * value)
{
___internalSyncObject_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___internalSyncObject_3), (void*)value);
}
};
// System.ComponentModel.CustomTypeDescriptor
struct CustomTypeDescriptor_tF8665CD45DFFA622F7EB328A2F77067DD2147689 : public RuntimeObject
{
public:
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.CustomTypeDescriptor::_parent
RuntimeObject* ____parent_0;
public:
inline static int32_t get_offset_of__parent_0() { return static_cast<int32_t>(offsetof(CustomTypeDescriptor_tF8665CD45DFFA622F7EB328A2F77067DD2147689, ____parent_0)); }
inline RuntimeObject* get__parent_0() const { return ____parent_0; }
inline RuntimeObject** get_address_of__parent_0() { return &____parent_0; }
inline void set__parent_0(RuntimeObject* value)
{
____parent_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parent_0), (void*)value);
}
};
// System.ComponentModel.Design.Serialization.InstanceDescriptor
struct InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 : public RuntimeObject
{
public:
// System.Reflection.MemberInfo System.ComponentModel.Design.Serialization.InstanceDescriptor::member
MemberInfo_t * ___member_0;
// System.Collections.ICollection System.ComponentModel.Design.Serialization.InstanceDescriptor::arguments
RuntimeObject* ___arguments_1;
// System.Boolean System.ComponentModel.Design.Serialization.InstanceDescriptor::isComplete
bool ___isComplete_2;
public:
inline static int32_t get_offset_of_member_0() { return static_cast<int32_t>(offsetof(InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6, ___member_0)); }
inline MemberInfo_t * get_member_0() const { return ___member_0; }
inline MemberInfo_t ** get_address_of_member_0() { return &___member_0; }
inline void set_member_0(MemberInfo_t * value)
{
___member_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___member_0), (void*)value);
}
inline static int32_t get_offset_of_arguments_1() { return static_cast<int32_t>(offsetof(InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6, ___arguments_1)); }
inline RuntimeObject* get_arguments_1() const { return ___arguments_1; }
inline RuntimeObject** get_address_of_arguments_1() { return &___arguments_1; }
inline void set_arguments_1(RuntimeObject* value)
{
___arguments_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arguments_1), (void*)value);
}
inline static int32_t get_offset_of_isComplete_2() { return static_cast<int32_t>(offsetof(InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6, ___isComplete_2)); }
inline bool get_isComplete_2() const { return ___isComplete_2; }
inline bool* get_address_of_isComplete_2() { return &___isComplete_2; }
inline void set_isComplete_2(bool value)
{
___isComplete_2 = value;
}
};
// System.ComponentModel.EventDescriptorCollection
struct EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 : public RuntimeObject
{
public:
// System.ComponentModel.EventDescriptor[] System.ComponentModel.EventDescriptorCollection::events
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ___events_0;
// System.String[] System.ComponentModel.EventDescriptorCollection::namedSort
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___namedSort_1;
// System.Collections.IComparer System.ComponentModel.EventDescriptorCollection::comparer
RuntimeObject* ___comparer_2;
// System.Boolean System.ComponentModel.EventDescriptorCollection::eventsOwned
bool ___eventsOwned_3;
// System.Boolean System.ComponentModel.EventDescriptorCollection::needSort
bool ___needSort_4;
// System.Int32 System.ComponentModel.EventDescriptorCollection::eventCount
int32_t ___eventCount_5;
// System.Boolean System.ComponentModel.EventDescriptorCollection::readOnly
bool ___readOnly_6;
public:
inline static int32_t get_offset_of_events_0() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___events_0)); }
inline EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* get_events_0() const { return ___events_0; }
inline EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4** get_address_of_events_0() { return &___events_0; }
inline void set_events_0(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* value)
{
___events_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___events_0), (void*)value);
}
inline static int32_t get_offset_of_namedSort_1() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___namedSort_1)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_namedSort_1() const { return ___namedSort_1; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_namedSort_1() { return &___namedSort_1; }
inline void set_namedSort_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___namedSort_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namedSort_1), (void*)value);
}
inline static int32_t get_offset_of_comparer_2() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___comparer_2)); }
inline RuntimeObject* get_comparer_2() const { return ___comparer_2; }
inline RuntimeObject** get_address_of_comparer_2() { return &___comparer_2; }
inline void set_comparer_2(RuntimeObject* value)
{
___comparer_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_2), (void*)value);
}
inline static int32_t get_offset_of_eventsOwned_3() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___eventsOwned_3)); }
inline bool get_eventsOwned_3() const { return ___eventsOwned_3; }
inline bool* get_address_of_eventsOwned_3() { return &___eventsOwned_3; }
inline void set_eventsOwned_3(bool value)
{
___eventsOwned_3 = value;
}
inline static int32_t get_offset_of_needSort_4() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___needSort_4)); }
inline bool get_needSort_4() const { return ___needSort_4; }
inline bool* get_address_of_needSort_4() { return &___needSort_4; }
inline void set_needSort_4(bool value)
{
___needSort_4 = value;
}
inline static int32_t get_offset_of_eventCount_5() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___eventCount_5)); }
inline int32_t get_eventCount_5() const { return ___eventCount_5; }
inline int32_t* get_address_of_eventCount_5() { return &___eventCount_5; }
inline void set_eventCount_5(int32_t value)
{
___eventCount_5 = value;
}
inline static int32_t get_offset_of_readOnly_6() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___readOnly_6)); }
inline bool get_readOnly_6() const { return ___readOnly_6; }
inline bool* get_address_of_readOnly_6() { return &___readOnly_6; }
inline void set_readOnly_6(bool value)
{
___readOnly_6 = value;
}
};
struct EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_StaticFields
{
public:
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.EventDescriptorCollection::Empty
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * ___Empty_7;
public:
inline static int32_t get_offset_of_Empty_7() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_StaticFields, ___Empty_7)); }
inline EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * get_Empty_7() const { return ___Empty_7; }
inline EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 ** get_address_of_Empty_7() { return &___Empty_7; }
inline void set_Empty_7(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * value)
{
___Empty_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_7), (void*)value);
}
};
// System.ComponentModel.MemberDescriptor
struct MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 : public RuntimeObject
{
public:
// System.String System.ComponentModel.MemberDescriptor::name
String_t* ___name_0;
// System.String System.ComponentModel.MemberDescriptor::displayName
String_t* ___displayName_1;
// System.Int32 System.ComponentModel.MemberDescriptor::nameHash
int32_t ___nameHash_2;
// System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::attributeCollection
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___attributeCollection_3;
// System.Attribute[] System.ComponentModel.MemberDescriptor::attributes
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes_4;
// System.Attribute[] System.ComponentModel.MemberDescriptor::originalAttributes
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___originalAttributes_5;
// System.Boolean System.ComponentModel.MemberDescriptor::attributesFiltered
bool ___attributesFiltered_6;
// System.Boolean System.ComponentModel.MemberDescriptor::attributesFilled
bool ___attributesFilled_7;
// System.Int32 System.ComponentModel.MemberDescriptor::metadataVersion
int32_t ___metadataVersion_8;
// System.String System.ComponentModel.MemberDescriptor::category
String_t* ___category_9;
// System.String System.ComponentModel.MemberDescriptor::description
String_t* ___description_10;
// System.Object System.ComponentModel.MemberDescriptor::lockCookie
RuntimeObject * ___lockCookie_11;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
}
inline static int32_t get_offset_of_displayName_1() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___displayName_1)); }
inline String_t* get_displayName_1() const { return ___displayName_1; }
inline String_t** get_address_of_displayName_1() { return &___displayName_1; }
inline void set_displayName_1(String_t* value)
{
___displayName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___displayName_1), (void*)value);
}
inline static int32_t get_offset_of_nameHash_2() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___nameHash_2)); }
inline int32_t get_nameHash_2() const { return ___nameHash_2; }
inline int32_t* get_address_of_nameHash_2() { return &___nameHash_2; }
inline void set_nameHash_2(int32_t value)
{
___nameHash_2 = value;
}
inline static int32_t get_offset_of_attributeCollection_3() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___attributeCollection_3)); }
inline AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * get_attributeCollection_3() const { return ___attributeCollection_3; }
inline AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE ** get_address_of_attributeCollection_3() { return &___attributeCollection_3; }
inline void set_attributeCollection_3(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * value)
{
___attributeCollection_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___attributeCollection_3), (void*)value);
}
inline static int32_t get_offset_of_attributes_4() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___attributes_4)); }
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* get_attributes_4() const { return ___attributes_4; }
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17** get_address_of_attributes_4() { return &___attributes_4; }
inline void set_attributes_4(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* value)
{
___attributes_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___attributes_4), (void*)value);
}
inline static int32_t get_offset_of_originalAttributes_5() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___originalAttributes_5)); }
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* get_originalAttributes_5() const { return ___originalAttributes_5; }
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17** get_address_of_originalAttributes_5() { return &___originalAttributes_5; }
inline void set_originalAttributes_5(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* value)
{
___originalAttributes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___originalAttributes_5), (void*)value);
}
inline static int32_t get_offset_of_attributesFiltered_6() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___attributesFiltered_6)); }
inline bool get_attributesFiltered_6() const { return ___attributesFiltered_6; }
inline bool* get_address_of_attributesFiltered_6() { return &___attributesFiltered_6; }
inline void set_attributesFiltered_6(bool value)
{
___attributesFiltered_6 = value;
}
inline static int32_t get_offset_of_attributesFilled_7() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___attributesFilled_7)); }
inline bool get_attributesFilled_7() const { return ___attributesFilled_7; }
inline bool* get_address_of_attributesFilled_7() { return &___attributesFilled_7; }
inline void set_attributesFilled_7(bool value)
{
___attributesFilled_7 = value;
}
inline static int32_t get_offset_of_metadataVersion_8() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___metadataVersion_8)); }
inline int32_t get_metadataVersion_8() const { return ___metadataVersion_8; }
inline int32_t* get_address_of_metadataVersion_8() { return &___metadataVersion_8; }
inline void set_metadataVersion_8(int32_t value)
{
___metadataVersion_8 = value;
}
inline static int32_t get_offset_of_category_9() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___category_9)); }
inline String_t* get_category_9() const { return ___category_9; }
inline String_t** get_address_of_category_9() { return &___category_9; }
inline void set_category_9(String_t* value)
{
___category_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___category_9), (void*)value);
}
inline static int32_t get_offset_of_description_10() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___description_10)); }
inline String_t* get_description_10() const { return ___description_10; }
inline String_t** get_address_of_description_10() { return &___description_10; }
inline void set_description_10(String_t* value)
{
___description_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___description_10), (void*)value);
}
inline static int32_t get_offset_of_lockCookie_11() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___lockCookie_11)); }
inline RuntimeObject * get_lockCookie_11() const { return ___lockCookie_11; }
inline RuntimeObject ** get_address_of_lockCookie_11() { return &___lockCookie_11; }
inline void set_lockCookie_11(RuntimeObject * value)
{
___lockCookie_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lockCookie_11), (void*)value);
}
};
// System.ComponentModel.PropertyDescriptorCollection
struct PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 : public RuntimeObject
{
public:
// System.Collections.IDictionary System.ComponentModel.PropertyDescriptorCollection::cachedFoundProperties
RuntimeObject* ___cachedFoundProperties_1;
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::cachedIgnoreCase
bool ___cachedIgnoreCase_2;
// System.ComponentModel.PropertyDescriptor[] System.ComponentModel.PropertyDescriptorCollection::properties
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ___properties_3;
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::propCount
int32_t ___propCount_4;
// System.String[] System.ComponentModel.PropertyDescriptorCollection::namedSort
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___namedSort_5;
// System.Collections.IComparer System.ComponentModel.PropertyDescriptorCollection::comparer
RuntimeObject* ___comparer_6;
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::propsOwned
bool ___propsOwned_7;
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::needSort
bool ___needSort_8;
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::readOnly
bool ___readOnly_9;
public:
inline static int32_t get_offset_of_cachedFoundProperties_1() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___cachedFoundProperties_1)); }
inline RuntimeObject* get_cachedFoundProperties_1() const { return ___cachedFoundProperties_1; }
inline RuntimeObject** get_address_of_cachedFoundProperties_1() { return &___cachedFoundProperties_1; }
inline void set_cachedFoundProperties_1(RuntimeObject* value)
{
___cachedFoundProperties_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cachedFoundProperties_1), (void*)value);
}
inline static int32_t get_offset_of_cachedIgnoreCase_2() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___cachedIgnoreCase_2)); }
inline bool get_cachedIgnoreCase_2() const { return ___cachedIgnoreCase_2; }
inline bool* get_address_of_cachedIgnoreCase_2() { return &___cachedIgnoreCase_2; }
inline void set_cachedIgnoreCase_2(bool value)
{
___cachedIgnoreCase_2 = value;
}
inline static int32_t get_offset_of_properties_3() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___properties_3)); }
inline PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* get_properties_3() const { return ___properties_3; }
inline PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F** get_address_of_properties_3() { return &___properties_3; }
inline void set_properties_3(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* value)
{
___properties_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___properties_3), (void*)value);
}
inline static int32_t get_offset_of_propCount_4() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___propCount_4)); }
inline int32_t get_propCount_4() const { return ___propCount_4; }
inline int32_t* get_address_of_propCount_4() { return &___propCount_4; }
inline void set_propCount_4(int32_t value)
{
___propCount_4 = value;
}
inline static int32_t get_offset_of_namedSort_5() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___namedSort_5)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_namedSort_5() const { return ___namedSort_5; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_namedSort_5() { return &___namedSort_5; }
inline void set_namedSort_5(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___namedSort_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namedSort_5), (void*)value);
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_propsOwned_7() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___propsOwned_7)); }
inline bool get_propsOwned_7() const { return ___propsOwned_7; }
inline bool* get_address_of_propsOwned_7() { return &___propsOwned_7; }
inline void set_propsOwned_7(bool value)
{
___propsOwned_7 = value;
}
inline static int32_t get_offset_of_needSort_8() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___needSort_8)); }
inline bool get_needSort_8() const { return ___needSort_8; }
inline bool* get_address_of_needSort_8() { return &___needSort_8; }
inline void set_needSort_8(bool value)
{
___needSort_8 = value;
}
inline static int32_t get_offset_of_readOnly_9() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___readOnly_9)); }
inline bool get_readOnly_9() const { return ___readOnly_9; }
inline bool* get_address_of_readOnly_9() { return &___readOnly_9; }
inline void set_readOnly_9(bool value)
{
___readOnly_9 = value;
}
};
struct PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_StaticFields
{
public:
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Empty
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ___Empty_0;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_StaticFields, ___Empty_0)); }
inline PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * get_Empty_0() const { return ___Empty_0; }
inline PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 ** get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value);
}
};
// System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator
struct PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D : public RuntimeObject
{
public:
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator::owner
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ___owner_0;
// System.Int32 System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator::index
int32_t ___index_1;
public:
inline static int32_t get_offset_of_owner_0() { return static_cast<int32_t>(offsetof(PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D, ___owner_0)); }
inline PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * get_owner_0() const { return ___owner_0; }
inline PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 ** get_address_of_owner_0() { return &___owner_0; }
inline void set_owner_0(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * value)
{
___owner_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___owner_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
};
// System.ComponentModel.ReferenceConverter_ReferenceComparer
struct ReferenceComparer_t3DEA0E67FDC8BA34C167CC4401A1FCC3CFE0B33A : public RuntimeObject
{
public:
// System.ComponentModel.ReferenceConverter System.ComponentModel.ReferenceConverter_ReferenceComparer::converter
ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * ___converter_0;
public:
inline static int32_t get_offset_of_converter_0() { return static_cast<int32_t>(offsetof(ReferenceComparer_t3DEA0E67FDC8BA34C167CC4401A1FCC3CFE0B33A, ___converter_0)); }
inline ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * get_converter_0() const { return ___converter_0; }
inline ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 ** get_address_of_converter_0() { return &___converter_0; }
inline void set_converter_0(ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * value)
{
___converter_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___converter_0), (void*)value);
}
};
// System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData
struct ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 : public RuntimeObject
{
public:
// System.Type System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::_type
Type_t * ____type_0;
// System.ComponentModel.AttributeCollection System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::_attributes
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ____attributes_1;
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::_events
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * ____events_2;
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::_properties
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ____properties_3;
// System.ComponentModel.TypeConverter System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::_converter
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ____converter_4;
// System.Object[] System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::_editors
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____editors_5;
// System.Type[] System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::_editorTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____editorTypes_6;
// System.Int32 System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::_editorCount
int32_t ____editorCount_7;
public:
inline static int32_t get_offset_of__type_0() { return static_cast<int32_t>(offsetof(ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96, ____type_0)); }
inline Type_t * get__type_0() const { return ____type_0; }
inline Type_t ** get_address_of__type_0() { return &____type_0; }
inline void set__type_0(Type_t * value)
{
____type_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____type_0), (void*)value);
}
inline static int32_t get_offset_of__attributes_1() { return static_cast<int32_t>(offsetof(ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96, ____attributes_1)); }
inline AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * get__attributes_1() const { return ____attributes_1; }
inline AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE ** get_address_of__attributes_1() { return &____attributes_1; }
inline void set__attributes_1(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * value)
{
____attributes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____attributes_1), (void*)value);
}
inline static int32_t get_offset_of__events_2() { return static_cast<int32_t>(offsetof(ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96, ____events_2)); }
inline EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * get__events_2() const { return ____events_2; }
inline EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 ** get_address_of__events_2() { return &____events_2; }
inline void set__events_2(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * value)
{
____events_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____events_2), (void*)value);
}
inline static int32_t get_offset_of__properties_3() { return static_cast<int32_t>(offsetof(ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96, ____properties_3)); }
inline PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * get__properties_3() const { return ____properties_3; }
inline PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 ** get_address_of__properties_3() { return &____properties_3; }
inline void set__properties_3(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * value)
{
____properties_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____properties_3), (void*)value);
}
inline static int32_t get_offset_of__converter_4() { return static_cast<int32_t>(offsetof(ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96, ____converter_4)); }
inline TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * get__converter_4() const { return ____converter_4; }
inline TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB ** get_address_of__converter_4() { return &____converter_4; }
inline void set__converter_4(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * value)
{
____converter_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____converter_4), (void*)value);
}
inline static int32_t get_offset_of__editors_5() { return static_cast<int32_t>(offsetof(ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96, ____editors_5)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__editors_5() const { return ____editors_5; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__editors_5() { return &____editors_5; }
inline void set__editors_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____editors_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____editors_5), (void*)value);
}
inline static int32_t get_offset_of__editorTypes_6() { return static_cast<int32_t>(offsetof(ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96, ____editorTypes_6)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__editorTypes_6() const { return ____editorTypes_6; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__editorTypes_6() { return &____editorTypes_6; }
inline void set__editorTypes_6(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____editorTypes_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____editorTypes_6), (void*)value);
}
inline static int32_t get_offset_of__editorCount_7() { return static_cast<int32_t>(offsetof(ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96, ____editorCount_7)); }
inline int32_t get__editorCount_7() const { return ____editorCount_7; }
inline int32_t* get_address_of__editorCount_7() { return &____editorCount_7; }
inline void set__editorCount_7(int32_t value)
{
____editorCount_7 = value;
}
};
// System.ComponentModel.SyntaxCheck
struct SyntaxCheck_tDC1D921DE89C089B7EF818689C16587F234ABD79 : public RuntimeObject
{
public:
public:
};
// System.ComponentModel.TypeConverter_StandardValuesCollection
struct StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 : public RuntimeObject
{
public:
// System.Collections.ICollection System.ComponentModel.TypeConverter_StandardValuesCollection::values
RuntimeObject* ___values_0;
// System.Array System.ComponentModel.TypeConverter_StandardValuesCollection::valueArray
RuntimeArray * ___valueArray_1;
public:
inline static int32_t get_offset_of_values_0() { return static_cast<int32_t>(offsetof(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3, ___values_0)); }
inline RuntimeObject* get_values_0() const { return ___values_0; }
inline RuntimeObject** get_address_of_values_0() { return &___values_0; }
inline void set_values_0(RuntimeObject* value)
{
___values_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_0), (void*)value);
}
inline static int32_t get_offset_of_valueArray_1() { return static_cast<int32_t>(offsetof(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3, ___valueArray_1)); }
inline RuntimeArray * get_valueArray_1() const { return ___valueArray_1; }
inline RuntimeArray ** get_address_of_valueArray_1() { return &___valueArray_1; }
inline void set_valueArray_1(RuntimeArray * value)
{
___valueArray_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueArray_1), (void*)value);
}
};
// System.ComponentModel.TypeDescriptionProvider
struct TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 : public RuntimeObject
{
public:
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptionProvider::_parent
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ____parent_0;
// System.ComponentModel.TypeDescriptionProvider_EmptyCustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::_emptyDescriptor
EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * ____emptyDescriptor_1;
public:
inline static int32_t get_offset_of__parent_0() { return static_cast<int32_t>(offsetof(TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591, ____parent_0)); }
inline TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * get__parent_0() const { return ____parent_0; }
inline TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 ** get_address_of__parent_0() { return &____parent_0; }
inline void set__parent_0(TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * value)
{
____parent_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parent_0), (void*)value);
}
inline static int32_t get_offset_of__emptyDescriptor_1() { return static_cast<int32_t>(offsetof(TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591, ____emptyDescriptor_1)); }
inline EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * get__emptyDescriptor_1() const { return ____emptyDescriptor_1; }
inline EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 ** get_address_of__emptyDescriptor_1() { return &____emptyDescriptor_1; }
inline void set__emptyDescriptor_1(EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * value)
{
____emptyDescriptor_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyDescriptor_1), (void*)value);
}
};
// System.ComponentModel.TypeDescriptor
struct TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF : public RuntimeObject
{
public:
public:
};
struct TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields
{
public:
// System.ComponentModel.WeakHashtable System.ComponentModel.TypeDescriptor::_providerTable
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * ____providerTable_0;
// System.Collections.Hashtable System.ComponentModel.TypeDescriptor::_providerTypeTable
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____providerTypeTable_1;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeDescriptor::_defaultProviders
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____defaultProviders_2;
// System.ComponentModel.WeakHashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeDescriptor::_associationTable
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * ____associationTable_3;
// System.Int32 System.ComponentModel.TypeDescriptor::_metadataVersion
int32_t ____metadataVersion_4;
// System.Int32 System.ComponentModel.TypeDescriptor::_collisionIndex
int32_t ____collisionIndex_5;
// System.Diagnostics.BooleanSwitch System.ComponentModel.TypeDescriptor::TraceDescriptor
BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 * ___TraceDescriptor_6;
// System.Guid[] System.ComponentModel.TypeDescriptor::_pipelineInitializeKeys
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ____pipelineInitializeKeys_10;
// System.Guid[] System.ComponentModel.TypeDescriptor::_pipelineMergeKeys
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ____pipelineMergeKeys_11;
// System.Guid[] System.ComponentModel.TypeDescriptor::_pipelineFilterKeys
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ____pipelineFilterKeys_12;
// System.Guid[] System.ComponentModel.TypeDescriptor::_pipelineAttributeFilterKeys
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ____pipelineAttributeFilterKeys_13;
// System.Object System.ComponentModel.TypeDescriptor::_internalSyncObject
RuntimeObject * ____internalSyncObject_14;
// System.ComponentModel.RefreshEventHandler System.ComponentModel.TypeDescriptor::Refreshed
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * ___Refreshed_15;
public:
inline static int32_t get_offset_of__providerTable_0() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____providerTable_0)); }
inline WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * get__providerTable_0() const { return ____providerTable_0; }
inline WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF ** get_address_of__providerTable_0() { return &____providerTable_0; }
inline void set__providerTable_0(WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * value)
{
____providerTable_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____providerTable_0), (void*)value);
}
inline static int32_t get_offset_of__providerTypeTable_1() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____providerTypeTable_1)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__providerTypeTable_1() const { return ____providerTypeTable_1; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__providerTypeTable_1() { return &____providerTypeTable_1; }
inline void set__providerTypeTable_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____providerTypeTable_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____providerTypeTable_1), (void*)value);
}
inline static int32_t get_offset_of__defaultProviders_2() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____defaultProviders_2)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__defaultProviders_2() const { return ____defaultProviders_2; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__defaultProviders_2() { return &____defaultProviders_2; }
inline void set__defaultProviders_2(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____defaultProviders_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____defaultProviders_2), (void*)value);
}
inline static int32_t get_offset_of__associationTable_3() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____associationTable_3)); }
inline WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * get__associationTable_3() const { return ____associationTable_3; }
inline WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF ** get_address_of__associationTable_3() { return &____associationTable_3; }
inline void set__associationTable_3(WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * value)
{
____associationTable_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____associationTable_3), (void*)value);
}
inline static int32_t get_offset_of__metadataVersion_4() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____metadataVersion_4)); }
inline int32_t get__metadataVersion_4() const { return ____metadataVersion_4; }
inline int32_t* get_address_of__metadataVersion_4() { return &____metadataVersion_4; }
inline void set__metadataVersion_4(int32_t value)
{
____metadataVersion_4 = value;
}
inline static int32_t get_offset_of__collisionIndex_5() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____collisionIndex_5)); }
inline int32_t get__collisionIndex_5() const { return ____collisionIndex_5; }
inline int32_t* get_address_of__collisionIndex_5() { return &____collisionIndex_5; }
inline void set__collisionIndex_5(int32_t value)
{
____collisionIndex_5 = value;
}
inline static int32_t get_offset_of_TraceDescriptor_6() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ___TraceDescriptor_6)); }
inline BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 * get_TraceDescriptor_6() const { return ___TraceDescriptor_6; }
inline BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 ** get_address_of_TraceDescriptor_6() { return &___TraceDescriptor_6; }
inline void set_TraceDescriptor_6(BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 * value)
{
___TraceDescriptor_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TraceDescriptor_6), (void*)value);
}
inline static int32_t get_offset_of__pipelineInitializeKeys_10() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____pipelineInitializeKeys_10)); }
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* get__pipelineInitializeKeys_10() const { return ____pipelineInitializeKeys_10; }
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** get_address_of__pipelineInitializeKeys_10() { return &____pipelineInitializeKeys_10; }
inline void set__pipelineInitializeKeys_10(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* value)
{
____pipelineInitializeKeys_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____pipelineInitializeKeys_10), (void*)value);
}
inline static int32_t get_offset_of__pipelineMergeKeys_11() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____pipelineMergeKeys_11)); }
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* get__pipelineMergeKeys_11() const { return ____pipelineMergeKeys_11; }
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** get_address_of__pipelineMergeKeys_11() { return &____pipelineMergeKeys_11; }
inline void set__pipelineMergeKeys_11(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* value)
{
____pipelineMergeKeys_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____pipelineMergeKeys_11), (void*)value);
}
inline static int32_t get_offset_of__pipelineFilterKeys_12() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____pipelineFilterKeys_12)); }
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* get__pipelineFilterKeys_12() const { return ____pipelineFilterKeys_12; }
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** get_address_of__pipelineFilterKeys_12() { return &____pipelineFilterKeys_12; }
inline void set__pipelineFilterKeys_12(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* value)
{
____pipelineFilterKeys_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____pipelineFilterKeys_12), (void*)value);
}
inline static int32_t get_offset_of__pipelineAttributeFilterKeys_13() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____pipelineAttributeFilterKeys_13)); }
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* get__pipelineAttributeFilterKeys_13() const { return ____pipelineAttributeFilterKeys_13; }
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** get_address_of__pipelineAttributeFilterKeys_13() { return &____pipelineAttributeFilterKeys_13; }
inline void set__pipelineAttributeFilterKeys_13(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* value)
{
____pipelineAttributeFilterKeys_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____pipelineAttributeFilterKeys_13), (void*)value);
}
inline static int32_t get_offset_of__internalSyncObject_14() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____internalSyncObject_14)); }
inline RuntimeObject * get__internalSyncObject_14() const { return ____internalSyncObject_14; }
inline RuntimeObject ** get_address_of__internalSyncObject_14() { return &____internalSyncObject_14; }
inline void set__internalSyncObject_14(RuntimeObject * value)
{
____internalSyncObject_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____internalSyncObject_14), (void*)value);
}
inline static int32_t get_offset_of_Refreshed_15() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ___Refreshed_15)); }
inline RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * get_Refreshed_15() const { return ___Refreshed_15; }
inline RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 ** get_address_of_Refreshed_15() { return &___Refreshed_15; }
inline void set_Refreshed_15(RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * value)
{
___Refreshed_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Refreshed_15), (void*)value);
}
};
// System.ComponentModel.TypeDescriptor_AttributeFilterCacheItem
struct AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 : public RuntimeObject
{
public:
// System.Attribute[] System.ComponentModel.TypeDescriptor_AttributeFilterCacheItem::_filter
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ____filter_0;
// System.Collections.ICollection System.ComponentModel.TypeDescriptor_AttributeFilterCacheItem::FilteredMembers
RuntimeObject* ___FilteredMembers_1;
public:
inline static int32_t get_offset_of__filter_0() { return static_cast<int32_t>(offsetof(AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01, ____filter_0)); }
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* get__filter_0() const { return ____filter_0; }
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17** get_address_of__filter_0() { return &____filter_0; }
inline void set__filter_0(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* value)
{
____filter_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____filter_0), (void*)value);
}
inline static int32_t get_offset_of_FilteredMembers_1() { return static_cast<int32_t>(offsetof(AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01, ___FilteredMembers_1)); }
inline RuntimeObject* get_FilteredMembers_1() const { return ___FilteredMembers_1; }
inline RuntimeObject** get_address_of_FilteredMembers_1() { return &___FilteredMembers_1; }
inline void set_FilteredMembers_1(RuntimeObject* value)
{
___FilteredMembers_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilteredMembers_1), (void*)value);
}
};
// System.ComponentModel.TypeDescriptor_FilterCacheItem
struct FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 : public RuntimeObject
{
public:
// System.ComponentModel.Design.ITypeDescriptorFilterService System.ComponentModel.TypeDescriptor_FilterCacheItem::_filterService
RuntimeObject* ____filterService_0;
// System.Collections.ICollection System.ComponentModel.TypeDescriptor_FilterCacheItem::FilteredMembers
RuntimeObject* ___FilteredMembers_1;
public:
inline static int32_t get_offset_of__filterService_0() { return static_cast<int32_t>(offsetof(FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4, ____filterService_0)); }
inline RuntimeObject* get__filterService_0() const { return ____filterService_0; }
inline RuntimeObject** get_address_of__filterService_0() { return &____filterService_0; }
inline void set__filterService_0(RuntimeObject* value)
{
____filterService_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____filterService_0), (void*)value);
}
inline static int32_t get_offset_of_FilteredMembers_1() { return static_cast<int32_t>(offsetof(FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4, ___FilteredMembers_1)); }
inline RuntimeObject* get_FilteredMembers_1() const { return ___FilteredMembers_1; }
inline RuntimeObject** get_address_of_FilteredMembers_1() { return &___FilteredMembers_1; }
inline void set_FilteredMembers_1(RuntimeObject* value)
{
___FilteredMembers_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilteredMembers_1), (void*)value);
}
};
// System.ComponentModel.TypeDescriptor_MemberDescriptorComparer
struct MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D : public RuntimeObject
{
public:
public:
};
struct MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D_StaticFields
{
public:
// System.ComponentModel.TypeDescriptor_MemberDescriptorComparer System.ComponentModel.TypeDescriptor_MemberDescriptorComparer::Instance
MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D_StaticFields, ___Instance_0)); }
inline MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D * get_Instance_0() const { return ___Instance_0; }
inline MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.ComponentModel.TypeDescriptor_MergedTypeDescriptor
struct MergedTypeDescriptor_t9395D9B4F23C94B7997A9ED698CBEF7995EB162B : public RuntimeObject
{
public:
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor_MergedTypeDescriptor::_primary
RuntimeObject* ____primary_0;
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor_MergedTypeDescriptor::_secondary
RuntimeObject* ____secondary_1;
public:
inline static int32_t get_offset_of__primary_0() { return static_cast<int32_t>(offsetof(MergedTypeDescriptor_t9395D9B4F23C94B7997A9ED698CBEF7995EB162B, ____primary_0)); }
inline RuntimeObject* get__primary_0() const { return ____primary_0; }
inline RuntimeObject** get_address_of__primary_0() { return &____primary_0; }
inline void set__primary_0(RuntimeObject* value)
{
____primary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____primary_0), (void*)value);
}
inline static int32_t get_offset_of__secondary_1() { return static_cast<int32_t>(offsetof(MergedTypeDescriptor_t9395D9B4F23C94B7997A9ED698CBEF7995EB162B, ____secondary_1)); }
inline RuntimeObject* get__secondary_1() const { return ____secondary_1; }
inline RuntimeObject** get_address_of__secondary_1() { return &____secondary_1; }
inline void set__secondary_1(RuntimeObject* value)
{
____secondary_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____secondary_1), (void*)value);
}
};
// System.Diagnostics.Switch
struct Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F : public RuntimeObject
{
public:
// System.String System.Diagnostics.Switch::description
String_t* ___description_0;
// System.String System.Diagnostics.Switch::displayName
String_t* ___displayName_1;
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Switch::switchValueString
String_t* ___switchValueString_2;
// System.String System.Diagnostics.Switch::defaultValue
String_t* ___defaultValue_3;
public:
inline static int32_t get_offset_of_description_0() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F, ___description_0)); }
inline String_t* get_description_0() const { return ___description_0; }
inline String_t** get_address_of_description_0() { return &___description_0; }
inline void set_description_0(String_t* value)
{
___description_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___description_0), (void*)value);
}
inline static int32_t get_offset_of_displayName_1() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F, ___displayName_1)); }
inline String_t* get_displayName_1() const { return ___displayName_1; }
inline String_t** get_address_of_displayName_1() { return &___displayName_1; }
inline void set_displayName_1(String_t* value)
{
___displayName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___displayName_1), (void*)value);
}
inline static int32_t get_offset_of_switchValueString_2() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F, ___switchValueString_2)); }
inline String_t* get_switchValueString_2() const { return ___switchValueString_2; }
inline String_t** get_address_of_switchValueString_2() { return &___switchValueString_2; }
inline void set_switchValueString_2(String_t* value)
{
___switchValueString_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___switchValueString_2), (void*)value);
}
inline static int32_t get_offset_of_defaultValue_3() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F, ___defaultValue_3)); }
inline String_t* get_defaultValue_3() const { return ___defaultValue_3; }
inline String_t** get_address_of_defaultValue_3() { return &___defaultValue_3; }
inline void set_defaultValue_3(String_t* value)
{
___defaultValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultValue_3), (void*)value);
}
};
struct Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F_StaticFields
{
public:
// System.Collections.Generic.List`1<System.WeakReference> System.Diagnostics.Switch::switches
List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * ___switches_4;
// System.Int32 System.Diagnostics.Switch::s_LastCollectionCount
int32_t ___s_LastCollectionCount_5;
public:
inline static int32_t get_offset_of_switches_4() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F_StaticFields, ___switches_4)); }
inline List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * get_switches_4() const { return ___switches_4; }
inline List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF ** get_address_of_switches_4() { return &___switches_4; }
inline void set_switches_4(List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * value)
{
___switches_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___switches_4), (void*)value);
}
inline static int32_t get_offset_of_s_LastCollectionCount_5() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F_StaticFields, ___s_LastCollectionCount_5)); }
inline int32_t get_s_LastCollectionCount_5() const { return ___s_LastCollectionCount_5; }
inline int32_t* get_address_of_s_LastCollectionCount_5() { return &___s_LastCollectionCount_5; }
inline void set_s_LastCollectionCount_5(int32_t value)
{
___s_LastCollectionCount_5 = value;
}
};
// System.EventArgs
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E : public RuntimeObject
{
public:
public:
};
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields
{
public:
// System.EventArgs System.EventArgs::Empty
EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___Empty_0;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields, ___Empty_0)); }
inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * get_Empty_0() const { return ___Empty_0; }
inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E ** get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value);
}
};
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject
{
public:
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
public:
inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); }
inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; }
inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; }
inline void set_m_isReadOnly_3(bool value)
{
___m_isReadOnly_3 = value;
}
inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); }
inline int32_t get_cultureID_4() const { return ___cultureID_4; }
inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; }
inline void set_cultureID_4(int32_t value)
{
___cultureID_4 = value;
}
inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); }
inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; }
inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; }
inline void set_parent_lcid_5(int32_t value)
{
___parent_lcid_5 = value;
}
inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); }
inline int32_t get_datetime_index_6() const { return ___datetime_index_6; }
inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; }
inline void set_datetime_index_6(int32_t value)
{
___datetime_index_6 = value;
}
inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); }
inline int32_t get_number_index_7() const { return ___number_index_7; }
inline int32_t* get_address_of_number_index_7() { return &___number_index_7; }
inline void set_number_index_7(int32_t value)
{
___number_index_7 = value;
}
inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); }
inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; }
inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; }
inline void set_default_calendar_type_8(int32_t value)
{
___default_calendar_type_8 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); }
inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; }
inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; }
inline void set_m_useUserOverride_9(bool value)
{
___m_useUserOverride_9 = value;
}
inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; }
inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
{
___numInfo_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value);
}
inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); }
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; }
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; }
inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value)
{
___dateTimeInfo_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value);
}
inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); }
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; }
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; }
inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value)
{
___textInfo_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value);
}
inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); }
inline String_t* get_m_name_13() const { return ___m_name_13; }
inline String_t** get_address_of_m_name_13() { return &___m_name_13; }
inline void set_m_name_13(String_t* value)
{
___m_name_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value);
}
inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); }
inline String_t* get_englishname_14() const { return ___englishname_14; }
inline String_t** get_address_of_englishname_14() { return &___englishname_14; }
inline void set_englishname_14(String_t* value)
{
___englishname_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value);
}
inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); }
inline String_t* get_nativename_15() const { return ___nativename_15; }
inline String_t** get_address_of_nativename_15() { return &___nativename_15; }
inline void set_nativename_15(String_t* value)
{
___nativename_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value);
}
inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); }
inline String_t* get_iso3lang_16() const { return ___iso3lang_16; }
inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; }
inline void set_iso3lang_16(String_t* value)
{
___iso3lang_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value);
}
inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); }
inline String_t* get_iso2lang_17() const { return ___iso2lang_17; }
inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; }
inline void set_iso2lang_17(String_t* value)
{
___iso2lang_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value);
}
inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); }
inline String_t* get_win3lang_18() const { return ___win3lang_18; }
inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; }
inline void set_win3lang_18(String_t* value)
{
___win3lang_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value);
}
inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); }
inline String_t* get_territory_19() const { return ___territory_19; }
inline String_t** get_address_of_territory_19() { return &___territory_19; }
inline void set_territory_19(String_t* value)
{
___territory_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value);
}
inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; }
inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___native_calendar_names_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value);
}
inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; }
inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value)
{
___compareInfo_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value);
}
inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); }
inline void* get_textinfo_data_22() const { return ___textinfo_data_22; }
inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; }
inline void set_textinfo_data_22(void* value)
{
___textinfo_data_22 = value;
}
inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); }
inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; }
inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; }
inline void set_m_dataItem_23(int32_t value)
{
___m_dataItem_23 = value;
}
inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); }
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; }
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; }
inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value)
{
___calendar_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value);
}
inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; }
inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___parent_culture_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value);
}
inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); }
inline bool get_constructed_26() const { return ___constructed_26; }
inline bool* get_address_of_constructed_26() { return &___constructed_26; }
inline void set_constructed_26(bool value)
{
___constructed_26 = value;
}
inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; }
inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___cached_serialized_form_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value);
}
inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); }
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; }
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; }
inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value)
{
___m_cultureData_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value);
}
inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); }
inline bool get_m_isInherited_29() const { return ___m_isInherited_29; }
inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; }
inline void set_m_isInherited_29(bool value)
{
___m_isInherited_29 = value;
}
};
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields
{
public:
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject * ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_37;
public:
inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; }
inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___invariant_culture_info_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value);
}
inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); }
inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; }
inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; }
inline void set_shared_table_lock_1(RuntimeObject * value)
{
___shared_table_lock_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value);
}
inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; }
inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___default_current_culture_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; }
inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___s_DefaultThreadCurrentUICulture_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; }
inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___s_DefaultThreadCurrentCulture_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value);
}
inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); }
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; }
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; }
inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value)
{
___shared_by_number_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value);
}
inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); }
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; }
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; }
inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value)
{
___shared_by_name_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value);
}
inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); }
inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; }
inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; }
inline void set_IsTaiwanSku_37(bool value)
{
___IsTaiwanSku_37 = value;
}
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 : public RuntimeObject
{
public:
public:
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Collections.Specialized.BitVector32
struct BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1
{
public:
// System.UInt32 System.Collections.Specialized.BitVector32::data
uint32_t ___data_0;
public:
inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1, ___data_0)); }
inline uint32_t get_data_0() const { return ___data_0; }
inline uint32_t* get_address_of_data_0() { return &___data_0; }
inline void set_data_0(uint32_t value)
{
___data_0 = value;
}
};
// System.ComponentModel.AmbientValueAttribute
struct AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Object System.ComponentModel.AmbientValueAttribute::value
RuntimeObject * ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E, ___value_0)); }
inline RuntimeObject * get_value_0() const { return ___value_0; }
inline RuntimeObject ** get_address_of_value_0() { return &___value_0; }
inline void set_value_0(RuntimeObject * value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_0), (void*)value);
}
};
// System.ComponentModel.AsyncCompletedEventArgs
struct AsyncCompletedEventArgs_tADCBE47368F4D8B198B46D332B27EE38C8B5F8B7 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
{
public:
// System.Exception System.ComponentModel.AsyncCompletedEventArgs::error
Exception_t * ___error_1;
// System.Boolean System.ComponentModel.AsyncCompletedEventArgs::cancelled
bool ___cancelled_2;
// System.Object System.ComponentModel.AsyncCompletedEventArgs::userState
RuntimeObject * ___userState_3;
public:
inline static int32_t get_offset_of_error_1() { return static_cast<int32_t>(offsetof(AsyncCompletedEventArgs_tADCBE47368F4D8B198B46D332B27EE38C8B5F8B7, ___error_1)); }
inline Exception_t * get_error_1() const { return ___error_1; }
inline Exception_t ** get_address_of_error_1() { return &___error_1; }
inline void set_error_1(Exception_t * value)
{
___error_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___error_1), (void*)value);
}
inline static int32_t get_offset_of_cancelled_2() { return static_cast<int32_t>(offsetof(AsyncCompletedEventArgs_tADCBE47368F4D8B198B46D332B27EE38C8B5F8B7, ___cancelled_2)); }
inline bool get_cancelled_2() const { return ___cancelled_2; }
inline bool* get_address_of_cancelled_2() { return &___cancelled_2; }
inline void set_cancelled_2(bool value)
{
___cancelled_2 = value;
}
inline static int32_t get_offset_of_userState_3() { return static_cast<int32_t>(offsetof(AsyncCompletedEventArgs_tADCBE47368F4D8B198B46D332B27EE38C8B5F8B7, ___userState_3)); }
inline RuntimeObject * get_userState_3() const { return ___userState_3; }
inline RuntimeObject ** get_address_of_userState_3() { return &___userState_3; }
inline void set_userState_3(RuntimeObject * value)
{
___userState_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___userState_3), (void*)value);
}
};
// System.ComponentModel.AttributeProviderAttribute
struct AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.ComponentModel.AttributeProviderAttribute::_typeName
String_t* ____typeName_0;
// System.String System.ComponentModel.AttributeProviderAttribute::_propertyName
String_t* ____propertyName_1;
public:
inline static int32_t get_offset_of__typeName_0() { return static_cast<int32_t>(offsetof(AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068, ____typeName_0)); }
inline String_t* get__typeName_0() const { return ____typeName_0; }
inline String_t** get_address_of__typeName_0() { return &____typeName_0; }
inline void set__typeName_0(String_t* value)
{
____typeName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____typeName_0), (void*)value);
}
inline static int32_t get_offset_of__propertyName_1() { return static_cast<int32_t>(offsetof(AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068, ____propertyName_1)); }
inline String_t* get__propertyName_1() const { return ____propertyName_1; }
inline String_t** get_address_of__propertyName_1() { return &____propertyName_1; }
inline void set__propertyName_1(String_t* value)
{
____propertyName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____propertyName_1), (void*)value);
}
};
// System.ComponentModel.BrowsableAttribute
struct BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Boolean System.ComponentModel.BrowsableAttribute::browsable
bool ___browsable_3;
public:
inline static int32_t get_offset_of_browsable_3() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1, ___browsable_3)); }
inline bool get_browsable_3() const { return ___browsable_3; }
inline bool* get_address_of_browsable_3() { return &___browsable_3; }
inline void set_browsable_3(bool value)
{
___browsable_3 = value;
}
};
struct BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_StaticFields
{
public:
// System.ComponentModel.BrowsableAttribute System.ComponentModel.BrowsableAttribute::Yes
BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * ___Yes_0;
// System.ComponentModel.BrowsableAttribute System.ComponentModel.BrowsableAttribute::No
BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * ___No_1;
// System.ComponentModel.BrowsableAttribute System.ComponentModel.BrowsableAttribute::Default
BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * ___Default_2;
public:
inline static int32_t get_offset_of_Yes_0() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_StaticFields, ___Yes_0)); }
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * get_Yes_0() const { return ___Yes_0; }
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 ** get_address_of_Yes_0() { return &___Yes_0; }
inline void set_Yes_0(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * value)
{
___Yes_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Yes_0), (void*)value);
}
inline static int32_t get_offset_of_No_1() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_StaticFields, ___No_1)); }
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * get_No_1() const { return ___No_1; }
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 ** get_address_of_No_1() { return &___No_1; }
inline void set_No_1(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * value)
{
___No_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___No_1), (void*)value);
}
inline static int32_t get_offset_of_Default_2() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_StaticFields, ___Default_2)); }
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * get_Default_2() const { return ___Default_2; }
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 ** get_address_of_Default_2() { return &___Default_2; }
inline void set_Default_2(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * value)
{
___Default_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_2), (void*)value);
}
};
// System.ComponentModel.CategoryAttribute
struct CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Boolean System.ComponentModel.CategoryAttribute::localized
bool ___localized_14;
// System.String System.ComponentModel.CategoryAttribute::categoryValue
String_t* ___categoryValue_15;
public:
inline static int32_t get_offset_of_localized_14() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80, ___localized_14)); }
inline bool get_localized_14() const { return ___localized_14; }
inline bool* get_address_of_localized_14() { return &___localized_14; }
inline void set_localized_14(bool value)
{
___localized_14 = value;
}
inline static int32_t get_offset_of_categoryValue_15() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80, ___categoryValue_15)); }
inline String_t* get_categoryValue_15() const { return ___categoryValue_15; }
inline String_t** get_address_of_categoryValue_15() { return &___categoryValue_15; }
inline void set_categoryValue_15(String_t* value)
{
___categoryValue_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryValue_15), (void*)value);
}
};
struct CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields
{
public:
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::appearance
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___appearance_0;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::asynchronous
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___asynchronous_1;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::behavior
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___behavior_2;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::data
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___data_3;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::design
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___design_4;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::action
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___action_5;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::format
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___format_6;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::layout
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___layout_7;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::mouse
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___mouse_8;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::key
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___key_9;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::focus
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___focus_10;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::windowStyle
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___windowStyle_11;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::dragDrop
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___dragDrop_12;
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::defAttr
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___defAttr_13;
public:
inline static int32_t get_offset_of_appearance_0() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___appearance_0)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_appearance_0() const { return ___appearance_0; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_appearance_0() { return &___appearance_0; }
inline void set_appearance_0(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___appearance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___appearance_0), (void*)value);
}
inline static int32_t get_offset_of_asynchronous_1() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___asynchronous_1)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_asynchronous_1() const { return ___asynchronous_1; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_asynchronous_1() { return &___asynchronous_1; }
inline void set_asynchronous_1(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___asynchronous_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___asynchronous_1), (void*)value);
}
inline static int32_t get_offset_of_behavior_2() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___behavior_2)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_behavior_2() const { return ___behavior_2; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_behavior_2() { return &___behavior_2; }
inline void set_behavior_2(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___behavior_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___behavior_2), (void*)value);
}
inline static int32_t get_offset_of_data_3() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___data_3)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_data_3() const { return ___data_3; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_data_3() { return &___data_3; }
inline void set_data_3(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_3), (void*)value);
}
inline static int32_t get_offset_of_design_4() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___design_4)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_design_4() const { return ___design_4; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_design_4() { return &___design_4; }
inline void set_design_4(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___design_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___design_4), (void*)value);
}
inline static int32_t get_offset_of_action_5() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___action_5)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_action_5() const { return ___action_5; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_action_5() { return &___action_5; }
inline void set_action_5(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___action_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___action_5), (void*)value);
}
inline static int32_t get_offset_of_format_6() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___format_6)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_format_6() const { return ___format_6; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_format_6() { return &___format_6; }
inline void set_format_6(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___format_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___format_6), (void*)value);
}
inline static int32_t get_offset_of_layout_7() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___layout_7)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_layout_7() const { return ___layout_7; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_layout_7() { return &___layout_7; }
inline void set_layout_7(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___layout_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layout_7), (void*)value);
}
inline static int32_t get_offset_of_mouse_8() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___mouse_8)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_mouse_8() const { return ___mouse_8; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_mouse_8() { return &___mouse_8; }
inline void set_mouse_8(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___mouse_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mouse_8), (void*)value);
}
inline static int32_t get_offset_of_key_9() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___key_9)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_key_9() const { return ___key_9; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_key_9() { return &___key_9; }
inline void set_key_9(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___key_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_9), (void*)value);
}
inline static int32_t get_offset_of_focus_10() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___focus_10)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_focus_10() const { return ___focus_10; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_focus_10() { return &___focus_10; }
inline void set_focus_10(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___focus_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___focus_10), (void*)value);
}
inline static int32_t get_offset_of_windowStyle_11() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___windowStyle_11)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_windowStyle_11() const { return ___windowStyle_11; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_windowStyle_11() { return &___windowStyle_11; }
inline void set_windowStyle_11(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___windowStyle_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___windowStyle_11), (void*)value);
}
inline static int32_t get_offset_of_dragDrop_12() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___dragDrop_12)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_dragDrop_12() const { return ___dragDrop_12; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_dragDrop_12() { return &___dragDrop_12; }
inline void set_dragDrop_12(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___dragDrop_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dragDrop_12), (void*)value);
}
inline static int32_t get_offset_of_defAttr_13() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___defAttr_13)); }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_defAttr_13() const { return ___defAttr_13; }
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_defAttr_13() { return &___defAttr_13; }
inline void set_defAttr_13(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
{
___defAttr_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defAttr_13), (void*)value);
}
};
// System.ComponentModel.ComponentCollection
struct ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895 : public ReadOnlyCollectionBase_tFD695167917CE6DF4FA18A906FA530880B9B8772
{
public:
public:
};
// System.ComponentModel.DefaultEventAttribute
struct DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.ComponentModel.DefaultEventAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
}
};
struct DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846_StaticFields
{
public:
// System.ComponentModel.DefaultEventAttribute System.ComponentModel.DefaultEventAttribute::Default
DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 * ___Default_1;
public:
inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846_StaticFields, ___Default_1)); }
inline DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 * get_Default_1() const { return ___Default_1; }
inline DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 ** get_address_of_Default_1() { return &___Default_1; }
inline void set_Default_1(DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 * value)
{
___Default_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value);
}
};
// System.ComponentModel.DefaultPropertyAttribute
struct DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.ComponentModel.DefaultPropertyAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
}
};
struct DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7_StaticFields
{
public:
// System.ComponentModel.DefaultPropertyAttribute System.ComponentModel.DefaultPropertyAttribute::Default
DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 * ___Default_1;
public:
inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7_StaticFields, ___Default_1)); }
inline DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 * get_Default_1() const { return ___Default_1; }
inline DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 ** get_address_of_Default_1() { return &___Default_1; }
inline void set_Default_1(DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 * value)
{
___Default_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value);
}
};
// System.ComponentModel.DefaultValueAttribute
struct DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Object System.ComponentModel.DefaultValueAttribute::value
RuntimeObject * ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC, ___value_0)); }
inline RuntimeObject * get_value_0() const { return ___value_0; }
inline RuntimeObject ** get_address_of_value_0() { return &___value_0; }
inline void set_value_0(RuntimeObject * value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_0), (void*)value);
}
};
// System.ComponentModel.DelegatingTypeDescriptionProvider
struct DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 : public TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591
{
public:
// System.Type System.ComponentModel.DelegatingTypeDescriptionProvider::_type
Type_t * ____type_2;
public:
inline static int32_t get_offset_of__type_2() { return static_cast<int32_t>(offsetof(DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56, ____type_2)); }
inline Type_t * get__type_2() const { return ____type_2; }
inline Type_t ** get_address_of__type_2() { return &____type_2; }
inline void set__type_2(Type_t * value)
{
____type_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____type_2), (void*)value);
}
};
// System.ComponentModel.DesignOnlyAttribute
struct DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Boolean System.ComponentModel.DesignOnlyAttribute::isDesignOnly
bool ___isDesignOnly_0;
public:
inline static int32_t get_offset_of_isDesignOnly_0() { return static_cast<int32_t>(offsetof(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06, ___isDesignOnly_0)); }
inline bool get_isDesignOnly_0() const { return ___isDesignOnly_0; }
inline bool* get_address_of_isDesignOnly_0() { return &___isDesignOnly_0; }
inline void set_isDesignOnly_0(bool value)
{
___isDesignOnly_0 = value;
}
};
struct DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields
{
public:
// System.ComponentModel.DesignOnlyAttribute System.ComponentModel.DesignOnlyAttribute::Yes
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * ___Yes_1;
// System.ComponentModel.DesignOnlyAttribute System.ComponentModel.DesignOnlyAttribute::No
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * ___No_2;
// System.ComponentModel.DesignOnlyAttribute System.ComponentModel.DesignOnlyAttribute::Default
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * ___Default_3;
public:
inline static int32_t get_offset_of_Yes_1() { return static_cast<int32_t>(offsetof(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields, ___Yes_1)); }
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * get_Yes_1() const { return ___Yes_1; }
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 ** get_address_of_Yes_1() { return &___Yes_1; }
inline void set_Yes_1(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * value)
{
___Yes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Yes_1), (void*)value);
}
inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields, ___No_2)); }
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * get_No_2() const { return ___No_2; }
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 ** get_address_of_No_2() { return &___No_2; }
inline void set_No_2(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * value)
{
___No_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___No_2), (void*)value);
}
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields, ___Default_3)); }
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * get_Default_3() const { return ___Default_3; }
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 ** get_address_of_Default_3() { return &___Default_3; }
inline void set_Default_3(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * value)
{
___Default_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
}
};
// System.ComponentModel.DesignerAttribute
struct DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.ComponentModel.DesignerAttribute::designerTypeName
String_t* ___designerTypeName_0;
// System.String System.ComponentModel.DesignerAttribute::designerBaseTypeName
String_t* ___designerBaseTypeName_1;
// System.String System.ComponentModel.DesignerAttribute::typeId
String_t* ___typeId_2;
public:
inline static int32_t get_offset_of_designerTypeName_0() { return static_cast<int32_t>(offsetof(DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0, ___designerTypeName_0)); }
inline String_t* get_designerTypeName_0() const { return ___designerTypeName_0; }
inline String_t** get_address_of_designerTypeName_0() { return &___designerTypeName_0; }
inline void set_designerTypeName_0(String_t* value)
{
___designerTypeName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___designerTypeName_0), (void*)value);
}
inline static int32_t get_offset_of_designerBaseTypeName_1() { return static_cast<int32_t>(offsetof(DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0, ___designerBaseTypeName_1)); }
inline String_t* get_designerBaseTypeName_1() const { return ___designerBaseTypeName_1; }
inline String_t** get_address_of_designerBaseTypeName_1() { return &___designerBaseTypeName_1; }
inline void set_designerBaseTypeName_1(String_t* value)
{
___designerBaseTypeName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___designerBaseTypeName_1), (void*)value);
}
inline static int32_t get_offset_of_typeId_2() { return static_cast<int32_t>(offsetof(DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0, ___typeId_2)); }
inline String_t* get_typeId_2() const { return ___typeId_2; }
inline String_t** get_address_of_typeId_2() { return &___typeId_2; }
inline void set_typeId_2(String_t* value)
{
___typeId_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeId_2), (void*)value);
}
};
// System.ComponentModel.EditorAttribute
struct EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.ComponentModel.EditorAttribute::baseTypeName
String_t* ___baseTypeName_0;
// System.String System.ComponentModel.EditorAttribute::typeName
String_t* ___typeName_1;
// System.String System.ComponentModel.EditorAttribute::typeId
String_t* ___typeId_2;
public:
inline static int32_t get_offset_of_baseTypeName_0() { return static_cast<int32_t>(offsetof(EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5, ___baseTypeName_0)); }
inline String_t* get_baseTypeName_0() const { return ___baseTypeName_0; }
inline String_t** get_address_of_baseTypeName_0() { return &___baseTypeName_0; }
inline void set_baseTypeName_0(String_t* value)
{
___baseTypeName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___baseTypeName_0), (void*)value);
}
inline static int32_t get_offset_of_typeName_1() { return static_cast<int32_t>(offsetof(EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5, ___typeName_1)); }
inline String_t* get_typeName_1() const { return ___typeName_1; }
inline String_t** get_address_of_typeName_1() { return &___typeName_1; }
inline void set_typeName_1(String_t* value)
{
___typeName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeName_1), (void*)value);
}
inline static int32_t get_offset_of_typeId_2() { return static_cast<int32_t>(offsetof(EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5, ___typeId_2)); }
inline String_t* get_typeId_2() const { return ___typeId_2; }
inline String_t** get_address_of_typeId_2() { return &___typeId_2; }
inline void set_typeId_2(String_t* value)
{
___typeId_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeId_2), (void*)value);
}
};
// System.ComponentModel.EventDescriptor
struct EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 : public MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8
{
public:
public:
};
// System.ComponentModel.ExtenderProvidedPropertyAttribute
struct ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ExtenderProvidedPropertyAttribute::extenderProperty
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___extenderProperty_0;
// System.ComponentModel.IExtenderProvider System.ComponentModel.ExtenderProvidedPropertyAttribute::provider
RuntimeObject* ___provider_1;
// System.Type System.ComponentModel.ExtenderProvidedPropertyAttribute::receiverType
Type_t * ___receiverType_2;
public:
inline static int32_t get_offset_of_extenderProperty_0() { return static_cast<int32_t>(offsetof(ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68, ___extenderProperty_0)); }
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * get_extenderProperty_0() const { return ___extenderProperty_0; }
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D ** get_address_of_extenderProperty_0() { return &___extenderProperty_0; }
inline void set_extenderProperty_0(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * value)
{
___extenderProperty_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___extenderProperty_0), (void*)value);
}
inline static int32_t get_offset_of_provider_1() { return static_cast<int32_t>(offsetof(ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68, ___provider_1)); }
inline RuntimeObject* get_provider_1() const { return ___provider_1; }
inline RuntimeObject** get_address_of_provider_1() { return &___provider_1; }
inline void set_provider_1(RuntimeObject* value)
{
___provider_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___provider_1), (void*)value);
}
inline static int32_t get_offset_of_receiverType_2() { return static_cast<int32_t>(offsetof(ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68, ___receiverType_2)); }
inline Type_t * get_receiverType_2() const { return ___receiverType_2; }
inline Type_t ** get_address_of_receiverType_2() { return &___receiverType_2; }
inline void set_receiverType_2(Type_t * value)
{
___receiverType_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___receiverType_2), (void*)value);
}
};
// System.ComponentModel.PropertyChangedEventArgs
struct PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
{
public:
// System.String System.ComponentModel.PropertyChangedEventArgs::propertyName
String_t* ___propertyName_1;
public:
inline static int32_t get_offset_of_propertyName_1() { return static_cast<int32_t>(offsetof(PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46, ___propertyName_1)); }
inline String_t* get_propertyName_1() const { return ___propertyName_1; }
inline String_t** get_address_of_propertyName_1() { return &___propertyName_1; }
inline void set_propertyName_1(String_t* value)
{
___propertyName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___propertyName_1), (void*)value);
}
};
// System.ComponentModel.PropertyDescriptor
struct PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D : public MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8
{
public:
// System.ComponentModel.TypeConverter System.ComponentModel.PropertyDescriptor::converter
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ___converter_12;
// System.Collections.Hashtable System.ComponentModel.PropertyDescriptor::valueChangedHandlers
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___valueChangedHandlers_13;
// System.Object[] System.ComponentModel.PropertyDescriptor::editors
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___editors_14;
// System.Type[] System.ComponentModel.PropertyDescriptor::editorTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___editorTypes_15;
// System.Int32 System.ComponentModel.PropertyDescriptor::editorCount
int32_t ___editorCount_16;
public:
inline static int32_t get_offset_of_converter_12() { return static_cast<int32_t>(offsetof(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D, ___converter_12)); }
inline TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * get_converter_12() const { return ___converter_12; }
inline TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB ** get_address_of_converter_12() { return &___converter_12; }
inline void set_converter_12(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * value)
{
___converter_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___converter_12), (void*)value);
}
inline static int32_t get_offset_of_valueChangedHandlers_13() { return static_cast<int32_t>(offsetof(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D, ___valueChangedHandlers_13)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_valueChangedHandlers_13() const { return ___valueChangedHandlers_13; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_valueChangedHandlers_13() { return &___valueChangedHandlers_13; }
inline void set_valueChangedHandlers_13(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___valueChangedHandlers_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueChangedHandlers_13), (void*)value);
}
inline static int32_t get_offset_of_editors_14() { return static_cast<int32_t>(offsetof(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D, ___editors_14)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_editors_14() const { return ___editors_14; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_editors_14() { return &___editors_14; }
inline void set_editors_14(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___editors_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___editors_14), (void*)value);
}
inline static int32_t get_offset_of_editorTypes_15() { return static_cast<int32_t>(offsetof(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D, ___editorTypes_15)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_editorTypes_15() const { return ___editorTypes_15; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_editorTypes_15() { return &___editorTypes_15; }
inline void set_editorTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___editorTypes_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___editorTypes_15), (void*)value);
}
inline static int32_t get_offset_of_editorCount_16() { return static_cast<int32_t>(offsetof(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D, ___editorCount_16)); }
inline int32_t get_editorCount_16() const { return ___editorCount_16; }
inline int32_t* get_address_of_editorCount_16() { return &___editorCount_16; }
inline void set_editorCount_16(int32_t value)
{
___editorCount_16 = value;
}
};
// System.ComponentModel.PropertyTabAttribute
struct PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.ComponentModel.PropertyTabScope[] System.ComponentModel.PropertyTabAttribute::tabScopes
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* ___tabScopes_0;
// System.Type[] System.ComponentModel.PropertyTabAttribute::tabClasses
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___tabClasses_1;
// System.String[] System.ComponentModel.PropertyTabAttribute::tabClassNames
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___tabClassNames_2;
public:
inline static int32_t get_offset_of_tabScopes_0() { return static_cast<int32_t>(offsetof(PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8, ___tabScopes_0)); }
inline PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* get_tabScopes_0() const { return ___tabScopes_0; }
inline PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260** get_address_of_tabScopes_0() { return &___tabScopes_0; }
inline void set_tabScopes_0(PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* value)
{
___tabScopes_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___tabScopes_0), (void*)value);
}
inline static int32_t get_offset_of_tabClasses_1() { return static_cast<int32_t>(offsetof(PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8, ___tabClasses_1)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_tabClasses_1() const { return ___tabClasses_1; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_tabClasses_1() { return &___tabClasses_1; }
inline void set_tabClasses_1(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___tabClasses_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___tabClasses_1), (void*)value);
}
inline static int32_t get_offset_of_tabClassNames_2() { return static_cast<int32_t>(offsetof(PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8, ___tabClassNames_2)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_tabClassNames_2() const { return ___tabClassNames_2; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_tabClassNames_2() { return &___tabClassNames_2; }
inline void set_tabClassNames_2(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___tabClassNames_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___tabClassNames_2), (void*)value);
}
};
// System.ComponentModel.ProvidePropertyAttribute
struct ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.ComponentModel.ProvidePropertyAttribute::propertyName
String_t* ___propertyName_0;
// System.String System.ComponentModel.ProvidePropertyAttribute::receiverTypeName
String_t* ___receiverTypeName_1;
public:
inline static int32_t get_offset_of_propertyName_0() { return static_cast<int32_t>(offsetof(ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3, ___propertyName_0)); }
inline String_t* get_propertyName_0() const { return ___propertyName_0; }
inline String_t** get_address_of_propertyName_0() { return &___propertyName_0; }
inline void set_propertyName_0(String_t* value)
{
___propertyName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___propertyName_0), (void*)value);
}
inline static int32_t get_offset_of_receiverTypeName_1() { return static_cast<int32_t>(offsetof(ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3, ___receiverTypeName_1)); }
inline String_t* get_receiverTypeName_1() const { return ___receiverTypeName_1; }
inline String_t** get_address_of_receiverTypeName_1() { return &___receiverTypeName_1; }
inline void set_receiverTypeName_1(String_t* value)
{
___receiverTypeName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___receiverTypeName_1), (void*)value);
}
};
// System.ComponentModel.ReadOnlyAttribute
struct ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Boolean System.ComponentModel.ReadOnlyAttribute::isReadOnly
bool ___isReadOnly_0;
public:
inline static int32_t get_offset_of_isReadOnly_0() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B, ___isReadOnly_0)); }
inline bool get_isReadOnly_0() const { return ___isReadOnly_0; }
inline bool* get_address_of_isReadOnly_0() { return &___isReadOnly_0; }
inline void set_isReadOnly_0(bool value)
{
___isReadOnly_0 = value;
}
};
struct ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields
{
public:
// System.ComponentModel.ReadOnlyAttribute System.ComponentModel.ReadOnlyAttribute::Yes
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * ___Yes_1;
// System.ComponentModel.ReadOnlyAttribute System.ComponentModel.ReadOnlyAttribute::No
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * ___No_2;
// System.ComponentModel.ReadOnlyAttribute System.ComponentModel.ReadOnlyAttribute::Default
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * ___Default_3;
public:
inline static int32_t get_offset_of_Yes_1() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields, ___Yes_1)); }
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * get_Yes_1() const { return ___Yes_1; }
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B ** get_address_of_Yes_1() { return &___Yes_1; }
inline void set_Yes_1(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * value)
{
___Yes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Yes_1), (void*)value);
}
inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields, ___No_2)); }
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * get_No_2() const { return ___No_2; }
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B ** get_address_of_No_2() { return &___No_2; }
inline void set_No_2(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * value)
{
___No_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___No_2), (void*)value);
}
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields, ___Default_3)); }
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * get_Default_3() const { return ___Default_3; }
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B ** get_address_of_Default_3() { return &___Default_3; }
inline void set_Default_3(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * value)
{
___Default_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
}
};
// System.ComponentModel.RecommendedAsConfigurableAttribute
struct RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Boolean System.ComponentModel.RecommendedAsConfigurableAttribute::recommendedAsConfigurable
bool ___recommendedAsConfigurable_0;
public:
inline static int32_t get_offset_of_recommendedAsConfigurable_0() { return static_cast<int32_t>(offsetof(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55, ___recommendedAsConfigurable_0)); }
inline bool get_recommendedAsConfigurable_0() const { return ___recommendedAsConfigurable_0; }
inline bool* get_address_of_recommendedAsConfigurable_0() { return &___recommendedAsConfigurable_0; }
inline void set_recommendedAsConfigurable_0(bool value)
{
___recommendedAsConfigurable_0 = value;
}
};
struct RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_StaticFields
{
public:
// System.ComponentModel.RecommendedAsConfigurableAttribute System.ComponentModel.RecommendedAsConfigurableAttribute::No
RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * ___No_1;
// System.ComponentModel.RecommendedAsConfigurableAttribute System.ComponentModel.RecommendedAsConfigurableAttribute::Yes
RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * ___Yes_2;
// System.ComponentModel.RecommendedAsConfigurableAttribute System.ComponentModel.RecommendedAsConfigurableAttribute::Default
RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * ___Default_3;
public:
inline static int32_t get_offset_of_No_1() { return static_cast<int32_t>(offsetof(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_StaticFields, ___No_1)); }
inline RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * get_No_1() const { return ___No_1; }
inline RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 ** get_address_of_No_1() { return &___No_1; }
inline void set_No_1(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * value)
{
___No_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___No_1), (void*)value);
}
inline static int32_t get_offset_of_Yes_2() { return static_cast<int32_t>(offsetof(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_StaticFields, ___Yes_2)); }
inline RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * get_Yes_2() const { return ___Yes_2; }
inline RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 ** get_address_of_Yes_2() { return &___Yes_2; }
inline void set_Yes_2(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * value)
{
___Yes_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Yes_2), (void*)value);
}
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_StaticFields, ___Default_3)); }
inline RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * get_Default_3() const { return ___Default_3; }
inline RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 ** get_address_of_Default_3() { return &___Default_3; }
inline void set_Default_3(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * value)
{
___Default_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
}
};
// System.ComponentModel.RefreshEventArgs
struct RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
{
public:
// System.Object System.ComponentModel.RefreshEventArgs::componentChanged
RuntimeObject * ___componentChanged_1;
// System.Type System.ComponentModel.RefreshEventArgs::typeChanged
Type_t * ___typeChanged_2;
public:
inline static int32_t get_offset_of_componentChanged_1() { return static_cast<int32_t>(offsetof(RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650, ___componentChanged_1)); }
inline RuntimeObject * get_componentChanged_1() const { return ___componentChanged_1; }
inline RuntimeObject ** get_address_of_componentChanged_1() { return &___componentChanged_1; }
inline void set_componentChanged_1(RuntimeObject * value)
{
___componentChanged_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___componentChanged_1), (void*)value);
}
inline static int32_t get_offset_of_typeChanged_2() { return static_cast<int32_t>(offsetof(RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650, ___typeChanged_2)); }
inline Type_t * get_typeChanged_2() const { return ___typeChanged_2; }
inline Type_t ** get_address_of_typeChanged_2() { return &___typeChanged_2; }
inline void set_typeChanged_2(Type_t * value)
{
___typeChanged_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeChanged_2), (void*)value);
}
};
// System.ComponentModel.RunInstallerAttribute
struct RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Boolean System.ComponentModel.RunInstallerAttribute::runInstaller
bool ___runInstaller_0;
public:
inline static int32_t get_offset_of_runInstaller_0() { return static_cast<int32_t>(offsetof(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3, ___runInstaller_0)); }
inline bool get_runInstaller_0() const { return ___runInstaller_0; }
inline bool* get_address_of_runInstaller_0() { return &___runInstaller_0; }
inline void set_runInstaller_0(bool value)
{
___runInstaller_0 = value;
}
};
struct RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_StaticFields
{
public:
// System.ComponentModel.RunInstallerAttribute System.ComponentModel.RunInstallerAttribute::Yes
RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * ___Yes_1;
// System.ComponentModel.RunInstallerAttribute System.ComponentModel.RunInstallerAttribute::No
RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * ___No_2;
// System.ComponentModel.RunInstallerAttribute System.ComponentModel.RunInstallerAttribute::Default
RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * ___Default_3;
public:
inline static int32_t get_offset_of_Yes_1() { return static_cast<int32_t>(offsetof(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_StaticFields, ___Yes_1)); }
inline RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * get_Yes_1() const { return ___Yes_1; }
inline RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 ** get_address_of_Yes_1() { return &___Yes_1; }
inline void set_Yes_1(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * value)
{
___Yes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Yes_1), (void*)value);
}
inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_StaticFields, ___No_2)); }
inline RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * get_No_2() const { return ___No_2; }
inline RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 ** get_address_of_No_2() { return &___No_2; }
inline void set_No_2(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * value)
{
___No_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___No_2), (void*)value);
}
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_StaticFields, ___Default_3)); }
inline RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * get_Default_3() const { return ___Default_3; }
inline RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 ** get_address_of_Default_3() { return &___Default_3; }
inline void set_Default_3(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * value)
{
___Default_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
}
};
// System.ComponentModel.SettingsBindableAttribute
struct SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Boolean System.ComponentModel.SettingsBindableAttribute::_bindable
bool ____bindable_2;
public:
inline static int32_t get_offset_of__bindable_2() { return static_cast<int32_t>(offsetof(SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664, ____bindable_2)); }
inline bool get__bindable_2() const { return ____bindable_2; }
inline bool* get_address_of__bindable_2() { return &____bindable_2; }
inline void set__bindable_2(bool value)
{
____bindable_2 = value;
}
};
struct SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_StaticFields
{
public:
// System.ComponentModel.SettingsBindableAttribute System.ComponentModel.SettingsBindableAttribute::Yes
SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * ___Yes_0;
// System.ComponentModel.SettingsBindableAttribute System.ComponentModel.SettingsBindableAttribute::No
SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * ___No_1;
public:
inline static int32_t get_offset_of_Yes_0() { return static_cast<int32_t>(offsetof(SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_StaticFields, ___Yes_0)); }
inline SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * get_Yes_0() const { return ___Yes_0; }
inline SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 ** get_address_of_Yes_0() { return &___Yes_0; }
inline void set_Yes_0(SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * value)
{
___Yes_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Yes_0), (void*)value);
}
inline static int32_t get_offset_of_No_1() { return static_cast<int32_t>(offsetof(SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_StaticFields, ___No_1)); }
inline SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * get_No_1() const { return ___No_1; }
inline SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 ** get_address_of_No_1() { return &___No_1; }
inline void set_No_1(SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * value)
{
___No_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___No_1), (void*)value);
}
};
// System.ComponentModel.ToolboxItemAttribute
struct ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Type System.ComponentModel.ToolboxItemAttribute::toolboxItemType
Type_t * ___toolboxItemType_0;
// System.String System.ComponentModel.ToolboxItemAttribute::toolboxItemTypeName
String_t* ___toolboxItemTypeName_1;
public:
inline static int32_t get_offset_of_toolboxItemType_0() { return static_cast<int32_t>(offsetof(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C, ___toolboxItemType_0)); }
inline Type_t * get_toolboxItemType_0() const { return ___toolboxItemType_0; }
inline Type_t ** get_address_of_toolboxItemType_0() { return &___toolboxItemType_0; }
inline void set_toolboxItemType_0(Type_t * value)
{
___toolboxItemType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___toolboxItemType_0), (void*)value);
}
inline static int32_t get_offset_of_toolboxItemTypeName_1() { return static_cast<int32_t>(offsetof(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C, ___toolboxItemTypeName_1)); }
inline String_t* get_toolboxItemTypeName_1() const { return ___toolboxItemTypeName_1; }
inline String_t** get_address_of_toolboxItemTypeName_1() { return &___toolboxItemTypeName_1; }
inline void set_toolboxItemTypeName_1(String_t* value)
{
___toolboxItemTypeName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___toolboxItemTypeName_1), (void*)value);
}
};
struct ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_StaticFields
{
public:
// System.ComponentModel.ToolboxItemAttribute System.ComponentModel.ToolboxItemAttribute::Default
ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * ___Default_2;
// System.ComponentModel.ToolboxItemAttribute System.ComponentModel.ToolboxItemAttribute::None
ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * ___None_3;
public:
inline static int32_t get_offset_of_Default_2() { return static_cast<int32_t>(offsetof(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_StaticFields, ___Default_2)); }
inline ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * get_Default_2() const { return ___Default_2; }
inline ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C ** get_address_of_Default_2() { return &___Default_2; }
inline void set_Default_2(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * value)
{
___Default_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_2), (void*)value);
}
inline static int32_t get_offset_of_None_3() { return static_cast<int32_t>(offsetof(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_StaticFields, ___None_3)); }
inline ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * get_None_3() const { return ___None_3; }
inline ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C ** get_address_of_None_3() { return &___None_3; }
inline void set_None_3(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * value)
{
___None_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___None_3), (void*)value);
}
};
// System.ComponentModel.TypeConverterAttribute
struct TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.ComponentModel.TypeConverterAttribute::typeName
String_t* ___typeName_0;
public:
inline static int32_t get_offset_of_typeName_0() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8, ___typeName_0)); }
inline String_t* get_typeName_0() const { return ___typeName_0; }
inline String_t** get_address_of_typeName_0() { return &___typeName_0; }
inline void set_typeName_0(String_t* value)
{
___typeName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeName_0), (void*)value);
}
};
struct TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_StaticFields
{
public:
// System.ComponentModel.TypeConverterAttribute System.ComponentModel.TypeConverterAttribute::Default
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * ___Default_1;
public:
inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_StaticFields, ___Default_1)); }
inline TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * get_Default_1() const { return ___Default_1; }
inline TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 ** get_address_of_Default_1() { return &___Default_1; }
inline void set_Default_1(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * value)
{
___Default_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value);
}
};
// System.ComponentModel.TypeDescriptionProvider_EmptyCustomTypeDescriptor
struct EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 : public CustomTypeDescriptor_tF8665CD45DFFA622F7EB328A2F77067DD2147689
{
public:
public:
};
// System.ComponentModel.TypeDescriptionProviderAttribute
struct TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.ComponentModel.TypeDescriptionProviderAttribute::_typeName
String_t* ____typeName_0;
public:
inline static int32_t get_offset_of__typeName_0() { return static_cast<int32_t>(offsetof(TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034, ____typeName_0)); }
inline String_t* get__typeName_0() const { return ____typeName_0; }
inline String_t** get_address_of__typeName_0() { return &____typeName_0; }
inline void set__typeName_0(String_t* value)
{
____typeName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____typeName_0), (void*)value);
}
};
// System.ComponentModel.TypeDescriptor_AttributeProvider
struct AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF : public TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591
{
public:
// System.Attribute[] System.ComponentModel.TypeDescriptor_AttributeProvider::_attrs
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ____attrs_2;
public:
inline static int32_t get_offset_of__attrs_2() { return static_cast<int32_t>(offsetof(AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF, ____attrs_2)); }
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* get__attrs_2() const { return ____attrs_2; }
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17** get_address_of__attrs_2() { return &____attrs_2; }
inline void set__attrs_2(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* value)
{
____attrs_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____attrs_2), (void*)value);
}
};
// System.ComponentModel.TypeDescriptor_ComNativeDescriptionProvider
struct ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D : public TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591
{
public:
// System.ComponentModel.IComNativeDescriptorHandler System.ComponentModel.TypeDescriptor_ComNativeDescriptionProvider::_handler
RuntimeObject* ____handler_2;
public:
inline static int32_t get_offset_of__handler_2() { return static_cast<int32_t>(offsetof(ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D, ____handler_2)); }
inline RuntimeObject* get__handler_2() const { return ____handler_2; }
inline RuntimeObject** get_address_of__handler_2() { return &____handler_2; }
inline void set__handler_2(RuntimeObject* value)
{
____handler_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____handler_2), (void*)value);
}
};
// System.ComponentModel.TypeDescriptor_TypeDescriptionNode
struct TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 : public TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591
{
public:
// System.ComponentModel.TypeDescriptor_TypeDescriptionNode System.ComponentModel.TypeDescriptor_TypeDescriptionNode::Next
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * ___Next_2;
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor_TypeDescriptionNode::Provider
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___Provider_3;
public:
inline static int32_t get_offset_of_Next_2() { return static_cast<int32_t>(offsetof(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1, ___Next_2)); }
inline TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * get_Next_2() const { return ___Next_2; }
inline TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 ** get_address_of_Next_2() { return &___Next_2; }
inline void set_Next_2(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * value)
{
___Next_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Next_2), (void*)value);
}
inline static int32_t get_offset_of_Provider_3() { return static_cast<int32_t>(offsetof(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1, ___Provider_3)); }
inline TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * get_Provider_3() const { return ___Provider_3; }
inline TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 ** get_address_of_Provider_3() { return &___Provider_3; }
inline void set_Provider_3(TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * value)
{
___Provider_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Provider_3), (void*)value);
}
};
// System.Diagnostics.BooleanSwitch
struct BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 : public Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F
{
public:
public:
};
// System.Diagnostics.TraceSwitch
struct TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 : public Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F
{
public:
public:
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.Reflection.EventInfo
struct EventInfo_t : public MemberInfo_t
{
public:
// System.Reflection.EventInfo_AddEventAdapter System.Reflection.EventInfo::cached_add_event
AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * ___cached_add_event_0;
public:
inline static int32_t get_offset_of_cached_add_event_0() { return static_cast<int32_t>(offsetof(EventInfo_t, ___cached_add_event_0)); }
inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * get_cached_add_event_0() const { return ___cached_add_event_0; }
inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B ** get_address_of_cached_add_event_0() { return &___cached_add_event_0; }
inline void set_cached_add_event_0(AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * value)
{
___cached_add_event_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cached_add_event_0), (void*)value);
}
};
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
public:
public:
};
// System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0;
public:
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; }
inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
____byRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com
{
int32_t* ____byRef_0;
};
// System.Reflection.PropertyInfo
struct PropertyInfo_t : public MemberInfo_t
{
public:
public:
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = value;
}
};
// System.SByte
struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF
{
public:
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); }
inline int8_t get_m_value_0() const { return ___m_value_0; }
inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int8_t value)
{
___m_value_0 = value;
}
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// System.Collections.Hashtable
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 : public RuntimeObject
{
public:
// System.Collections.Hashtable_bucket[] System.Collections.Hashtable::buckets
bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* ___buckets_10;
// System.Int32 System.Collections.Hashtable::count
int32_t ___count_11;
// System.Int32 System.Collections.Hashtable::occupancy
int32_t ___occupancy_12;
// System.Int32 System.Collections.Hashtable::loadsize
int32_t ___loadsize_13;
// System.Single System.Collections.Hashtable::loadFactor
float ___loadFactor_14;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::version
int32_t ___version_15;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::isWriterInProgress
bool ___isWriterInProgress_16;
// System.Collections.ICollection System.Collections.Hashtable::keys
RuntimeObject* ___keys_17;
// System.Collections.ICollection System.Collections.Hashtable::values
RuntimeObject* ___values_18;
// System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer
RuntimeObject* ____keycomparer_19;
// System.Object System.Collections.Hashtable::_syncRoot
RuntimeObject * ____syncRoot_20;
public:
inline static int32_t get_offset_of_buckets_10() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___buckets_10)); }
inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* get_buckets_10() const { return ___buckets_10; }
inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A** get_address_of_buckets_10() { return &___buckets_10; }
inline void set_buckets_10(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* value)
{
___buckets_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_10), (void*)value);
}
inline static int32_t get_offset_of_count_11() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___count_11)); }
inline int32_t get_count_11() const { return ___count_11; }
inline int32_t* get_address_of_count_11() { return &___count_11; }
inline void set_count_11(int32_t value)
{
___count_11 = value;
}
inline static int32_t get_offset_of_occupancy_12() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___occupancy_12)); }
inline int32_t get_occupancy_12() const { return ___occupancy_12; }
inline int32_t* get_address_of_occupancy_12() { return &___occupancy_12; }
inline void set_occupancy_12(int32_t value)
{
___occupancy_12 = value;
}
inline static int32_t get_offset_of_loadsize_13() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadsize_13)); }
inline int32_t get_loadsize_13() const { return ___loadsize_13; }
inline int32_t* get_address_of_loadsize_13() { return &___loadsize_13; }
inline void set_loadsize_13(int32_t value)
{
___loadsize_13 = value;
}
inline static int32_t get_offset_of_loadFactor_14() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadFactor_14)); }
inline float get_loadFactor_14() const { return ___loadFactor_14; }
inline float* get_address_of_loadFactor_14() { return &___loadFactor_14; }
inline void set_loadFactor_14(float value)
{
___loadFactor_14 = value;
}
inline static int32_t get_offset_of_version_15() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___version_15)); }
inline int32_t get_version_15() const { return ___version_15; }
inline int32_t* get_address_of_version_15() { return &___version_15; }
inline void set_version_15(int32_t value)
{
___version_15 = value;
}
inline static int32_t get_offset_of_isWriterInProgress_16() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___isWriterInProgress_16)); }
inline bool get_isWriterInProgress_16() const { return ___isWriterInProgress_16; }
inline bool* get_address_of_isWriterInProgress_16() { return &___isWriterInProgress_16; }
inline void set_isWriterInProgress_16(bool value)
{
___isWriterInProgress_16 = value;
}
inline static int32_t get_offset_of_keys_17() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___keys_17)); }
inline RuntimeObject* get_keys_17() const { return ___keys_17; }
inline RuntimeObject** get_address_of_keys_17() { return &___keys_17; }
inline void set_keys_17(RuntimeObject* value)
{
___keys_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_17), (void*)value);
}
inline static int32_t get_offset_of_values_18() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___values_18)); }
inline RuntimeObject* get_values_18() const { return ___values_18; }
inline RuntimeObject** get_address_of_values_18() { return &___values_18; }
inline void set_values_18(RuntimeObject* value)
{
___values_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_18), (void*)value);
}
inline static int32_t get_offset_of__keycomparer_19() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____keycomparer_19)); }
inline RuntimeObject* get__keycomparer_19() const { return ____keycomparer_19; }
inline RuntimeObject** get_address_of__keycomparer_19() { return &____keycomparer_19; }
inline void set__keycomparer_19(RuntimeObject* value)
{
____keycomparer_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&____keycomparer_19), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_20() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____syncRoot_20)); }
inline RuntimeObject * get__syncRoot_20() const { return ____syncRoot_20; }
inline RuntimeObject ** get_address_of__syncRoot_20() { return &____syncRoot_20; }
inline void set__syncRoot_20(RuntimeObject * value)
{
____syncRoot_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_20), (void*)value);
}
};
// System.ComponentModel.DesignerSerializationVisibility
struct DesignerSerializationVisibility_tCD99EB7FAAE0F69CABCFCE53E16C39DDCB2FFC5A
{
public:
// System.Int32 System.ComponentModel.DesignerSerializationVisibility::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibility_tCD99EB7FAAE0F69CABCFCE53E16C39DDCB2FFC5A, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.ComponentModel.ExtendedPropertyDescriptor
struct ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 : public PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D
{
public:
// System.ComponentModel.ReflectPropertyDescriptor System.ComponentModel.ExtendedPropertyDescriptor::extenderInfo
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * ___extenderInfo_17;
// System.ComponentModel.IExtenderProvider System.ComponentModel.ExtendedPropertyDescriptor::provider
RuntimeObject* ___provider_18;
public:
inline static int32_t get_offset_of_extenderInfo_17() { return static_cast<int32_t>(offsetof(ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6, ___extenderInfo_17)); }
inline ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * get_extenderInfo_17() const { return ___extenderInfo_17; }
inline ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E ** get_address_of_extenderInfo_17() { return &___extenderInfo_17; }
inline void set_extenderInfo_17(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * value)
{
___extenderInfo_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___extenderInfo_17), (void*)value);
}
inline static int32_t get_offset_of_provider_18() { return static_cast<int32_t>(offsetof(ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6, ___provider_18)); }
inline RuntimeObject* get_provider_18() const { return ___provider_18; }
inline RuntimeObject** get_address_of_provider_18() { return &___provider_18; }
inline void set_provider_18(RuntimeObject* value)
{
___provider_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___provider_18), (void*)value);
}
};
// System.ComponentModel.PropertyTabScope
struct PropertyTabScope_t7A2ECEC4F4367AC32D472E9B17F35F5F7C0D1836
{
public:
// System.Int32 System.ComponentModel.PropertyTabScope::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PropertyTabScope_t7A2ECEC4F4367AC32D472E9B17F35F5F7C0D1836, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.ComponentModel.ReflectEventDescriptor
struct ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 : public EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222
{
public:
// System.Type System.ComponentModel.ReflectEventDescriptor::type
Type_t * ___type_12;
// System.Type System.ComponentModel.ReflectEventDescriptor::componentClass
Type_t * ___componentClass_13;
// System.Reflection.MethodInfo System.ComponentModel.ReflectEventDescriptor::addMethod
MethodInfo_t * ___addMethod_14;
// System.Reflection.MethodInfo System.ComponentModel.ReflectEventDescriptor::removeMethod
MethodInfo_t * ___removeMethod_15;
// System.Reflection.EventInfo System.ComponentModel.ReflectEventDescriptor::realEvent
EventInfo_t * ___realEvent_16;
// System.Boolean System.ComponentModel.ReflectEventDescriptor::filledMethods
bool ___filledMethods_17;
public:
inline static int32_t get_offset_of_type_12() { return static_cast<int32_t>(offsetof(ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360, ___type_12)); }
inline Type_t * get_type_12() const { return ___type_12; }
inline Type_t ** get_address_of_type_12() { return &___type_12; }
inline void set_type_12(Type_t * value)
{
___type_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_12), (void*)value);
}
inline static int32_t get_offset_of_componentClass_13() { return static_cast<int32_t>(offsetof(ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360, ___componentClass_13)); }
inline Type_t * get_componentClass_13() const { return ___componentClass_13; }
inline Type_t ** get_address_of_componentClass_13() { return &___componentClass_13; }
inline void set_componentClass_13(Type_t * value)
{
___componentClass_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___componentClass_13), (void*)value);
}
inline static int32_t get_offset_of_addMethod_14() { return static_cast<int32_t>(offsetof(ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360, ___addMethod_14)); }
inline MethodInfo_t * get_addMethod_14() const { return ___addMethod_14; }
inline MethodInfo_t ** get_address_of_addMethod_14() { return &___addMethod_14; }
inline void set_addMethod_14(MethodInfo_t * value)
{
___addMethod_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___addMethod_14), (void*)value);
}
inline static int32_t get_offset_of_removeMethod_15() { return static_cast<int32_t>(offsetof(ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360, ___removeMethod_15)); }
inline MethodInfo_t * get_removeMethod_15() const { return ___removeMethod_15; }
inline MethodInfo_t ** get_address_of_removeMethod_15() { return &___removeMethod_15; }
inline void set_removeMethod_15(MethodInfo_t * value)
{
___removeMethod_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___removeMethod_15), (void*)value);
}
inline static int32_t get_offset_of_realEvent_16() { return static_cast<int32_t>(offsetof(ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360, ___realEvent_16)); }
inline EventInfo_t * get_realEvent_16() const { return ___realEvent_16; }
inline EventInfo_t ** get_address_of_realEvent_16() { return &___realEvent_16; }
inline void set_realEvent_16(EventInfo_t * value)
{
___realEvent_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___realEvent_16), (void*)value);
}
inline static int32_t get_offset_of_filledMethods_17() { return static_cast<int32_t>(offsetof(ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360, ___filledMethods_17)); }
inline bool get_filledMethods_17() const { return ___filledMethods_17; }
inline bool* get_address_of_filledMethods_17() { return &___filledMethods_17; }
inline void set_filledMethods_17(bool value)
{
___filledMethods_17 = value;
}
};
// System.ComponentModel.ReflectPropertyDescriptor
struct ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E : public PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D
{
public:
// System.Collections.Specialized.BitVector32 System.ComponentModel.ReflectPropertyDescriptor::state
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 ___state_31;
// System.Type System.ComponentModel.ReflectPropertyDescriptor::componentClass
Type_t * ___componentClass_32;
// System.Type System.ComponentModel.ReflectPropertyDescriptor::type
Type_t * ___type_33;
// System.Object System.ComponentModel.ReflectPropertyDescriptor::defaultValue
RuntimeObject * ___defaultValue_34;
// System.Object System.ComponentModel.ReflectPropertyDescriptor::ambientValue
RuntimeObject * ___ambientValue_35;
// System.Reflection.PropertyInfo System.ComponentModel.ReflectPropertyDescriptor::propInfo
PropertyInfo_t * ___propInfo_36;
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::getMethod
MethodInfo_t * ___getMethod_37;
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::setMethod
MethodInfo_t * ___setMethod_38;
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::shouldSerializeMethod
MethodInfo_t * ___shouldSerializeMethod_39;
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::resetMethod
MethodInfo_t * ___resetMethod_40;
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectPropertyDescriptor::realChangedEvent
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___realChangedEvent_41;
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectPropertyDescriptor::realIPropChangedEvent
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___realIPropChangedEvent_42;
// System.Type System.ComponentModel.ReflectPropertyDescriptor::receiverType
Type_t * ___receiverType_43;
public:
inline static int32_t get_offset_of_state_31() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___state_31)); }
inline BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 get_state_31() const { return ___state_31; }
inline BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * get_address_of_state_31() { return &___state_31; }
inline void set_state_31(BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 value)
{
___state_31 = value;
}
inline static int32_t get_offset_of_componentClass_32() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___componentClass_32)); }
inline Type_t * get_componentClass_32() const { return ___componentClass_32; }
inline Type_t ** get_address_of_componentClass_32() { return &___componentClass_32; }
inline void set_componentClass_32(Type_t * value)
{
___componentClass_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___componentClass_32), (void*)value);
}
inline static int32_t get_offset_of_type_33() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___type_33)); }
inline Type_t * get_type_33() const { return ___type_33; }
inline Type_t ** get_address_of_type_33() { return &___type_33; }
inline void set_type_33(Type_t * value)
{
___type_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_33), (void*)value);
}
inline static int32_t get_offset_of_defaultValue_34() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___defaultValue_34)); }
inline RuntimeObject * get_defaultValue_34() const { return ___defaultValue_34; }
inline RuntimeObject ** get_address_of_defaultValue_34() { return &___defaultValue_34; }
inline void set_defaultValue_34(RuntimeObject * value)
{
___defaultValue_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultValue_34), (void*)value);
}
inline static int32_t get_offset_of_ambientValue_35() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___ambientValue_35)); }
inline RuntimeObject * get_ambientValue_35() const { return ___ambientValue_35; }
inline RuntimeObject ** get_address_of_ambientValue_35() { return &___ambientValue_35; }
inline void set_ambientValue_35(RuntimeObject * value)
{
___ambientValue_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ambientValue_35), (void*)value);
}
inline static int32_t get_offset_of_propInfo_36() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___propInfo_36)); }
inline PropertyInfo_t * get_propInfo_36() const { return ___propInfo_36; }
inline PropertyInfo_t ** get_address_of_propInfo_36() { return &___propInfo_36; }
inline void set_propInfo_36(PropertyInfo_t * value)
{
___propInfo_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___propInfo_36), (void*)value);
}
inline static int32_t get_offset_of_getMethod_37() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___getMethod_37)); }
inline MethodInfo_t * get_getMethod_37() const { return ___getMethod_37; }
inline MethodInfo_t ** get_address_of_getMethod_37() { return &___getMethod_37; }
inline void set_getMethod_37(MethodInfo_t * value)
{
___getMethod_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getMethod_37), (void*)value);
}
inline static int32_t get_offset_of_setMethod_38() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___setMethod_38)); }
inline MethodInfo_t * get_setMethod_38() const { return ___setMethod_38; }
inline MethodInfo_t ** get_address_of_setMethod_38() { return &___setMethod_38; }
inline void set_setMethod_38(MethodInfo_t * value)
{
___setMethod_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___setMethod_38), (void*)value);
}
inline static int32_t get_offset_of_shouldSerializeMethod_39() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___shouldSerializeMethod_39)); }
inline MethodInfo_t * get_shouldSerializeMethod_39() const { return ___shouldSerializeMethod_39; }
inline MethodInfo_t ** get_address_of_shouldSerializeMethod_39() { return &___shouldSerializeMethod_39; }
inline void set_shouldSerializeMethod_39(MethodInfo_t * value)
{
___shouldSerializeMethod_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shouldSerializeMethod_39), (void*)value);
}
inline static int32_t get_offset_of_resetMethod_40() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___resetMethod_40)); }
inline MethodInfo_t * get_resetMethod_40() const { return ___resetMethod_40; }
inline MethodInfo_t ** get_address_of_resetMethod_40() { return &___resetMethod_40; }
inline void set_resetMethod_40(MethodInfo_t * value)
{
___resetMethod_40 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resetMethod_40), (void*)value);
}
inline static int32_t get_offset_of_realChangedEvent_41() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___realChangedEvent_41)); }
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * get_realChangedEvent_41() const { return ___realChangedEvent_41; }
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 ** get_address_of_realChangedEvent_41() { return &___realChangedEvent_41; }
inline void set_realChangedEvent_41(EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * value)
{
___realChangedEvent_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&___realChangedEvent_41), (void*)value);
}
inline static int32_t get_offset_of_realIPropChangedEvent_42() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___realIPropChangedEvent_42)); }
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * get_realIPropChangedEvent_42() const { return ___realIPropChangedEvent_42; }
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 ** get_address_of_realIPropChangedEvent_42() { return &___realIPropChangedEvent_42; }
inline void set_realIPropChangedEvent_42(EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * value)
{
___realIPropChangedEvent_42 = value;
Il2CppCodeGenWriteBarrier((void**)(&___realIPropChangedEvent_42), (void*)value);
}
inline static int32_t get_offset_of_receiverType_43() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___receiverType_43)); }
inline Type_t * get_receiverType_43() const { return ___receiverType_43; }
inline Type_t ** get_address_of_receiverType_43() { return &___receiverType_43; }
inline void set_receiverType_43(Type_t * value)
{
___receiverType_43 = value;
Il2CppCodeGenWriteBarrier((void**)(&___receiverType_43), (void*)value);
}
};
struct ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields
{
public:
// System.Type[] System.ComponentModel.ReflectPropertyDescriptor::argsNone
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___argsNone_17;
// System.Object System.ComponentModel.ReflectPropertyDescriptor::noValue
RuntimeObject * ___noValue_18;
// System.Diagnostics.TraceSwitch System.ComponentModel.ReflectPropertyDescriptor::PropDescCreateSwitch
TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * ___PropDescCreateSwitch_19;
// System.Diagnostics.TraceSwitch System.ComponentModel.ReflectPropertyDescriptor::PropDescUsageSwitch
TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * ___PropDescUsageSwitch_20;
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitDefaultValueQueried
int32_t ___BitDefaultValueQueried_21;
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitGetQueried
int32_t ___BitGetQueried_22;
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitSetQueried
int32_t ___BitSetQueried_23;
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitShouldSerializeQueried
int32_t ___BitShouldSerializeQueried_24;
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitResetQueried
int32_t ___BitResetQueried_25;
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitChangedQueried
int32_t ___BitChangedQueried_26;
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitIPropChangedQueried
int32_t ___BitIPropChangedQueried_27;
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitReadOnlyChecked
int32_t ___BitReadOnlyChecked_28;
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitAmbientValueQueried
int32_t ___BitAmbientValueQueried_29;
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitSetOnDemand
int32_t ___BitSetOnDemand_30;
public:
inline static int32_t get_offset_of_argsNone_17() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___argsNone_17)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_argsNone_17() const { return ___argsNone_17; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_argsNone_17() { return &___argsNone_17; }
inline void set_argsNone_17(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___argsNone_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___argsNone_17), (void*)value);
}
inline static int32_t get_offset_of_noValue_18() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___noValue_18)); }
inline RuntimeObject * get_noValue_18() const { return ___noValue_18; }
inline RuntimeObject ** get_address_of_noValue_18() { return &___noValue_18; }
inline void set_noValue_18(RuntimeObject * value)
{
___noValue_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___noValue_18), (void*)value);
}
inline static int32_t get_offset_of_PropDescCreateSwitch_19() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___PropDescCreateSwitch_19)); }
inline TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * get_PropDescCreateSwitch_19() const { return ___PropDescCreateSwitch_19; }
inline TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 ** get_address_of_PropDescCreateSwitch_19() { return &___PropDescCreateSwitch_19; }
inline void set_PropDescCreateSwitch_19(TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * value)
{
___PropDescCreateSwitch_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PropDescCreateSwitch_19), (void*)value);
}
inline static int32_t get_offset_of_PropDescUsageSwitch_20() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___PropDescUsageSwitch_20)); }
inline TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * get_PropDescUsageSwitch_20() const { return ___PropDescUsageSwitch_20; }
inline TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 ** get_address_of_PropDescUsageSwitch_20() { return &___PropDescUsageSwitch_20; }
inline void set_PropDescUsageSwitch_20(TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * value)
{
___PropDescUsageSwitch_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PropDescUsageSwitch_20), (void*)value);
}
inline static int32_t get_offset_of_BitDefaultValueQueried_21() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitDefaultValueQueried_21)); }
inline int32_t get_BitDefaultValueQueried_21() const { return ___BitDefaultValueQueried_21; }
inline int32_t* get_address_of_BitDefaultValueQueried_21() { return &___BitDefaultValueQueried_21; }
inline void set_BitDefaultValueQueried_21(int32_t value)
{
___BitDefaultValueQueried_21 = value;
}
inline static int32_t get_offset_of_BitGetQueried_22() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitGetQueried_22)); }
inline int32_t get_BitGetQueried_22() const { return ___BitGetQueried_22; }
inline int32_t* get_address_of_BitGetQueried_22() { return &___BitGetQueried_22; }
inline void set_BitGetQueried_22(int32_t value)
{
___BitGetQueried_22 = value;
}
inline static int32_t get_offset_of_BitSetQueried_23() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitSetQueried_23)); }
inline int32_t get_BitSetQueried_23() const { return ___BitSetQueried_23; }
inline int32_t* get_address_of_BitSetQueried_23() { return &___BitSetQueried_23; }
inline void set_BitSetQueried_23(int32_t value)
{
___BitSetQueried_23 = value;
}
inline static int32_t get_offset_of_BitShouldSerializeQueried_24() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitShouldSerializeQueried_24)); }
inline int32_t get_BitShouldSerializeQueried_24() const { return ___BitShouldSerializeQueried_24; }
inline int32_t* get_address_of_BitShouldSerializeQueried_24() { return &___BitShouldSerializeQueried_24; }
inline void set_BitShouldSerializeQueried_24(int32_t value)
{
___BitShouldSerializeQueried_24 = value;
}
inline static int32_t get_offset_of_BitResetQueried_25() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitResetQueried_25)); }
inline int32_t get_BitResetQueried_25() const { return ___BitResetQueried_25; }
inline int32_t* get_address_of_BitResetQueried_25() { return &___BitResetQueried_25; }
inline void set_BitResetQueried_25(int32_t value)
{
___BitResetQueried_25 = value;
}
inline static int32_t get_offset_of_BitChangedQueried_26() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitChangedQueried_26)); }
inline int32_t get_BitChangedQueried_26() const { return ___BitChangedQueried_26; }
inline int32_t* get_address_of_BitChangedQueried_26() { return &___BitChangedQueried_26; }
inline void set_BitChangedQueried_26(int32_t value)
{
___BitChangedQueried_26 = value;
}
inline static int32_t get_offset_of_BitIPropChangedQueried_27() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitIPropChangedQueried_27)); }
inline int32_t get_BitIPropChangedQueried_27() const { return ___BitIPropChangedQueried_27; }
inline int32_t* get_address_of_BitIPropChangedQueried_27() { return &___BitIPropChangedQueried_27; }
inline void set_BitIPropChangedQueried_27(int32_t value)
{
___BitIPropChangedQueried_27 = value;
}
inline static int32_t get_offset_of_BitReadOnlyChecked_28() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitReadOnlyChecked_28)); }
inline int32_t get_BitReadOnlyChecked_28() const { return ___BitReadOnlyChecked_28; }
inline int32_t* get_address_of_BitReadOnlyChecked_28() { return &___BitReadOnlyChecked_28; }
inline void set_BitReadOnlyChecked_28(int32_t value)
{
___BitReadOnlyChecked_28 = value;
}
inline static int32_t get_offset_of_BitAmbientValueQueried_29() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitAmbientValueQueried_29)); }
inline int32_t get_BitAmbientValueQueried_29() const { return ___BitAmbientValueQueried_29; }
inline int32_t* get_address_of_BitAmbientValueQueried_29() { return &___BitAmbientValueQueried_29; }
inline void set_BitAmbientValueQueried_29(int32_t value)
{
___BitAmbientValueQueried_29 = value;
}
inline static int32_t get_offset_of_BitSetOnDemand_30() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitSetOnDemand_30)); }
inline int32_t get_BitSetOnDemand_30() const { return ___BitSetOnDemand_30; }
inline int32_t* get_address_of_BitSetOnDemand_30() { return &___BitSetOnDemand_30; }
inline void set_BitSetOnDemand_30(int32_t value)
{
___BitSetOnDemand_30 = value;
}
};
// System.ComponentModel.ReflectTypeDescriptionProvider
struct ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 : public TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591
{
public:
// System.Collections.Hashtable System.ComponentModel.ReflectTypeDescriptionProvider::_typeData
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____typeData_2;
public:
inline static int32_t get_offset_of__typeData_2() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675, ____typeData_2)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__typeData_2() const { return ____typeData_2; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__typeData_2() { return &____typeData_2; }
inline void set__typeData_2(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____typeData_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____typeData_2), (void*)value);
}
};
struct ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields
{
public:
// System.Type[] System.ComponentModel.ReflectTypeDescriptionProvider::_typeConstructor
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____typeConstructor_3;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.ReflectTypeDescriptionProvider::_editorTables
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____editorTables_4;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.ReflectTypeDescriptionProvider::_intrinsicTypeConverters
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____intrinsicTypeConverters_5;
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::_intrinsicReferenceKey
RuntimeObject * ____intrinsicReferenceKey_6;
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::_intrinsicNullableKey
RuntimeObject * ____intrinsicNullableKey_7;
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::_dictionaryKey
RuntimeObject * ____dictionaryKey_8;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.ReflectTypeDescriptionProvider::_propertyCache
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____propertyCache_9;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.ReflectTypeDescriptionProvider::_eventCache
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____eventCache_10;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.ReflectTypeDescriptionProvider::_attributeCache
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____attributeCache_11;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.ReflectTypeDescriptionProvider::_extendedPropertyCache
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____extendedPropertyCache_12;
// System.Guid System.ComponentModel.ReflectTypeDescriptionProvider::_extenderProviderKey
Guid_t ____extenderProviderKey_13;
// System.Guid System.ComponentModel.ReflectTypeDescriptionProvider::_extenderPropertiesKey
Guid_t ____extenderPropertiesKey_14;
// System.Guid System.ComponentModel.ReflectTypeDescriptionProvider::_extenderProviderPropertiesKey
Guid_t ____extenderProviderPropertiesKey_15;
// System.Type[] System.ComponentModel.ReflectTypeDescriptionProvider::_skipInterfaceAttributeList
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____skipInterfaceAttributeList_16;
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::_internalSyncObject
RuntimeObject * ____internalSyncObject_17;
public:
inline static int32_t get_offset_of__typeConstructor_3() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____typeConstructor_3)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__typeConstructor_3() const { return ____typeConstructor_3; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__typeConstructor_3() { return &____typeConstructor_3; }
inline void set__typeConstructor_3(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____typeConstructor_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____typeConstructor_3), (void*)value);
}
inline static int32_t get_offset_of__editorTables_4() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____editorTables_4)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__editorTables_4() const { return ____editorTables_4; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__editorTables_4() { return &____editorTables_4; }
inline void set__editorTables_4(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____editorTables_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____editorTables_4), (void*)value);
}
inline static int32_t get_offset_of__intrinsicTypeConverters_5() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____intrinsicTypeConverters_5)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__intrinsicTypeConverters_5() const { return ____intrinsicTypeConverters_5; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__intrinsicTypeConverters_5() { return &____intrinsicTypeConverters_5; }
inline void set__intrinsicTypeConverters_5(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____intrinsicTypeConverters_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____intrinsicTypeConverters_5), (void*)value);
}
inline static int32_t get_offset_of__intrinsicReferenceKey_6() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____intrinsicReferenceKey_6)); }
inline RuntimeObject * get__intrinsicReferenceKey_6() const { return ____intrinsicReferenceKey_6; }
inline RuntimeObject ** get_address_of__intrinsicReferenceKey_6() { return &____intrinsicReferenceKey_6; }
inline void set__intrinsicReferenceKey_6(RuntimeObject * value)
{
____intrinsicReferenceKey_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____intrinsicReferenceKey_6), (void*)value);
}
inline static int32_t get_offset_of__intrinsicNullableKey_7() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____intrinsicNullableKey_7)); }
inline RuntimeObject * get__intrinsicNullableKey_7() const { return ____intrinsicNullableKey_7; }
inline RuntimeObject ** get_address_of__intrinsicNullableKey_7() { return &____intrinsicNullableKey_7; }
inline void set__intrinsicNullableKey_7(RuntimeObject * value)
{
____intrinsicNullableKey_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____intrinsicNullableKey_7), (void*)value);
}
inline static int32_t get_offset_of__dictionaryKey_8() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____dictionaryKey_8)); }
inline RuntimeObject * get__dictionaryKey_8() const { return ____dictionaryKey_8; }
inline RuntimeObject ** get_address_of__dictionaryKey_8() { return &____dictionaryKey_8; }
inline void set__dictionaryKey_8(RuntimeObject * value)
{
____dictionaryKey_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dictionaryKey_8), (void*)value);
}
inline static int32_t get_offset_of__propertyCache_9() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____propertyCache_9)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__propertyCache_9() const { return ____propertyCache_9; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__propertyCache_9() { return &____propertyCache_9; }
inline void set__propertyCache_9(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____propertyCache_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____propertyCache_9), (void*)value);
}
inline static int32_t get_offset_of__eventCache_10() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____eventCache_10)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__eventCache_10() const { return ____eventCache_10; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__eventCache_10() { return &____eventCache_10; }
inline void set__eventCache_10(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____eventCache_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____eventCache_10), (void*)value);
}
inline static int32_t get_offset_of__attributeCache_11() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____attributeCache_11)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__attributeCache_11() const { return ____attributeCache_11; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__attributeCache_11() { return &____attributeCache_11; }
inline void set__attributeCache_11(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____attributeCache_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____attributeCache_11), (void*)value);
}
inline static int32_t get_offset_of__extendedPropertyCache_12() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____extendedPropertyCache_12)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__extendedPropertyCache_12() const { return ____extendedPropertyCache_12; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__extendedPropertyCache_12() { return &____extendedPropertyCache_12; }
inline void set__extendedPropertyCache_12(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____extendedPropertyCache_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____extendedPropertyCache_12), (void*)value);
}
inline static int32_t get_offset_of__extenderProviderKey_13() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____extenderProviderKey_13)); }
inline Guid_t get__extenderProviderKey_13() const { return ____extenderProviderKey_13; }
inline Guid_t * get_address_of__extenderProviderKey_13() { return &____extenderProviderKey_13; }
inline void set__extenderProviderKey_13(Guid_t value)
{
____extenderProviderKey_13 = value;
}
inline static int32_t get_offset_of__extenderPropertiesKey_14() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____extenderPropertiesKey_14)); }
inline Guid_t get__extenderPropertiesKey_14() const { return ____extenderPropertiesKey_14; }
inline Guid_t * get_address_of__extenderPropertiesKey_14() { return &____extenderPropertiesKey_14; }
inline void set__extenderPropertiesKey_14(Guid_t value)
{
____extenderPropertiesKey_14 = value;
}
inline static int32_t get_offset_of__extenderProviderPropertiesKey_15() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____extenderProviderPropertiesKey_15)); }
inline Guid_t get__extenderProviderPropertiesKey_15() const { return ____extenderProviderPropertiesKey_15; }
inline Guid_t * get_address_of__extenderProviderPropertiesKey_15() { return &____extenderProviderPropertiesKey_15; }
inline void set__extenderProviderPropertiesKey_15(Guid_t value)
{
____extenderProviderPropertiesKey_15 = value;
}
inline static int32_t get_offset_of__skipInterfaceAttributeList_16() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____skipInterfaceAttributeList_16)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__skipInterfaceAttributeList_16() const { return ____skipInterfaceAttributeList_16; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__skipInterfaceAttributeList_16() { return &____skipInterfaceAttributeList_16; }
inline void set__skipInterfaceAttributeList_16(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____skipInterfaceAttributeList_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____skipInterfaceAttributeList_16), (void*)value);
}
inline static int32_t get_offset_of__internalSyncObject_17() { return static_cast<int32_t>(offsetof(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields, ____internalSyncObject_17)); }
inline RuntimeObject * get__internalSyncObject_17() const { return ____internalSyncObject_17; }
inline RuntimeObject ** get_address_of__internalSyncObject_17() { return &____internalSyncObject_17; }
inline void set__internalSyncObject_17(RuntimeObject * value)
{
____internalSyncObject_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____internalSyncObject_17), (void*)value);
}
};
// System.ComponentModel.RefreshProperties
struct RefreshProperties_t1DCC9EF1AA18F3609AA7B68B33D19F22A8473788
{
public:
// System.Int32 System.ComponentModel.RefreshProperties::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RefreshProperties_t1DCC9EF1AA18F3609AA7B68B33D19F22A8473788, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.ComponentModel.RunWorkerCompletedEventArgs
struct RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D : public AsyncCompletedEventArgs_tADCBE47368F4D8B198B46D332B27EE38C8B5F8B7
{
public:
// System.Object System.ComponentModel.RunWorkerCompletedEventArgs::result
RuntimeObject * ___result_4;
public:
inline static int32_t get_offset_of_result_4() { return static_cast<int32_t>(offsetof(RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D, ___result_4)); }
inline RuntimeObject * get_result_4() const { return ___result_4; }
inline RuntimeObject ** get_address_of_result_4() { return &___result_4; }
inline void set_result_4(RuntimeObject * value)
{
___result_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___result_4), (void*)value);
}
};
// System.ComponentModel.SRCategoryAttribute
struct SRCategoryAttribute_t1C136A51E836D96E811610B3BB0ADFE784A7CF65 : public CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80
{
public:
public:
};
// System.ComponentModel.ToolboxItemFilterType
struct ToolboxItemFilterType_t55CD1A1F306F891450DFC2290FE851E94CC3B8C5
{
public:
// System.Int32 System.ComponentModel.ToolboxItemFilterType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ToolboxItemFilterType_t55CD1A1F306F891450DFC2290FE851E94CC3B8C5, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.ComponentModel.TypeConverter
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB : public RuntimeObject
{
public:
public:
};
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_StaticFields
{
public:
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeConverter::useCompatibleTypeConversion
bool ___useCompatibleTypeConversion_1;
public:
inline static int32_t get_offset_of_useCompatibleTypeConversion_1() { return static_cast<int32_t>(offsetof(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_StaticFields, ___useCompatibleTypeConversion_1)); }
inline bool get_useCompatibleTypeConversion_1() const { return ___useCompatibleTypeConversion_1; }
inline bool* get_address_of_useCompatibleTypeConversion_1() { return &___useCompatibleTypeConversion_1; }
inline void set_useCompatibleTypeConversion_1(bool value)
{
___useCompatibleTypeConversion_1 = value;
}
};
// System.ComponentModel.TypeConverter_SimplePropertyDescriptor
struct SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA : public PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D
{
public:
// System.Type System.ComponentModel.TypeConverter_SimplePropertyDescriptor::componentType
Type_t * ___componentType_17;
// System.Type System.ComponentModel.TypeConverter_SimplePropertyDescriptor::propertyType
Type_t * ___propertyType_18;
public:
inline static int32_t get_offset_of_componentType_17() { return static_cast<int32_t>(offsetof(SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA, ___componentType_17)); }
inline Type_t * get_componentType_17() const { return ___componentType_17; }
inline Type_t ** get_address_of_componentType_17() { return &___componentType_17; }
inline void set_componentType_17(Type_t * value)
{
___componentType_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___componentType_17), (void*)value);
}
inline static int32_t get_offset_of_propertyType_18() { return static_cast<int32_t>(offsetof(SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA, ___propertyType_18)); }
inline Type_t * get_propertyType_18() const { return ___propertyType_18; }
inline Type_t ** get_address_of_propertyType_18() { return &___propertyType_18; }
inline void set_propertyType_18(Type_t * value)
{
___propertyType_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___propertyType_18), (void*)value);
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.Globalization.NumberStyles
struct NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592
{
public:
// System.Int32 System.Globalization.NumberStyles::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.Assembly
struct Assembly_t : public RuntimeObject
{
public:
// System.IntPtr System.Reflection.Assembly::_mono_assembly
intptr_t ____mono_assembly_0;
// System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
// System.Object System.Reflection.Assembly::_evidence
RuntimeObject * ____evidence_2;
// System.Object System.Reflection.Assembly::_minimum
RuntimeObject * ____minimum_3;
// System.Object System.Reflection.Assembly::_optional
RuntimeObject * ____optional_4;
// System.Object System.Reflection.Assembly::_refuse
RuntimeObject * ____refuse_5;
// System.Object System.Reflection.Assembly::_granted
RuntimeObject * ____granted_6;
// System.Object System.Reflection.Assembly::_denied
RuntimeObject * ____denied_7;
// System.Boolean System.Reflection.Assembly::fromByteArray
bool ___fromByteArray_8;
// System.String System.Reflection.Assembly::assemblyName
String_t* ___assemblyName_9;
public:
inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); }
inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; }
inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; }
inline void set__mono_assembly_0(intptr_t value)
{
____mono_assembly_0 = value;
}
inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value)
{
___resolve_event_holder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value);
}
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
inline RuntimeObject * get__evidence_2() const { return ____evidence_2; }
inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; }
inline void set__evidence_2(RuntimeObject * value)
{
____evidence_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value);
}
inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); }
inline RuntimeObject * get__minimum_3() const { return ____minimum_3; }
inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; }
inline void set__minimum_3(RuntimeObject * value)
{
____minimum_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value);
}
inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); }
inline RuntimeObject * get__optional_4() const { return ____optional_4; }
inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; }
inline void set__optional_4(RuntimeObject * value)
{
____optional_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value);
}
inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); }
inline RuntimeObject * get__refuse_5() const { return ____refuse_5; }
inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; }
inline void set__refuse_5(RuntimeObject * value)
{
____refuse_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value);
}
inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); }
inline RuntimeObject * get__granted_6() const { return ____granted_6; }
inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; }
inline void set__granted_6(RuntimeObject * value)
{
____granted_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value);
}
inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); }
inline RuntimeObject * get__denied_7() const { return ____denied_7; }
inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; }
inline void set__denied_7(RuntimeObject * value)
{
____denied_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value);
}
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
inline void set_fromByteArray_8(bool value)
{
___fromByteArray_8 = value;
}
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
inline void set_assemblyName_9(String_t* value)
{
___assemblyName_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_pinvoke
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
char* ___assemblyName_9;
};
// Native definition for COM marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_com
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
Il2CppChar* ___assemblyName_9;
};
// System.Reflection.BindingFlags
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF : public MethodBase_t
{
public:
public:
};
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields
{
public:
// System.String System.Reflection.ConstructorInfo::ConstructorName
String_t* ___ConstructorName_0;
// System.String System.Reflection.ConstructorInfo::TypeConstructorName
String_t* ___TypeConstructorName_1;
public:
inline static int32_t get_offset_of_ConstructorName_0() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___ConstructorName_0)); }
inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; }
inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; }
inline void set_ConstructorName_0(String_t* value)
{
___ConstructorName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ConstructorName_0), (void*)value);
}
inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___TypeConstructorName_1)); }
inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; }
inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; }
inline void set_TypeConstructorName_1(String_t* value)
{
___TypeConstructorName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeConstructorName_1), (void*)value);
}
};
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
public:
public:
};
// System.Reflection.ParameterAttributes
struct ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110
{
public:
// System.Int32 System.Reflection.ParameterAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.TypeAttributes
struct TypeAttributes_tE6ACB574918E5D234E547DB66EE27142AC379B30
{
public:
// System.Int32 System.Reflection.TypeAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeAttributes_tE6ACB574918E5D234E547DB66EE27142AC379B30, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// System.TimeSpan
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_3;
public:
inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); }
inline int64_t get__ticks_3() const { return ____ticks_3; }
inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
inline void set__ticks_3(int64_t value)
{
____ticks_3 = value;
}
};
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_4;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_5;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); }
inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
inline void set__legacyConfigChecked_4(bool value)
{
____legacyConfigChecked_4 = value;
}
inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); }
inline bool get__legacyMode_5() const { return ____legacyMode_5; }
inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
inline void set__legacyMode_5(bool value)
{
____legacyMode_5 = value;
}
};
// System.WeakReference
struct WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D : public RuntimeObject
{
public:
// System.Boolean System.WeakReference::isLongReference
bool ___isLongReference_0;
// System.Runtime.InteropServices.GCHandle System.WeakReference::gcHandle
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___gcHandle_1;
public:
inline static int32_t get_offset_of_isLongReference_0() { return static_cast<int32_t>(offsetof(WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D, ___isLongReference_0)); }
inline bool get_isLongReference_0() const { return ___isLongReference_0; }
inline bool* get_address_of_isLongReference_0() { return &___isLongReference_0; }
inline void set_isLongReference_0(bool value)
{
___isLongReference_0 = value;
}
inline static int32_t get_offset_of_gcHandle_1() { return static_cast<int32_t>(offsetof(WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D, ___gcHandle_1)); }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 get_gcHandle_1() const { return ___gcHandle_1; }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_address_of_gcHandle_1() { return &___gcHandle_1; }
inline void set_gcHandle_1(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value)
{
___gcHandle_1 = value;
}
};
// System.ApplicationException
struct ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 : public Exception_t
{
public:
public:
};
// System.ComponentModel.BaseNumberConverter
struct BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
{
public:
public:
};
// System.ComponentModel.DesignerSerializationVisibilityAttribute
struct DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.ComponentModel.DesignerSerializationVisibility System.ComponentModel.DesignerSerializationVisibilityAttribute::visibility
int32_t ___visibility_4;
public:
inline static int32_t get_offset_of_visibility_4() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA, ___visibility_4)); }
inline int32_t get_visibility_4() const { return ___visibility_4; }
inline int32_t* get_address_of_visibility_4() { return &___visibility_4; }
inline void set_visibility_4(int32_t value)
{
___visibility_4 = value;
}
};
struct DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields
{
public:
// System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Content
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * ___Content_0;
// System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Hidden
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * ___Hidden_1;
// System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Visible
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * ___Visible_2;
// System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Default
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * ___Default_3;
public:
inline static int32_t get_offset_of_Content_0() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields, ___Content_0)); }
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * get_Content_0() const { return ___Content_0; }
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA ** get_address_of_Content_0() { return &___Content_0; }
inline void set_Content_0(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * value)
{
___Content_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Content_0), (void*)value);
}
inline static int32_t get_offset_of_Hidden_1() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields, ___Hidden_1)); }
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * get_Hidden_1() const { return ___Hidden_1; }
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA ** get_address_of_Hidden_1() { return &___Hidden_1; }
inline void set_Hidden_1(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * value)
{
___Hidden_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Hidden_1), (void*)value);
}
inline static int32_t get_offset_of_Visible_2() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields, ___Visible_2)); }
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * get_Visible_2() const { return ___Visible_2; }
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA ** get_address_of_Visible_2() { return &___Visible_2; }
inline void set_Visible_2(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * value)
{
___Visible_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Visible_2), (void*)value);
}
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields, ___Default_3)); }
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * get_Default_3() const { return ___Default_3; }
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA ** get_address_of_Default_3() { return &___Default_3; }
inline void set_Default_3(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * value)
{
___Default_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
}
};
// System.ComponentModel.ReferenceConverter
struct ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
{
public:
// System.Type System.ComponentModel.ReferenceConverter::type
Type_t * ___type_3;
public:
inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4, ___type_3)); }
inline Type_t * get_type_3() const { return ___type_3; }
inline Type_t ** get_address_of_type_3() { return &___type_3; }
inline void set_type_3(Type_t * value)
{
___type_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_3), (void*)value);
}
};
struct ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_StaticFields
{
public:
// System.String System.ComponentModel.ReferenceConverter::none
String_t* ___none_2;
public:
inline static int32_t get_offset_of_none_2() { return static_cast<int32_t>(offsetof(ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_StaticFields, ___none_2)); }
inline String_t* get_none_2() const { return ___none_2; }
inline String_t** get_address_of_none_2() { return &___none_2; }
inline void set_none_2(String_t* value)
{
___none_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___none_2), (void*)value);
}
};
// System.ComponentModel.RefreshPropertiesAttribute
struct RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.ComponentModel.RefreshProperties System.ComponentModel.RefreshPropertiesAttribute::refresh
int32_t ___refresh_3;
public:
inline static int32_t get_offset_of_refresh_3() { return static_cast<int32_t>(offsetof(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1, ___refresh_3)); }
inline int32_t get_refresh_3() const { return ___refresh_3; }
inline int32_t* get_address_of_refresh_3() { return &___refresh_3; }
inline void set_refresh_3(int32_t value)
{
___refresh_3 = value;
}
};
struct RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_StaticFields
{
public:
// System.ComponentModel.RefreshPropertiesAttribute System.ComponentModel.RefreshPropertiesAttribute::All
RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * ___All_0;
// System.ComponentModel.RefreshPropertiesAttribute System.ComponentModel.RefreshPropertiesAttribute::Repaint
RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * ___Repaint_1;
// System.ComponentModel.RefreshPropertiesAttribute System.ComponentModel.RefreshPropertiesAttribute::Default
RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * ___Default_2;
public:
inline static int32_t get_offset_of_All_0() { return static_cast<int32_t>(offsetof(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_StaticFields, ___All_0)); }
inline RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * get_All_0() const { return ___All_0; }
inline RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 ** get_address_of_All_0() { return &___All_0; }
inline void set_All_0(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * value)
{
___All_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___All_0), (void*)value);
}
inline static int32_t get_offset_of_Repaint_1() { return static_cast<int32_t>(offsetof(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_StaticFields, ___Repaint_1)); }
inline RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * get_Repaint_1() const { return ___Repaint_1; }
inline RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 ** get_address_of_Repaint_1() { return &___Repaint_1; }
inline void set_Repaint_1(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * value)
{
___Repaint_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Repaint_1), (void*)value);
}
inline static int32_t get_offset_of_Default_2() { return static_cast<int32_t>(offsetof(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_StaticFields, ___Default_2)); }
inline RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * get_Default_2() const { return ___Default_2; }
inline RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 ** get_address_of_Default_2() { return &___Default_2; }
inline void set_Default_2(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * value)
{
___Default_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_2), (void*)value);
}
};
// System.ComponentModel.StringConverter
struct StringConverter_t054FA0796F4C8E951208AFA052D99BCB8E68BED7 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
{
public:
public:
};
// System.ComponentModel.TimeSpanConverter
struct TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
{
public:
public:
};
// System.ComponentModel.ToolboxItemFilterAttribute
struct ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.ComponentModel.ToolboxItemFilterType System.ComponentModel.ToolboxItemFilterAttribute::filterType
int32_t ___filterType_0;
// System.String System.ComponentModel.ToolboxItemFilterAttribute::filterString
String_t* ___filterString_1;
// System.String System.ComponentModel.ToolboxItemFilterAttribute::typeId
String_t* ___typeId_2;
public:
inline static int32_t get_offset_of_filterType_0() { return static_cast<int32_t>(offsetof(ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910, ___filterType_0)); }
inline int32_t get_filterType_0() const { return ___filterType_0; }
inline int32_t* get_address_of_filterType_0() { return &___filterType_0; }
inline void set_filterType_0(int32_t value)
{
___filterType_0 = value;
}
inline static int32_t get_offset_of_filterString_1() { return static_cast<int32_t>(offsetof(ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910, ___filterString_1)); }
inline String_t* get_filterString_1() const { return ___filterString_1; }
inline String_t** get_address_of_filterString_1() { return &___filterString_1; }
inline void set_filterString_1(String_t* value)
{
___filterString_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___filterString_1), (void*)value);
}
inline static int32_t get_offset_of_typeId_2() { return static_cast<int32_t>(offsetof(ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910, ___typeId_2)); }
inline String_t* get_typeId_2() const { return ___typeId_2; }
inline String_t** get_address_of_typeId_2() { return &___typeId_2; }
inline void set_typeId_2(String_t* value)
{
___typeId_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeId_2), (void*)value);
}
};
// System.ComponentModel.WeakHashtable
struct WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF : public Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9
{
public:
// System.Int64 System.ComponentModel.WeakHashtable::_lastGlobalMem
int64_t ____lastGlobalMem_22;
// System.Int32 System.ComponentModel.WeakHashtable::_lastHashCount
int32_t ____lastHashCount_23;
public:
inline static int32_t get_offset_of__lastGlobalMem_22() { return static_cast<int32_t>(offsetof(WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF, ____lastGlobalMem_22)); }
inline int64_t get__lastGlobalMem_22() const { return ____lastGlobalMem_22; }
inline int64_t* get_address_of__lastGlobalMem_22() { return &____lastGlobalMem_22; }
inline void set__lastGlobalMem_22(int64_t value)
{
____lastGlobalMem_22 = value;
}
inline static int32_t get_offset_of__lastHashCount_23() { return static_cast<int32_t>(offsetof(WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF, ____lastHashCount_23)); }
inline int32_t get__lastHashCount_23() const { return ____lastHashCount_23; }
inline int32_t* get_address_of__lastHashCount_23() { return &____lastHashCount_23; }
inline void set__lastHashCount_23(int32_t value)
{
____lastHashCount_23 = value;
}
};
struct WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF_StaticFields
{
public:
// System.Collections.IEqualityComparer System.ComponentModel.WeakHashtable::_comparer
RuntimeObject* ____comparer_21;
public:
inline static int32_t get_offset_of__comparer_21() { return static_cast<int32_t>(offsetof(WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF_StaticFields, ____comparer_21)); }
inline RuntimeObject* get__comparer_21() const { return ____comparer_21; }
inline RuntimeObject** get_address_of__comparer_21() { return &____comparer_21; }
inline void set__comparer_21(RuntimeObject* value)
{
____comparer_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comparer_21), (void*)value);
}
};
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 : public RuntimeObject
{
public:
// System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___numberGroupSizes_1;
// System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___currencyGroupSizes_2;
// System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___percentGroupSizes_3;
// System.String System.Globalization.NumberFormatInfo::positiveSign
String_t* ___positiveSign_4;
// System.String System.Globalization.NumberFormatInfo::negativeSign
String_t* ___negativeSign_5;
// System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator
String_t* ___numberDecimalSeparator_6;
// System.String System.Globalization.NumberFormatInfo::numberGroupSeparator
String_t* ___numberGroupSeparator_7;
// System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator
String_t* ___currencyGroupSeparator_8;
// System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator
String_t* ___currencyDecimalSeparator_9;
// System.String System.Globalization.NumberFormatInfo::currencySymbol
String_t* ___currencySymbol_10;
// System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol
String_t* ___ansiCurrencySymbol_11;
// System.String System.Globalization.NumberFormatInfo::nanSymbol
String_t* ___nanSymbol_12;
// System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol
String_t* ___positiveInfinitySymbol_13;
// System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol
String_t* ___negativeInfinitySymbol_14;
// System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator
String_t* ___percentDecimalSeparator_15;
// System.String System.Globalization.NumberFormatInfo::percentGroupSeparator
String_t* ___percentGroupSeparator_16;
// System.String System.Globalization.NumberFormatInfo::percentSymbol
String_t* ___percentSymbol_17;
// System.String System.Globalization.NumberFormatInfo::perMilleSymbol
String_t* ___perMilleSymbol_18;
// System.String[] System.Globalization.NumberFormatInfo::nativeDigits
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___nativeDigits_19;
// System.Int32 System.Globalization.NumberFormatInfo::m_dataItem
int32_t ___m_dataItem_20;
// System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits
int32_t ___numberDecimalDigits_21;
// System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits
int32_t ___currencyDecimalDigits_22;
// System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern
int32_t ___currencyPositivePattern_23;
// System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern
int32_t ___currencyNegativePattern_24;
// System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern
int32_t ___numberNegativePattern_25;
// System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern
int32_t ___percentPositivePattern_26;
// System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern
int32_t ___percentNegativePattern_27;
// System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits
int32_t ___percentDecimalDigits_28;
// System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution
int32_t ___digitSubstitution_29;
// System.Boolean System.Globalization.NumberFormatInfo::isReadOnly
bool ___isReadOnly_30;
// System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride
bool ___m_useUserOverride_31;
// System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant
bool ___m_isInvariant_32;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber
bool ___validForParseAsNumber_33;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency
bool ___validForParseAsCurrency_34;
public:
inline static int32_t get_offset_of_numberGroupSizes_1() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSizes_1)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_numberGroupSizes_1() const { return ___numberGroupSizes_1; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_numberGroupSizes_1() { return &___numberGroupSizes_1; }
inline void set_numberGroupSizes_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___numberGroupSizes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSizes_1), (void*)value);
}
inline static int32_t get_offset_of_currencyGroupSizes_2() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSizes_2)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_currencyGroupSizes_2() const { return ___currencyGroupSizes_2; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_currencyGroupSizes_2() { return &___currencyGroupSizes_2; }
inline void set_currencyGroupSizes_2(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___currencyGroupSizes_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSizes_2), (void*)value);
}
inline static int32_t get_offset_of_percentGroupSizes_3() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSizes_3)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_percentGroupSizes_3() const { return ___percentGroupSizes_3; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_percentGroupSizes_3() { return &___percentGroupSizes_3; }
inline void set_percentGroupSizes_3(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___percentGroupSizes_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSizes_3), (void*)value);
}
inline static int32_t get_offset_of_positiveSign_4() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveSign_4)); }
inline String_t* get_positiveSign_4() const { return ___positiveSign_4; }
inline String_t** get_address_of_positiveSign_4() { return &___positiveSign_4; }
inline void set_positiveSign_4(String_t* value)
{
___positiveSign_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___positiveSign_4), (void*)value);
}
inline static int32_t get_offset_of_negativeSign_5() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeSign_5)); }
inline String_t* get_negativeSign_5() const { return ___negativeSign_5; }
inline String_t** get_address_of_negativeSign_5() { return &___negativeSign_5; }
inline void set_negativeSign_5(String_t* value)
{
___negativeSign_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___negativeSign_5), (void*)value);
}
inline static int32_t get_offset_of_numberDecimalSeparator_6() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalSeparator_6)); }
inline String_t* get_numberDecimalSeparator_6() const { return ___numberDecimalSeparator_6; }
inline String_t** get_address_of_numberDecimalSeparator_6() { return &___numberDecimalSeparator_6; }
inline void set_numberDecimalSeparator_6(String_t* value)
{
___numberDecimalSeparator_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numberDecimalSeparator_6), (void*)value);
}
inline static int32_t get_offset_of_numberGroupSeparator_7() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSeparator_7)); }
inline String_t* get_numberGroupSeparator_7() const { return ___numberGroupSeparator_7; }
inline String_t** get_address_of_numberGroupSeparator_7() { return &___numberGroupSeparator_7; }
inline void set_numberGroupSeparator_7(String_t* value)
{
___numberGroupSeparator_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSeparator_7), (void*)value);
}
inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSeparator_8)); }
inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; }
inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; }
inline void set_currencyGroupSeparator_8(String_t* value)
{
___currencyGroupSeparator_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSeparator_8), (void*)value);
}
inline static int32_t get_offset_of_currencyDecimalSeparator_9() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalSeparator_9)); }
inline String_t* get_currencyDecimalSeparator_9() const { return ___currencyDecimalSeparator_9; }
inline String_t** get_address_of_currencyDecimalSeparator_9() { return &___currencyDecimalSeparator_9; }
inline void set_currencyDecimalSeparator_9(String_t* value)
{
___currencyDecimalSeparator_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencyDecimalSeparator_9), (void*)value);
}
inline static int32_t get_offset_of_currencySymbol_10() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencySymbol_10)); }
inline String_t* get_currencySymbol_10() const { return ___currencySymbol_10; }
inline String_t** get_address_of_currencySymbol_10() { return &___currencySymbol_10; }
inline void set_currencySymbol_10(String_t* value)
{
___currencySymbol_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencySymbol_10), (void*)value);
}
inline static int32_t get_offset_of_ansiCurrencySymbol_11() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___ansiCurrencySymbol_11)); }
inline String_t* get_ansiCurrencySymbol_11() const { return ___ansiCurrencySymbol_11; }
inline String_t** get_address_of_ansiCurrencySymbol_11() { return &___ansiCurrencySymbol_11; }
inline void set_ansiCurrencySymbol_11(String_t* value)
{
___ansiCurrencySymbol_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ansiCurrencySymbol_11), (void*)value);
}
inline static int32_t get_offset_of_nanSymbol_12() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nanSymbol_12)); }
inline String_t* get_nanSymbol_12() const { return ___nanSymbol_12; }
inline String_t** get_address_of_nanSymbol_12() { return &___nanSymbol_12; }
inline void set_nanSymbol_12(String_t* value)
{
___nanSymbol_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nanSymbol_12), (void*)value);
}
inline static int32_t get_offset_of_positiveInfinitySymbol_13() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveInfinitySymbol_13)); }
inline String_t* get_positiveInfinitySymbol_13() const { return ___positiveInfinitySymbol_13; }
inline String_t** get_address_of_positiveInfinitySymbol_13() { return &___positiveInfinitySymbol_13; }
inline void set_positiveInfinitySymbol_13(String_t* value)
{
___positiveInfinitySymbol_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___positiveInfinitySymbol_13), (void*)value);
}
inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeInfinitySymbol_14)); }
inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; }
inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; }
inline void set_negativeInfinitySymbol_14(String_t* value)
{
___negativeInfinitySymbol_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___negativeInfinitySymbol_14), (void*)value);
}
inline static int32_t get_offset_of_percentDecimalSeparator_15() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalSeparator_15)); }
inline String_t* get_percentDecimalSeparator_15() const { return ___percentDecimalSeparator_15; }
inline String_t** get_address_of_percentDecimalSeparator_15() { return &___percentDecimalSeparator_15; }
inline void set_percentDecimalSeparator_15(String_t* value)
{
___percentDecimalSeparator_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentDecimalSeparator_15), (void*)value);
}
inline static int32_t get_offset_of_percentGroupSeparator_16() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSeparator_16)); }
inline String_t* get_percentGroupSeparator_16() const { return ___percentGroupSeparator_16; }
inline String_t** get_address_of_percentGroupSeparator_16() { return &___percentGroupSeparator_16; }
inline void set_percentGroupSeparator_16(String_t* value)
{
___percentGroupSeparator_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSeparator_16), (void*)value);
}
inline static int32_t get_offset_of_percentSymbol_17() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentSymbol_17)); }
inline String_t* get_percentSymbol_17() const { return ___percentSymbol_17; }
inline String_t** get_address_of_percentSymbol_17() { return &___percentSymbol_17; }
inline void set_percentSymbol_17(String_t* value)
{
___percentSymbol_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentSymbol_17), (void*)value);
}
inline static int32_t get_offset_of_perMilleSymbol_18() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___perMilleSymbol_18)); }
inline String_t* get_perMilleSymbol_18() const { return ___perMilleSymbol_18; }
inline String_t** get_address_of_perMilleSymbol_18() { return &___perMilleSymbol_18; }
inline void set_perMilleSymbol_18(String_t* value)
{
___perMilleSymbol_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___perMilleSymbol_18), (void*)value);
}
inline static int32_t get_offset_of_nativeDigits_19() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nativeDigits_19)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_nativeDigits_19() const { return ___nativeDigits_19; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_nativeDigits_19() { return &___nativeDigits_19; }
inline void set_nativeDigits_19(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___nativeDigits_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nativeDigits_19), (void*)value);
}
inline static int32_t get_offset_of_m_dataItem_20() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_dataItem_20)); }
inline int32_t get_m_dataItem_20() const { return ___m_dataItem_20; }
inline int32_t* get_address_of_m_dataItem_20() { return &___m_dataItem_20; }
inline void set_m_dataItem_20(int32_t value)
{
___m_dataItem_20 = value;
}
inline static int32_t get_offset_of_numberDecimalDigits_21() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalDigits_21)); }
inline int32_t get_numberDecimalDigits_21() const { return ___numberDecimalDigits_21; }
inline int32_t* get_address_of_numberDecimalDigits_21() { return &___numberDecimalDigits_21; }
inline void set_numberDecimalDigits_21(int32_t value)
{
___numberDecimalDigits_21 = value;
}
inline static int32_t get_offset_of_currencyDecimalDigits_22() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalDigits_22)); }
inline int32_t get_currencyDecimalDigits_22() const { return ___currencyDecimalDigits_22; }
inline int32_t* get_address_of_currencyDecimalDigits_22() { return &___currencyDecimalDigits_22; }
inline void set_currencyDecimalDigits_22(int32_t value)
{
___currencyDecimalDigits_22 = value;
}
inline static int32_t get_offset_of_currencyPositivePattern_23() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyPositivePattern_23)); }
inline int32_t get_currencyPositivePattern_23() const { return ___currencyPositivePattern_23; }
inline int32_t* get_address_of_currencyPositivePattern_23() { return &___currencyPositivePattern_23; }
inline void set_currencyPositivePattern_23(int32_t value)
{
___currencyPositivePattern_23 = value;
}
inline static int32_t get_offset_of_currencyNegativePattern_24() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyNegativePattern_24)); }
inline int32_t get_currencyNegativePattern_24() const { return ___currencyNegativePattern_24; }
inline int32_t* get_address_of_currencyNegativePattern_24() { return &___currencyNegativePattern_24; }
inline void set_currencyNegativePattern_24(int32_t value)
{
___currencyNegativePattern_24 = value;
}
inline static int32_t get_offset_of_numberNegativePattern_25() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberNegativePattern_25)); }
inline int32_t get_numberNegativePattern_25() const { return ___numberNegativePattern_25; }
inline int32_t* get_address_of_numberNegativePattern_25() { return &___numberNegativePattern_25; }
inline void set_numberNegativePattern_25(int32_t value)
{
___numberNegativePattern_25 = value;
}
inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentPositivePattern_26)); }
inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; }
inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; }
inline void set_percentPositivePattern_26(int32_t value)
{
___percentPositivePattern_26 = value;
}
inline static int32_t get_offset_of_percentNegativePattern_27() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentNegativePattern_27)); }
inline int32_t get_percentNegativePattern_27() const { return ___percentNegativePattern_27; }
inline int32_t* get_address_of_percentNegativePattern_27() { return &___percentNegativePattern_27; }
inline void set_percentNegativePattern_27(int32_t value)
{
___percentNegativePattern_27 = value;
}
inline static int32_t get_offset_of_percentDecimalDigits_28() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalDigits_28)); }
inline int32_t get_percentDecimalDigits_28() const { return ___percentDecimalDigits_28; }
inline int32_t* get_address_of_percentDecimalDigits_28() { return &___percentDecimalDigits_28; }
inline void set_percentDecimalDigits_28(int32_t value)
{
___percentDecimalDigits_28 = value;
}
inline static int32_t get_offset_of_digitSubstitution_29() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___digitSubstitution_29)); }
inline int32_t get_digitSubstitution_29() const { return ___digitSubstitution_29; }
inline int32_t* get_address_of_digitSubstitution_29() { return &___digitSubstitution_29; }
inline void set_digitSubstitution_29(int32_t value)
{
___digitSubstitution_29 = value;
}
inline static int32_t get_offset_of_isReadOnly_30() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___isReadOnly_30)); }
inline bool get_isReadOnly_30() const { return ___isReadOnly_30; }
inline bool* get_address_of_isReadOnly_30() { return &___isReadOnly_30; }
inline void set_isReadOnly_30(bool value)
{
___isReadOnly_30 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_31() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_useUserOverride_31)); }
inline bool get_m_useUserOverride_31() const { return ___m_useUserOverride_31; }
inline bool* get_address_of_m_useUserOverride_31() { return &___m_useUserOverride_31; }
inline void set_m_useUserOverride_31(bool value)
{
___m_useUserOverride_31 = value;
}
inline static int32_t get_offset_of_m_isInvariant_32() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_isInvariant_32)); }
inline bool get_m_isInvariant_32() const { return ___m_isInvariant_32; }
inline bool* get_address_of_m_isInvariant_32() { return &___m_isInvariant_32; }
inline void set_m_isInvariant_32(bool value)
{
___m_isInvariant_32 = value;
}
inline static int32_t get_offset_of_validForParseAsNumber_33() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsNumber_33)); }
inline bool get_validForParseAsNumber_33() const { return ___validForParseAsNumber_33; }
inline bool* get_address_of_validForParseAsNumber_33() { return &___validForParseAsNumber_33; }
inline void set_validForParseAsNumber_33(bool value)
{
___validForParseAsNumber_33 = value;
}
inline static int32_t get_offset_of_validForParseAsCurrency_34() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsCurrency_34)); }
inline bool get_validForParseAsCurrency_34() const { return ___validForParseAsCurrency_34; }
inline bool* get_address_of_validForParseAsCurrency_34() { return &___validForParseAsCurrency_34; }
inline void set_validForParseAsCurrency_34(bool value)
{
___validForParseAsCurrency_34 = value;
}
};
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields
{
public:
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___invariantInfo_0;
public:
inline static int32_t get_offset_of_invariantInfo_0() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields, ___invariantInfo_0)); }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_invariantInfo_0() const { return ___invariantInfo_0; }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; }
inline void set_invariantInfo_0(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
{
___invariantInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value);
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.Reflection.Module
struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 : public RuntimeObject
{
public:
// System.IntPtr System.Reflection.Module::_impl
intptr_t ____impl_2;
// System.Reflection.Assembly System.Reflection.Module::assembly
Assembly_t * ___assembly_3;
// System.String System.Reflection.Module::fqname
String_t* ___fqname_4;
// System.String System.Reflection.Module::name
String_t* ___name_5;
// System.String System.Reflection.Module::scopename
String_t* ___scopename_6;
// System.Boolean System.Reflection.Module::is_resource
bool ___is_resource_7;
// System.Int32 System.Reflection.Module::token
int32_t ___token_8;
public:
inline static int32_t get_offset_of__impl_2() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ____impl_2)); }
inline intptr_t get__impl_2() const { return ____impl_2; }
inline intptr_t* get_address_of__impl_2() { return &____impl_2; }
inline void set__impl_2(intptr_t value)
{
____impl_2 = value;
}
inline static int32_t get_offset_of_assembly_3() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___assembly_3)); }
inline Assembly_t * get_assembly_3() const { return ___assembly_3; }
inline Assembly_t ** get_address_of_assembly_3() { return &___assembly_3; }
inline void set_assembly_3(Assembly_t * value)
{
___assembly_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___assembly_3), (void*)value);
}
inline static int32_t get_offset_of_fqname_4() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___fqname_4)); }
inline String_t* get_fqname_4() const { return ___fqname_4; }
inline String_t** get_address_of_fqname_4() { return &___fqname_4; }
inline void set_fqname_4(String_t* value)
{
___fqname_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fqname_4), (void*)value);
}
inline static int32_t get_offset_of_name_5() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___name_5)); }
inline String_t* get_name_5() const { return ___name_5; }
inline String_t** get_address_of_name_5() { return &___name_5; }
inline void set_name_5(String_t* value)
{
___name_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_5), (void*)value);
}
inline static int32_t get_offset_of_scopename_6() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___scopename_6)); }
inline String_t* get_scopename_6() const { return ___scopename_6; }
inline String_t** get_address_of_scopename_6() { return &___scopename_6; }
inline void set_scopename_6(String_t* value)
{
___scopename_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___scopename_6), (void*)value);
}
inline static int32_t get_offset_of_is_resource_7() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___is_resource_7)); }
inline bool get_is_resource_7() const { return ___is_resource_7; }
inline bool* get_address_of_is_resource_7() { return &___is_resource_7; }
inline void set_is_resource_7(bool value)
{
___is_resource_7 = value;
}
inline static int32_t get_offset_of_token_8() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___token_8)); }
inline int32_t get_token_8() const { return ___token_8; }
inline int32_t* get_address_of_token_8() { return &___token_8; }
inline void set_token_8(int32_t value)
{
___token_8 = value;
}
};
struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_StaticFields
{
public:
// System.Reflection.TypeFilter System.Reflection.Module::FilterTypeName
TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * ___FilterTypeName_0;
// System.Reflection.TypeFilter System.Reflection.Module::FilterTypeNameIgnoreCase
TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * ___FilterTypeNameIgnoreCase_1;
public:
inline static int32_t get_offset_of_FilterTypeName_0() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_StaticFields, ___FilterTypeName_0)); }
inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * get_FilterTypeName_0() const { return ___FilterTypeName_0; }
inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 ** get_address_of_FilterTypeName_0() { return &___FilterTypeName_0; }
inline void set_FilterTypeName_0(TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * value)
{
___FilterTypeName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterTypeName_0), (void*)value);
}
inline static int32_t get_offset_of_FilterTypeNameIgnoreCase_1() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_StaticFields, ___FilterTypeNameIgnoreCase_1)); }
inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * get_FilterTypeNameIgnoreCase_1() const { return ___FilterTypeNameIgnoreCase_1; }
inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 ** get_address_of_FilterTypeNameIgnoreCase_1() { return &___FilterTypeNameIgnoreCase_1; }
inline void set_FilterTypeNameIgnoreCase_1(TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * value)
{
___FilterTypeNameIgnoreCase_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterTypeNameIgnoreCase_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.Module
struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_marshaled_pinvoke
{
intptr_t ____impl_2;
Assembly_t_marshaled_pinvoke* ___assembly_3;
char* ___fqname_4;
char* ___name_5;
char* ___scopename_6;
int32_t ___is_resource_7;
int32_t ___token_8;
};
// Native definition for COM marshalling of System.Reflection.Module
struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_marshaled_com
{
intptr_t ____impl_2;
Assembly_t_marshaled_com* ___assembly_3;
Il2CppChar* ___fqname_4;
Il2CppChar* ___name_5;
Il2CppChar* ___scopename_6;
int32_t ___is_resource_7;
int32_t ___token_8;
};
// System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB : public RuntimeObject
{
public:
// System.Type System.Reflection.ParameterInfo::ClassImpl
Type_t * ___ClassImpl_0;
// System.Object System.Reflection.ParameterInfo::DefaultValueImpl
RuntimeObject * ___DefaultValueImpl_1;
// System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
MemberInfo_t * ___MemberImpl_2;
// System.String System.Reflection.ParameterInfo::NameImpl
String_t* ___NameImpl_3;
// System.Int32 System.Reflection.ParameterInfo::PositionImpl
int32_t ___PositionImpl_4;
// System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
int32_t ___AttrsImpl_5;
// System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.ParameterInfo::marshalAs
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
public:
inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___ClassImpl_0)); }
inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; }
inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; }
inline void set_ClassImpl_0(Type_t * value)
{
___ClassImpl_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ClassImpl_0), (void*)value);
}
inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___DefaultValueImpl_1)); }
inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; }
inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; }
inline void set_DefaultValueImpl_1(RuntimeObject * value)
{
___DefaultValueImpl_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DefaultValueImpl_1), (void*)value);
}
inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___MemberImpl_2)); }
inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; }
inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; }
inline void set_MemberImpl_2(MemberInfo_t * value)
{
___MemberImpl_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MemberImpl_2), (void*)value);
}
inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___NameImpl_3)); }
inline String_t* get_NameImpl_3() const { return ___NameImpl_3; }
inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; }
inline void set_NameImpl_3(String_t* value)
{
___NameImpl_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NameImpl_3), (void*)value);
}
inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___PositionImpl_4)); }
inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; }
inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; }
inline void set_PositionImpl_4(int32_t value)
{
___PositionImpl_4 = value;
}
inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___AttrsImpl_5)); }
inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; }
inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; }
inline void set_AttrsImpl_5(int32_t value)
{
___AttrsImpl_5 = value;
}
inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___marshalAs_6)); }
inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * get_marshalAs_6() const { return ___marshalAs_6; }
inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 ** get_address_of_marshalAs_6() { return &___marshalAs_6; }
inline void set_marshalAs_6(MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * value)
{
___marshalAs_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___marshalAs_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke
{
Type_t * ___ClassImpl_0;
Il2CppIUnknown* ___DefaultValueImpl_1;
MemberInfo_t * ___MemberImpl_2;
char* ___NameImpl_3;
int32_t ___PositionImpl_4;
int32_t ___AttrsImpl_5;
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
};
// Native definition for COM marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com
{
Type_t * ___ClassImpl_0;
Il2CppIUnknown* ___DefaultValueImpl_1;
MemberInfo_t * ___MemberImpl_2;
Il2CppChar* ___NameImpl_3;
int32_t ___PositionImpl_4;
int32_t ___AttrsImpl_5;
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
}
};
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t
{
public:
public:
};
// System.ComponentModel.PropertyChangedEventHandler
struct PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 : public MulticastDelegate_t
{
public:
public:
};
// System.ComponentModel.RefreshEventHandler
struct RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 : public MulticastDelegate_t
{
public:
public:
};
// System.ComponentModel.RunWorkerCompletedEventHandler
struct RunWorkerCompletedEventHandler_t8E766853412F70C3B8826718D59377F7F464BCAB : public MulticastDelegate_t
{
public:
public:
};
// System.ComponentModel.SByteConverter
struct SByteConverter_t99F8032C93CF0F34D8C8BB8AA744D39E794AA4B7 : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
{
public:
public:
};
// System.ComponentModel.SingleConverter
struct SingleConverter_t86A24FBD46D753B99344470E9566584F15538902 : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
{
public:
public:
};
// System.EventHandler
struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C : public MulticastDelegate_t
{
public:
public:
};
// System.FormatException
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.InvalidCastException
struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Reflection.TargetInvocationException
struct TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 : public ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74
{
public:
public:
};
// System.Runtime.InteropServices.ExternalException
struct ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.TypeLoadException
struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.TypeLoadException::ClassName
String_t* ___ClassName_17;
// System.String System.TypeLoadException::AssemblyName
String_t* ___AssemblyName_18;
// System.String System.TypeLoadException::MessageArg
String_t* ___MessageArg_19;
// System.Int32 System.TypeLoadException::ResourceId
int32_t ___ResourceId_20;
public:
inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ClassName_17)); }
inline String_t* get_ClassName_17() const { return ___ClassName_17; }
inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; }
inline void set_ClassName_17(String_t* value)
{
___ClassName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ClassName_17), (void*)value);
}
inline static int32_t get_offset_of_AssemblyName_18() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___AssemblyName_18)); }
inline String_t* get_AssemblyName_18() const { return ___AssemblyName_18; }
inline String_t** get_address_of_AssemblyName_18() { return &___AssemblyName_18; }
inline void set_AssemblyName_18(String_t* value)
{
___AssemblyName_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyName_18), (void*)value);
}
inline static int32_t get_offset_of_MessageArg_19() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___MessageArg_19)); }
inline String_t* get_MessageArg_19() const { return ___MessageArg_19; }
inline String_t** get_address_of_MessageArg_19() { return &___MessageArg_19; }
inline void set_MessageArg_19(String_t* value)
{
___MessageArg_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MessageArg_19), (void*)value);
}
inline static int32_t get_offset_of_ResourceId_20() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ResourceId_20)); }
inline int32_t get_ResourceId_20() const { return ___ResourceId_20; }
inline int32_t* get_address_of_ResourceId_20() { return &___ResourceId_20; }
inline void set_ResourceId_20(int32_t value)
{
___ResourceId_20 = value;
}
};
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
// System.ComponentModel.Design.CheckoutException
struct CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 : public ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE
{
public:
public:
};
struct CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_StaticFields
{
public:
// System.ComponentModel.Design.CheckoutException System.ComponentModel.Design.CheckoutException::Canceled
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * ___Canceled_17;
public:
inline static int32_t get_offset_of_Canceled_17() { return static_cast<int32_t>(offsetof(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_StaticFields, ___Canceled_17)); }
inline CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * get_Canceled_17() const { return ___Canceled_17; }
inline CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 ** get_address_of_Canceled_17() { return &___Canceled_17; }
inline void set_Canceled_17(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * value)
{
___Canceled_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Canceled_17), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.ComponentModel.PropertyTabScope[]
struct PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray
{
public:
ALIGN_FIELD (8) String_t* m_Items[1];
public:
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray
{
public:
ALIGN_FIELD (8) Type_t * m_Items[1];
public:
inline Type_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Type_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Attribute[]
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * m_Items[1];
public:
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Attribute[][]
struct AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448 : public RuntimeArray
{
public:
ALIGN_FIELD (8) AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* m_Items[1];
public:
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E m_Items[1];
public:
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
};
// System.Reflection.MemberInfo[]
struct MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) MemberInfo_t * m_Items[1];
public:
inline MemberInfo_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MemberInfo_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, MemberInfo_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline MemberInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MemberInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MemberInfo_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.ComponentModel.IExtenderProvider[]
struct IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
public:
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.ComponentModel.PropertyDescriptor[]
struct PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F : public RuntimeArray
{
public:
ALIGN_FIELD (8) PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * m_Items[1];
public:
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.ComponentModel.EventDescriptor[]
struct EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * m_Items[1];
public:
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.EventInfo[]
struct EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C : public RuntimeArray
{
public:
ALIGN_FIELD (8) EventInfo_t * m_Items[1];
public:
inline EventInfo_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline EventInfo_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, EventInfo_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline EventInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline EventInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, EventInfo_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.ComponentModel.ReflectPropertyDescriptor[]
struct ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * m_Items[1];
public:
inline ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.PropertyInfo[]
struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E : public RuntimeArray
{
public:
ALIGN_FIELD (8) PropertyInfo_t * m_Items[1];
public:
inline PropertyInfo_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PropertyInfo_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, PropertyInfo_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline PropertyInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PropertyInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * m_Items[1];
public:
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Delegate_t * m_Items[1];
public:
inline Delegate_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Guid[]
struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF : public RuntimeArray
{
public:
ALIGN_FIELD (8) Guid_t m_Items[1];
public:
inline Guid_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Guid_t * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Guid_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Guid_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Guid_t * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Guid_t value)
{
m_Items[index] = value;
}
};
// System.Reflection.Module[]
struct ModuleU5BU5D_t5A96D0D19A757DE3D576E4EB81BE0FD6326DBB6E : public RuntimeArray
{
public:
ALIGN_FIELD (8) Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * m_Items[1];
public:
inline Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2895EBB13AA7D9232058658A7DC404DC5F608923_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t ___capacity0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m1B06EB9D28DDA7E38DDC20D88532DFF246F03DF6_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Values()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * Dictionary_2_get_Values_m58CC32586C31C6F38B730DE7CD79A1FFE9109BA4_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::CopyTo(!1[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m172A6ED766A3F35536E7DE9B3F84698510C95168_gshared (ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Collections.DictionaryEntry System.ComponentModel.PropertyDescriptorCollection/PropertyDescriptorEnumerator::get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 PropertyDescriptorEnumerator_get_Entry_m8BDC6BA3A4A5620F2EA393763B6BF271FD58AB60 (PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D * __this, const RuntimeMethod* method);
// System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::get_Count()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_get_Count_mAA1EA8D4BE590EE7F7E469876FB503F2A0F0E4B0_inline (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method);
// System.Void System.Attribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyTabAttribute::.ctor(System.Type,System.ComponentModel.PropertyTabScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyTabAttribute__ctor_m61853ADFF5EC012A40B967FE861832DDAF7D1A08 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, Type_t * ___tabClass0, int32_t ___tabScope1, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyTabAttribute::.ctor(System.String,System.ComponentModel.PropertyTabScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyTabAttribute__ctor_mB42E8A52E002DEC87211862DAECBAB55BF62249D (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, String_t* ___tabClassName0, int32_t ___tabScope1, const RuntimeMethod* method);
// System.String SR::GetString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7 (String_t* ___name0, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
// System.Int32 System.String::IndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
// System.String System.String::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D (String_t* __this, const RuntimeMethod* method);
// System.String System.String::Substring(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method);
// System.Type System.Type::GetType(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_m8A8A6481B24551476F2AF999A970AD705BA68C7A (String_t* ___typeName0, bool ___throwOnError1);
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Reflection.Assembly System.Reflection.Assembly::Load(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * Assembly_Load_m4640304E91781FC3D197CD014B0C2DCEAFCFFF55 (String_t* ___assemblyString0, const RuntimeMethod* method);
// System.Boolean System.Reflection.Assembly::op_Inequality(System.Reflection.Assembly,System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Assembly_op_Inequality_m6949ED5777CC2840BF1EBD907C35A20E25F22F7B (Assembly_t * ___left0, Assembly_t * ___right1, const RuntimeMethod* method);
// System.String SR::GetString(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39 (String_t* ___name0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method);
// System.Void System.TypeLoadException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581 (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Object System.Array::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176 (RuntimeArray * __this, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.PropertyTabAttribute::Equals(System.ComponentModel.PropertyTabAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyTabAttribute_Equals_m124B0306933902AE12C2DA00B0997CFABCAF2702 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * ___other0, const RuntimeMethod* method);
// System.Type[] System.ComponentModel.PropertyTabAttribute::get_TabClasses()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* PropertyTabAttribute_get_TabClasses_m6CE9F5CB57CDD0AD0BEA1C9CBC9125D1701AC995 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, const RuntimeMethod* method);
// System.ComponentModel.PropertyTabScope[] System.ComponentModel.PropertyTabAttribute::get_TabScopes()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* PropertyTabAttribute_get_TabScopes_m9A00F379D99A89E766BA35314A680F98A05FB033_inline (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, const RuntimeMethod* method);
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Int32 System.Attribute::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyTabAttribute::InitializeArrays(System.String[],System.Type[],System.ComponentModel.PropertyTabScope[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyTabAttribute_InitializeArrays_mD8AE560AB430117121701B018B9C36B9CDA3B531 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___tabClassNames0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___tabClasses1, PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* ___tabScopes2, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.ReadOnlyAttribute::get_IsReadOnly()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ReadOnlyAttribute_get_IsReadOnly_m0626C74195DDB464E767AFE4CB8C205C267C8866_inline (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReadOnlyAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyAttribute__ctor_m57EACC99156B2E048A2BA49ACF9F58FBF6537752 (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * __this, bool ___isReadOnly0, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.RecommendedAsConfigurableAttribute::get_RecommendedAsConfigurable()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool RecommendedAsConfigurableAttribute_get_RecommendedAsConfigurable_m4C6A004F4A4059573D320A02842B43A60B3F1B92_inline (RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.RecommendedAsConfigurableAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecommendedAsConfigurableAttribute__ctor_m1BC9A81E7BC555C329472010AAC9F4371EF2A920 (RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * __this, bool ___recommendedAsConfigurable0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertFrom_m8E1F9E41B7DEE6A032EAC70130ADC6356C3F227D (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method);
// System.Boolean System.String::Equals(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m90EB651A751C3444BADBBD5401109CE05B3E1CFB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method);
// System.Void System.Collections.ArrayList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReferenceConverter/ReferenceComparer::.ctor(System.ComponentModel.ReferenceConverter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReferenceComparer__ctor_m7547D75DBAFDA96F03302A6FE4E5AE47153AE77E (ReferenceComparer_t3DEA0E67FDC8BA34C167CC4401A1FCC3CFE0B33A * __this, ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * ___converter0, const RuntimeMethod* method);
// System.Void System.Array::Sort(System.Array,System.Int32,System.Int32,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_mFB179CA0C7D29427781B2F4B86DCCC36DDABE967 (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeConverter/StandardValuesCollection::.ctor(System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandardValuesCollection__ctor_m75578979BC0D77C0D622E4C9D7C1CB1E047615C1 (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, RuntimeObject* ___values0, const RuntimeMethod* method);
// System.String System.ComponentModel.TypeConverter::ConvertToString(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverter_ConvertToString_m2CBE8E127541982F2FB74F81D59AA62D097FD623 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method);
// System.Int32 System.String::Compare(System.String,System.String,System.Boolean,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mA1D43767F882FE677F238637A8785FCCEE7173D9 (String_t* ___strA0, String_t* ___strB1, bool ___ignoreCase2, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture3, const RuntimeMethod* method);
// System.Void System.ComponentModel.EventDescriptor::.ctor(System.String,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptor__ctor_m64DD06C2302860B79602DB0A9538323FBEB778F1 (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * __this, String_t* ___name0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs1, const RuntimeMethod* method);
// System.Void System.ComponentModel.EventDescriptor::.ctor(System.ComponentModel.MemberDescriptor,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptor__ctor_m8F8D69FB49D3DBACBD9DF097476A561A5C642888 (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * __this, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___descr0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs1, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectEventDescriptor::FillMethods()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor_FillMethods_m7AAD8CF57D3F38B679BB63966AD032684072E3B7 (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, const RuntimeMethod* method);
// System.ComponentModel.ISite System.ComponentModel.MemberDescriptor::GetSite(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6 (RuntimeObject * ___component0, const RuntimeMethod* method);
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method);
// System.Object System.SecurityUtils::MethodInfoInvoke(System.Reflection.MethodInfo,System.Object,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SecurityUtils_MethodInfoInvoke_mF5977E97A2A9073E72C098B312789C9949128AF0 (MethodInfo_t * ___method0, RuntimeObject * ___target1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method);
// System.Boolean System.Reflection.EventInfo::op_Inequality(System.Reflection.EventInfo,System.Reflection.EventInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventInfo_op_Inequality_mC7E27E2551DF4073E8DC033A89A705596AFF344C (EventInfo_t * ___left0, EventInfo_t * ___right1, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectEventDescriptor::FillEventInfoAttribute(System.Reflection.EventInfo,System.Collections.IList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor_FillEventInfoAttribute_m3E056666DC23914CEE8B585782483C0207E6FD53 (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, EventInfo_t * ___realEventInfo0, RuntimeObject* ___attributes1, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectEventDescriptor::FillSingleMethodAttribute(System.Reflection.MethodInfo,System.Collections.IList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor_FillSingleMethodAttribute_mC67C5577BF6FBA1FFCBADED02CC4F03F8E9AEC9B (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, MethodInfo_t * ___realMethodInfo0, RuntimeObject* ___attributes1, const RuntimeMethod* method);
// System.Void System.ComponentModel.MemberDescriptor::FillAttributes(System.Collections.IList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor_FillAttributes_mA33C5FFD1DE2BA560E335B6549E60A229B9F773B (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, RuntimeObject* ___attributeList0, const RuntimeMethod* method);
// System.Boolean System.Reflection.MemberInfo::op_Inequality(System.Reflection.MemberInfo,System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberInfo_op_Inequality_mAFFDD84E1AF346532192B32FA8787E64072B4F5B (MemberInfo_t * ___left0, MemberInfo_t * ___right1, const RuntimeMethod* method);
// System.Attribute[] System.ComponentModel.ReflectTypeDescriptionProvider::ReflectGetAttributes(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ReflectTypeDescriptionProvider_ReflectGetAttributes_mA3DA28648085382DC968178CE6B9D5288DE17739 (MemberInfo_t * ___member0, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Reflection.EventInfo::GetAddMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * EventInfo_GetAddMethod_mCA36A5E78615F6777817A647355C2BAF49154619 (EventInfo_t * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Reflection.EventInfo::GetRemoveMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * EventInfo_GetRemoveMethod_m18316DA28217AC9BED8EEB585BCDAA452B963132 (EventInfo_t * __this, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodInfo::op_Equality(System.Reflection.MethodInfo,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0 (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237 (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method);
// System.Reflection.EventInfo System.Type::GetEvent(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventInfo_t * Type_GetEvent_m769CDE0E3BA7074940DC4E0E086F71A7E7D09721 (Type_t * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.ComponentModel.MemberDescriptor::FindMethod(System.Type,System.String,System.Type[],System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MemberDescriptor_FindMethod_m4B26329E481C2681B235A311E2E7D022DC891773 (Type_t * ___componentClass0, String_t* ___name1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___args2, Type_t * ___returnType3, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method);
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyDescriptor::.ctor(System.String,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor__ctor_m8CEC4DAE5266714927949F60E4F8A7F31141BC22 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, String_t* ___name0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs1, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectPropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor__ctor_mB5E1EB28647D1B39D7EEC2A60C41BD3F2B5EBB4E (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, Type_t * ___componentClass0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes3, const RuntimeMethod* method);
// System.Boolean System.Reflection.PropertyInfo::op_Inequality(System.Reflection.PropertyInfo,System.Reflection.PropertyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyInfo_op_Inequality_m72FFC34F4BEFB4F18155B0E97F8616597AE9A782 (PropertyInfo_t * ___left0, PropertyInfo_t * ___right1, const RuntimeMethod* method);
// System.Void System.Collections.Specialized.BitVector32::set_Item(System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C (BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * __this, int32_t ___bit0, bool ___value1, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyDescriptor::.ctor(System.ComponentModel.MemberDescriptor,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor__ctor_m8C1C276319F5C29A452F48C89B595334AB7E65B0 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___descr0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs1, const RuntimeMethod* method);
// System.Object System.Enum::ToObject(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Object System.ComponentModel.AmbientValueAttribute::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * AmbientValueAttribute_get_Value_mAF197402AF2951D9F41882A7E8E2AC99946EF5DF_inline (AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Specialized.BitVector32::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB (BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * __this, int32_t ___bit0, const RuntimeMethod* method);
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * TypeDescriptor_GetEvents_mEB93FB58F539D9302E2ACAA823DABB199DFB9944 (Type_t * ___componentType0, const RuntimeMethod* method);
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, const RuntimeMethod* method);
// System.Boolean System.Reflection.PropertyInfo::op_Equality(System.Reflection.PropertyInfo,System.Reflection.PropertyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyInfo_op_Equality_m6E3A0B7912D137F6FA5F53756ED260C9831B70ED (PropertyInfo_t * ___left0, PropertyInfo_t * ___right1, const RuntimeMethod* method);
// System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * Type_GetProperty_m35A7FCA1C89F7F03E865EBE00515336DFB482CFF (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder2, Type_t * ___returnType3, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types4, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___modifiers5, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::get_SetMethodValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * ReflectPropertyDescriptor_get_SetMethodValue_m9C7CB91D0400A7450E620516B1A30B2FD37791A5 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.ComponentModel.MemberDescriptor::FindMethod(System.Type,System.String,System.Type[],System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MemberDescriptor_FindMethod_m55C2AA54F198A970DAD868DE103F41602CC4ABEF (Type_t * ___componentClass0, String_t* ___name1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___args2, Type_t * ___returnType3, bool ___publicOnly4, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * PropertyInfo_GetSetMethod_m275171F734C49C398DC9E9F3970AA798725C7CA9 (PropertyInfo_t * __this, const RuntimeMethod* method);
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectPropertyDescriptor::get_ChangedEventValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ReflectPropertyDescriptor_get_ChangedEventValue_m53318DC3BCA673EA99F7D7B8CA6A5BA314D6D0A8 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method);
// System.EventHandler System.ComponentModel.PropertyDescriptor::GetValueChangedHandler(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * PropertyDescriptor_GetValueChangedHandler_m1574AF743125BF015F9DDB577AE0559684063000 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject * ___component0, const RuntimeMethod* method);
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectPropertyDescriptor::get_IPropChangedEventValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ReflectPropertyDescriptor_get_IPropChangedEventValue_m09F9B4CC2CF462E85042BAAD57FC69A3A84BB73A (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyChangedEventHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyChangedEventHandler__ctor_mC6EC20F2995A9376A72EB51981850A9E5C8450E7 (PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyDescriptor::AddValueChanged(System.Object,System.EventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor_AddValueChanged_m91408A44CCF3C64DD47A6223D352E64F784EB538 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject * ___component0, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___handler1, const RuntimeMethod* method);
// System.Object System.ComponentModel.ReflectPropertyDescriptor::get_DefaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method);
// System.Object System.ComponentModel.ReflectPropertyDescriptor::ExtenderGetValue(System.ComponentModel.IExtenderProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectPropertyDescriptor_ExtenderGetValue_m741FE4C60D34936C3505CE5E90DB426593C7F96F (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, const RuntimeMethod* method);
// System.Boolean System.Object::Equals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_Equals_mD98CD6D19C28ADC48B8468F78F94D38E203D0521 (RuntimeObject * ___objA0, RuntimeObject * ___objB1, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::get_ResetMethodValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::get_ShouldSerializeMethodValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method);
// System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674 (MethodBase_t * __this, RuntimeObject * ___obj0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters1, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::get_GetMethodValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectPropertyDescriptor::ExtenderSetValue(System.ComponentModel.IExtenderProvider,System.Object,System.Object,System.ComponentModel.PropertyDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_ExtenderSetValue_mC58759964687244DFA66A4330C48B8EC0BFA860E (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, RuntimeObject * ___value2, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___notifyDesc3, const RuntimeMethod* method);
// System.Object System.ComponentModel.ReflectPropertyDescriptor::get_AmbientValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectPropertyDescriptor_get_AmbientValue_m2FE1E71F14949D9DA86714056C74205C3672D6D3 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.AttributeCollection::Contains(System.Attribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttributeCollection_Contains_m44FEEEE6F4C20AAF6207A09BE38A10EEF6EDE6EF (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * __this, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * ___attribute0, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.ReflectPropertyDescriptor::get_IsExtender()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectPropertyDescriptor_get_IsExtender_mFFEE1C5A723D8A0BBBAC2AFE3DA9B77D7821727A (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method);
// System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B (Type_t * ___componentType0, const RuntimeMethod* method);
// System.Collections.IEnumerator System.ComponentModel.AttributeCollection::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AttributeCollection_GetEnumerator_m0A6B7803DAA1D559DF91BB18D0230F449A036DCB (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder2, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types3, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___modifiers4, const RuntimeMethod* method);
// System.String System.ComponentModel.AttributeProviderAttribute::get_TypeName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AttributeProviderAttribute_get_TypeName_m83FA0949577D518981558E3A01BA14647565A0DC_inline (AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068 * __this, const RuntimeMethod* method);
// System.Type System.Type::GetType(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C (String_t* ___typeName0);
// System.String System.ComponentModel.AttributeProviderAttribute::get_PropertyName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AttributeProviderAttribute_get_PropertyName_mC7A169CDA2E8BE87946A71872C41F0C768D1C80B_inline (AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068 * __this, const RuntimeMethod* method);
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* ___value0, const RuntimeMethod* method);
// System.Reflection.MemberInfo[] System.Type::GetMember(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* Type_GetMember_m715D5865845665F5A72E927F52FB5CFA1BB3D800 (Type_t * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyDescriptor::FillAttributes(System.Collections.IList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor_FillAttributes_mA3E3A90097B815BD8F7A185036485FF86A03256F (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject* ___attributeList0, const RuntimeMethod* method);
// System.Exception System.Exception::get_InnerException()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline (Exception_t * __this, const RuntimeMethod* method);
// System.Type System.Exception::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3 (Exception_t * __this, const RuntimeMethod* method);
// System.Void System.Reflection.TargetInvocationException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TargetInvocationException__ctor_mBCC339AE7AC683564DA27A950A92463915B71F00 (TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 * __this, String_t* ___message0, Exception_t * ___inner1, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyDescriptor::OnValueChanged(System.Object,System.EventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor_OnValueChanged_m78CADBEDC8B71F0BDBA91762452C418391C0B592 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject * ___component0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyDescriptor::RemoveValueChanged(System.Object,System.EventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor_RemoveValueChanged_m198AA1C23F7EB535433044BE34E76F83C0EFB830 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject * ___component0, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___handler1, const RuntimeMethod* method);
// System.Void System.Diagnostics.TraceSwitch::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceSwitch__ctor_mDBA48A8FB03E3CED698799144535B99F84D81008 (TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * __this, String_t* ___displayName0, String_t* ___description1, const RuntimeMethod* method);
// System.Int32 System.Collections.Specialized.BitVector32::CreateMask()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitVector32_CreateMask_mF40475E10251217A893C1C396B80B4690A6245B2 (const RuntimeMethod* method);
// System.Int32 System.Collections.Specialized.BitVector32::CreateMask(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD (int32_t ___previous0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptionProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptionProvider__ctor_m9A35B40DE4D4CCB86B72BD3BABF375982DB32912 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Hashtable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method);
// System.Void System.Collections.Hashtable::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mAAFFE0698C829CFAFE176BD4A6C5DDA07A8ABDA9 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___capacity0, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Object System.SecurityUtils::SecureConstructorInvoke(System.Type,System.Type[],System.Object[],System.Boolean,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SecurityUtils_SecureConstructorInvoke_mE027B99C9C5C9A325AFC67CAC4B4106DBE855585 (Type_t * ___type0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___argTypes1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___allowNonPublic3, int32_t ___extraFlags4, const RuntimeMethod* method);
// System.Object System.SecurityUtils::SecureConstructorInvoke(System.Type,System.Type[],System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SecurityUtils_SecureConstructorInvoke_m7DA77EA06BECD2F9B36481C8CAD9429674166D27 (Type_t * ___type0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___argTypes1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___allowNonPublic3, const RuntimeMethod* method);
// System.Object System.SecurityUtils::SecureCreateInstance(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SecurityUtils_SecureCreateInstance_m291D8D6709E79129FDE3E1EA01D37F1D40E73EA4 (Type_t * ___type0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method);
// System.Object System.SecurityUtils::SecureCreateInstance(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SecurityUtils_SecureCreateInstance_m00B165286E54C3393CFFE82948E078F96018750A (Type_t * ___type0, const RuntimeMethod* method);
// System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData System.ComponentModel.ReflectTypeDescriptionProvider::GetTypeData(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, bool ___createIfNeeded1, const RuntimeMethod* method);
// System.ComponentModel.AttributeCollection System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::GetAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ReflectedTypeData_GetAttributes_m663A1FD9948A46D290B3D9E033F291B1E535452E (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, const RuntimeMethod* method);
// System.String System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::GetClassName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectedTypeData_GetClassName_m4291DAD8939B251B6C5A1AF021708036DF13FF82 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method);
// System.String System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::GetComponentName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectedTypeData_GetComponentName_m688C3E2D5D955FF24A051F1E21FC6ABB1BCDE17A (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method);
// System.ComponentModel.TypeConverter System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::GetConverter(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ReflectedTypeData_GetConverter_mD37346D7D19C72DC50CBB82BF4F4F9DF5218D0B6 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method);
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::GetDefaultEvent(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ReflectedTypeData_GetDefaultEvent_m31A6B84818BEBF7977111E35658D6CFB319F4737 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method);
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::GetDefaultProperty(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ReflectedTypeData_GetDefaultProperty_m6A5070505225614BD439CE0195A5725EFE7BB612 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method);
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::GetEditor(System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectedTypeData_GetEditor_m64641DA7947F872252041D99AD2D4FFB346DF531 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, Type_t * ___editorBaseType1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::RunClassConstructor(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_RunClassConstructor_m86E0EA587977364E1DA1DE48E43B3D632A51847E (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___type0, const RuntimeMethod* method);
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::GetEvents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * ReflectedTypeData_GetEvents_m1AA3F18FBA9137AD6D28C5FEA2B525641BAFB7D6 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, const RuntimeMethod* method);
// System.String System.ComponentModel.ReflectTypeDescriptionProvider::GetClassName(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectTypeDescriptionProvider_GetClassName_m77A6389AAD0DB919D60969F0C1D6AB3626A1CD72 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.String System.ComponentModel.ReflectTypeDescriptionProvider::GetComponentName(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectTypeDescriptionProvider_GetComponentName_m2861917411D3CE771C9FD435037B063BC3288183 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method);
// System.ComponentModel.TypeConverter System.ComponentModel.ReflectTypeDescriptionProvider::GetConverter(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ReflectTypeDescriptionProvider_GetConverter_mB8782B30A3D40FBDB37A4FD68A635149B0154880 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method);
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::GetEditor(System.Type,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectTypeDescriptionProvider_GetEditor_mCDAAA969738DB6036016AE5846E6BF6F6B051ECC (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, RuntimeObject * ___instance1, Type_t * ___editorBaseType2, const RuntimeMethod* method);
// System.Collections.IDictionary System.ComponentModel.TypeDescriptor::GetCache(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_GetCache_mC7540D2FBAB562E689ED1BC2399D3F3C31D97145 (RuntimeObject * ___instance0, const RuntimeMethod* method);
// System.ComponentModel.PropertyDescriptor[] System.ComponentModel.ReflectTypeDescriptionProvider::ReflectGetExtendedProperties(System.ComponentModel.IExtenderProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ReflectTypeDescriptionProvider_ReflectGetExtendedProperties_m8DF1B37E62CB64A4249355F85F421C57BA1A16F1 (RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Void System.Collections.ArrayList::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___capacity0, const RuntimeMethod* method);
// System.Type System.ComponentModel.ExtenderProvidedPropertyAttribute::get_ReceiverType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * ExtenderProvidedPropertyAttribute_get_ReceiverType_mE35ED6058DEBE1160D17BF385E2C46E161085E33_inline (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ___properties0, bool ___readOnly1, const RuntimeMethod* method);
// System.ComponentModel.IExtenderProvider[] System.ComponentModel.ReflectTypeDescriptionProvider::GetExtenders(System.Collections.ICollection,System.Object,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* ReflectTypeDescriptionProvider_GetExtenders_m37F9CE244018FF66E847402A2E3F3A0F805D4843 (RuntimeObject* ___components0, RuntimeObject * ___instance1, RuntimeObject* ___cache2, const RuntimeMethod* method);
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::GetPropertyOwner(System.Type,System.Object,System.ComponentModel.PropertyDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectTypeDescriptionProvider_GetPropertyOwner_m1F756D26F3F69E8C5574225867C90D3793E0FCE2 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, RuntimeObject * ___instance1, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___pd2, const RuntimeMethod* method);
// System.String System.ComponentModel.TypeDescriptor::GetComponentName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptor_GetComponentName_m459C41F0CF27D483E7285912BA6936553D90688B (RuntimeObject * ___component0, const RuntimeMethod* method);
// System.Object System.Collections.DictionaryEntry::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, const RuntimeMethod* method);
// System.Object System.Collections.DictionaryEntry::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, const RuntimeMethod* method);
// System.Boolean System.Reflection.Module::op_Equality(System.Reflection.Module,System.Reflection.Module)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Module_op_Equality_m3AEF6BCA2C1DA42DEF271D9C168AD6F5DFFA497A (Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * ___left0, Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * ___right1, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::get_IsPopulated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectedTypeData_get_IsPopulated_m0BE08AAC57F2AA79A21B33C3A4A3FC7EECE35549 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, const RuntimeMethod* method);
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::GetProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ReflectedTypeData_GetProperties_mEDCD21FF9DB7D27C3EF7ACC291E12B348AEC7CF5 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, const RuntimeMethod* method);
// System.Object System.ComponentModel.TypeDescriptor::GetAssociation(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeDescriptor_GetAssociation_m45465AA1409C932535F021345F71CFF99CBC4D98 (Type_t * ___type0, RuntimeObject * ___primary1, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectedTypeData__ctor_mA8A7CF229ABE16D20515D5A827382370C78151AA (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.Array::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsPublic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPublic_mC1B34517A62C56867856DFFE5C7797E7B6CF536C (Type_t * __this, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsNestedPublic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsNestedPublic_m214CC3E241549EDCA1B438E5A66E4B3C66EA5C14 (Type_t * __this, const RuntimeMethod* method);
// System.Boolean System.Reflection.Assembly::op_Equality(System.Reflection.Assembly,System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316 (Assembly_t * ___left0, Assembly_t * ___right1, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectEventDescriptor::.ctor(System.Type,System.Reflection.EventInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor__ctor_m148E8EA0618ACD1C6E5C671B38BDFE3BE048FD12 (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, Type_t * ___componentClass0, EventInfo_t * ___eventInfo1, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method);
// System.Int32 System.ComponentModel.AttributeCollection::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AttributeCollection_get_Count_m18B4E5D1755D27754C9B3C7C89B4BD91B1458EC4 (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * __this, const RuntimeMethod* method);
// System.String System.ComponentModel.ProvidePropertyAttribute::get_ReceiverTypeName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ProvidePropertyAttribute_get_ReceiverTypeName_m66AECE2E8CB9069B1A1EC02C17BE84B4D176BB82_inline (ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * __this, const RuntimeMethod* method);
// System.Type System.ComponentModel.ReflectTypeDescriptionProvider::GetTypeFromName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectTypeDescriptionProvider_GetTypeFromName_mAAEB4488DDC97DDC4780EC28C8CF4BD27BB9E9EC (String_t* ___typeName0, const RuntimeMethod* method);
// System.String System.ComponentModel.ProvidePropertyAttribute::get_PropertyName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ProvidePropertyAttribute_get_PropertyName_mCFB6B8ECE17E7FFD9FA7D5EE4FB0FACEDE552AEC_inline (ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5 (Type_t * __this, String_t* ___name0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types1, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::get_IsStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5 (MethodBase_t * __this, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::get_IsPublic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsPublic_m9DCA641DBE6F06D0DC4A4B2828641A6DEA97F88B (MethodBase_t * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectPropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor__ctor_mED173B591B660C3642C4F39591EF6A2CBBA13C5F (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, Type_t * ___componentClass0, String_t* ___name1, Type_t * ___type2, Type_t * ___receiverType3, MethodInfo_t * ___getMethod4, MethodInfo_t * ___setMethod5, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs6, const RuntimeMethod* method);
// System.Type System.ComponentModel.ReflectPropertyDescriptor::ExtenderGetReceiverType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * ReflectPropertyDescriptor_ExtenderGetReceiverType_mEACD75A498F4FEA40302981092B93DBBC95EB1FA_inline (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.ExtendedPropertyDescriptor::.ctor(System.ComponentModel.ReflectPropertyDescriptor,System.Type,System.ComponentModel.IExtenderProvider,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtendedPropertyDescriptor__ctor_mC8CA04D11B52520D581769FB316244C9EA5F7420 (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * ___extenderInfo0, Type_t * ___receiverType1, RuntimeObject* ___provider2, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes3, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * PropertyInfo_GetGetMethod_m90BA90BA1CAFEE1CC273BB8B3BD289890373CB8A (PropertyInfo_t * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectPropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Reflection.PropertyInfo,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor__ctor_m81658E6FF4EDE19BDC21661F2AD7F1D428DE2D90 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, Type_t * ___componentClass0, String_t* ___name1, Type_t * ___type2, PropertyInfo_t * ___propInfo3, MethodInfo_t * ___getMethod4, MethodInfo_t * ___setMethod5, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs6, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::Refresh()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectedTypeData_Refresh_mA966D08F6AC6693D49DCB60CE3BF23ADBF4DE7BA (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsInterface()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED (Type_t * __this, const RuntimeMethod* method);
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::CreateInstance(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectTypeDescriptionProvider_CreateInstance_m1A50E07E2455EA23FDE96B06EFD81DCA451025D4 (Type_t * ___objectType0, Type_t * ___callingType1, const RuntimeMethod* method);
// System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA (Type_t * __this, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types0, const RuntimeMethod* method);
// System.Boolean System.Reflection.ConstructorInfo::op_Equality(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstructorInfo_op_Equality_mB609E9EE55A0CFDE49239997394F2E458DBF8B53 (ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___left0, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___right1, const RuntimeMethod* method);
// System.Guid System.Guid::NewGuid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29 (const RuntimeMethod* method);
// System.Attribute[] System.ComponentModel.ReflectTypeDescriptionProvider::ReflectGetAttributes(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ReflectTypeDescriptionProvider_ReflectGetAttributes_m378C9A3D2CB09CE7EBA76BCF431A99F6C2EF67DD (Type_t * ___type0, const RuntimeMethod* method);
// System.Reflection.TypeAttributes System.Type::get_Attributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_get_Attributes_m8B229CC7A4DDE25E0EEB1A9F09FC61C499A72163 (Type_t * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.AttributeCollection::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeCollection_CopyTo_mAE40D3E0FE070974B37F9BA5F4600E622E6F621F (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method);
// System.Void System.Collections.Specialized.OrderedDictionary::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedDictionary__ctor_m278F36318DAF73A39FB15CF0ED1439C36237C175 (OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * __this, int32_t ___capacity0, const RuntimeMethod* method);
// System.Boolean System.Collections.Specialized.OrderedDictionary::Contains(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OrderedDictionary_Contains_m957B6F29E97A93AB5A0AF9272ED0AB65E4401EF1 (OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
// System.Void System.Collections.Specialized.OrderedDictionary::set_Item(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedDictionary_set_Item_mA8C71C7FD9354ABDCB0DBFB1977459680BD748BB (OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Int32 System.Collections.Specialized.OrderedDictionary::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OrderedDictionary_get_Count_m55F1F94E727BA49C8D94E7A7088D4C2E4B33605C (OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * __this, const RuntimeMethod* method);
// System.Collections.ICollection System.Collections.Specialized.OrderedDictionary::get_Values()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedDictionary_get_Values_mF389293625F26A739573D543FB5E21FEC6BDAE13 (OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.AttributeCollection::.ctor(System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeCollection__ctor_m1EBB330147608510FB1B60549BA95812EA2A1190 (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * __this, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes0, const RuntimeMethod* method);
// System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * TypeDescriptor_GetAttributes_m0325F763D0AA6354E3F7859E15FF7BE3A8D5F3D3 (RuntimeObject * ___component0, const RuntimeMethod* method);
// System.String System.ComponentModel.TypeConverterAttribute::get_ConverterTypeName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8_inline (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method);
// System.Type System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::GetTypeFromName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectedTypeData_GetTypeFromName_m9E59CF61CA7CAC4E47B9736F36891FCB2E325D27 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, String_t* ___typeName0, const RuntimeMethod* method);
// System.Collections.Hashtable System.ComponentModel.ReflectTypeDescriptionProvider::get_IntrinsicTypeConverters()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ReflectTypeDescriptionProvider_get_IntrinsicTypeConverters_m9CC87D07619955CD00731AD91FC7F8323C18AF4F (const RuntimeMethod* method);
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::SearchIntrinsicTable(System.Collections.Hashtable,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectTypeDescriptionProvider_SearchIntrinsicTable_mD70A9E795A2A1411479E8BB0ACE34604726C9D82 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___table0, Type_t * ___callingType1, const RuntimeMethod* method);
// System.String System.ComponentModel.DefaultEventAttribute::get_Name()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DefaultEventAttribute_get_Name_m1134D3145164417819FEABD3FB749DB89E09A098_inline (DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 * __this, const RuntimeMethod* method);
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * TypeDescriptor_GetEvents_mA157A3DD309A7F9B964A9C1CD8942ED3B395439D (RuntimeObject * ___component0, const RuntimeMethod* method);
// System.String System.ComponentModel.DefaultPropertyAttribute::get_Name()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DefaultPropertyAttribute_get_Name_mE3DA224DF16CD92E047FF0CD3DAC7157300B82EB_inline (DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 * __this, const RuntimeMethod* method);
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_mADA58F0BAD4560D62BF7ADB7186B990D11780B0C (RuntimeObject * ___component0, const RuntimeMethod* method);
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_m0398CE2B5F7971982337E934990B8A2128675024 (Type_t * ___componentType0, const RuntimeMethod* method);
// System.ComponentModel.EditorAttribute System.ComponentModel.ReflectTypeDescriptionProvider/ReflectedTypeData::GetEditorAttribute(System.ComponentModel.AttributeCollection,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * ReflectedTypeData_GetEditorAttribute_m0E1FCE2A7D4A6FF4E6B129F6D938A31DCC475E7A (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___attributes0, Type_t * ___editorBaseType1, const RuntimeMethod* method);
// System.String System.ComponentModel.EditorAttribute::get_EditorTypeName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EditorAttribute_get_EditorTypeName_m0C6CD2A9C2905C7E774825F77B26BF6D842C6090_inline (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method);
// System.Collections.Hashtable System.ComponentModel.ReflectTypeDescriptionProvider::GetEditorTable(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ReflectTypeDescriptionProvider_GetEditorTable_mA1A47B11840415F81A04510F88B5CB225085ED21 (Type_t * ___editorBaseType0, const RuntimeMethod* method);
// System.String System.ComponentModel.EditorAttribute::get_EditorBaseTypeName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EditorAttribute_get_EditorBaseTypeName_m41C1E4DD17CF8A2C14A8C8A8E783687FF2C241D1_inline (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.EventDescriptor>::.ctor(System.Int32)
inline void Dictionary_2__ctor_m677E022065BF1E72B83C3FE0E35860BEE9D6A845 (Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 *, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m2895EBB13AA7D9232058658A7DC404DC5F608923_gshared)(__this, ___capacity0, method);
}
// System.ComponentModel.EventDescriptor[] System.ComponentModel.ReflectTypeDescriptionProvider::ReflectGetEvents(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ReflectTypeDescriptionProvider_ReflectGetEvents_m450768FFE6CB456734C6C9C01FAF08EB80BC67D0 (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.EventDescriptor>::ContainsKey(!0)
inline bool Dictionary_2_ContainsKey_m884FAA4910F04B198C6B0BD971350142CF9B7321 (Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 *, String_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared)(__this, ___key0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.EventDescriptor>::Add(!0,!1)
inline void Dictionary_2_Add_m54593B30AF9AE0DF167A91C9EB0DE2EBF0585CA8 (Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * __this, String_t* ___key0, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 *, String_t*, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method);
}
// System.Int32 System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.EventDescriptor>::get_Count()
inline int32_t Dictionary_2_get_Count_mD459DDC86CEE637B693CF8D067475A1C0BABAC6B (Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 *, const RuntimeMethod*))Dictionary_2_get_Count_m1B06EB9D28DDA7E38DDC20D88532DFF246F03DF6_gshared)(__this, method);
}
// System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.EventDescriptor>::get_Values()
inline ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E * Dictionary_2_get_Values_m83EF51F934DEF17DEEB16AE63C4C9E89DE5850AC (Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * __this, const RuntimeMethod* method)
{
return (( ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E * (*) (Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 *, const RuntimeMethod*))Dictionary_2_get_Values_m58CC32586C31C6F38B730DE7CD79A1FFE9109BA4_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.ComponentModel.EventDescriptor>::CopyTo(!1[],System.Int32)
inline void ValueCollection_CopyTo_m93F5F0418A24D3024919B502958D9A8F3941D196 (ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E * __this, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
(( void (*) (ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E *, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*, int32_t, const RuntimeMethod*))ValueCollection_CopyTo_m172A6ED766A3F35536E7DE9B3F84698510C95168_gshared)(__this, ___array0, ___index1, method);
}
// System.Void System.ComponentModel.EventDescriptorCollection::.ctor(System.ComponentModel.EventDescriptor[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ___events0, bool ___readOnly1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.PropertyDescriptor>::.ctor(System.Int32)
inline void Dictionary_2__ctor_m24D3A769E17A29BB0F5DDFA3EB5B814D2EE4FEFC (Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 *, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m2895EBB13AA7D9232058658A7DC404DC5F608923_gshared)(__this, ___capacity0, method);
}
// System.ComponentModel.PropertyDescriptor[] System.ComponentModel.ReflectTypeDescriptionProvider::ReflectGetProperties(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ReflectTypeDescriptionProvider_ReflectGetProperties_m0F7F5B7591FEC0B4F26419E559C20E3134F522B6 (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.PropertyDescriptor>::ContainsKey(!0)
inline bool Dictionary_2_ContainsKey_m8EE2B265525E3930B7BC2B503CE232A26A4108CD (Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 *, String_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared)(__this, ___key0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.PropertyDescriptor>::Add(!0,!1)
inline void Dictionary_2_Add_m8CA97D8A79287AD4B0BA6D9C175DFAA86CBFE699 (Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * __this, String_t* ___key0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 *, String_t*, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method);
}
// System.Int32 System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.PropertyDescriptor>::get_Count()
inline int32_t Dictionary_2_get_Count_mE835AEFCCB352A3F1B68D9900793B66C3E5EAD97 (Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 *, const RuntimeMethod*))Dictionary_2_get_Count_m1B06EB9D28DDA7E38DDC20D88532DFF246F03DF6_gshared)(__this, method);
}
// System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.String,System.ComponentModel.PropertyDescriptor>::get_Values()
inline ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C * Dictionary_2_get_Values_m8F0EB76F42A5C202CFB98B83BF9FED0CA858572B (Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * __this, const RuntimeMethod* method)
{
return (( ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C * (*) (Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 *, const RuntimeMethod*))Dictionary_2_get_Values_m58CC32586C31C6F38B730DE7CD79A1FFE9109BA4_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.ComponentModel.PropertyDescriptor>::CopyTo(!1[],System.Int32)
inline void ValueCollection_CopyTo_mA9C03E1628819B8A1A9D16D0BA29BCD78E252873 (ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C * __this, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
(( void (*) (ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C *, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*, int32_t, const RuntimeMethod*))ValueCollection_CopyTo_m172A6ED766A3F35536E7DE9B3F84698510C95168_gshared)(__this, ___array0, ___index1, method);
}
// System.Int32 System.String::get_Length()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method);
// System.Void System.EventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method);
// System.ComponentModel.RefreshProperties System.ComponentModel.RefreshPropertiesAttribute::get_RefreshProperties()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t RefreshPropertiesAttribute_get_RefreshProperties_m032066929987C4135416100E001053C6E2EC76A6_inline (RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.RefreshPropertiesAttribute::.ctor(System.ComponentModel.RefreshProperties)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefreshPropertiesAttribute__ctor_mB8898704CFA83ADA63413C57A6705F4A96E096BA (RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * __this, int32_t ___refresh0, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.RunInstallerAttribute::get_RunInstaller()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool RunInstallerAttribute_get_RunInstaller_m29805E321147B984D5A79337CEE0882E99706EF9_inline (RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.RunInstallerAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RunInstallerAttribute__ctor_m41778ECD6304CBF0F34B09816CFA283A7B1E48F2 (RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * __this, bool ___runInstaller0, const RuntimeMethod* method);
// System.Void System.ComponentModel.AsyncCompletedEventArgs::.ctor(System.Exception,System.Boolean,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCompletedEventArgs__ctor_mD64D20EE7FE25F4DC11F08465BADD6803074DAF0 (AsyncCompletedEventArgs_tADCBE47368F4D8B198B46D332B27EE38C8B5F8B7 * __this, Exception_t * ___error0, bool ___cancelled1, RuntimeObject * ___userState2, const RuntimeMethod* method);
// System.Void System.ComponentModel.AsyncCompletedEventArgs::RaiseExceptionIfNecessary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCompletedEventArgs_RaiseExceptionIfNecessary_mC030DA14DA50122BAB8A7BEBFE6507C42A15121E (AsyncCompletedEventArgs_tADCBE47368F4D8B198B46D332B27EE38C8B5F8B7 * __this, const RuntimeMethod* method);
// System.Object System.ComponentModel.AsyncCompletedEventArgs::get_UserState()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * AsyncCompletedEventArgs_get_UserState_mD4969188EBD6FB528946BA46B875A0CD619FC240_inline (AsyncCompletedEventArgs_tADCBE47368F4D8B198B46D332B27EE38C8B5F8B7 * __this, const RuntimeMethod* method);
// System.SByte System.Convert::ToSByte(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m0A9377CF6805CB69E383B55AE48ECBA8FCA52A57 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method);
// System.SByte System.SByte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t SByte_Parse_m3CCD04AED0DC62F729DFA2FF45DA1E4C8BACDD60 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method);
// System.SByte System.SByte::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t SByte_Parse_m463EDECF23E836076D4EAD9C267759FCED4E9A9A (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.String System.SByte::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SByte_ToString_mAD063E83F82B38DAAA379DF61C14D563588034D1 (int8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.ComponentModel.BaseNumberConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83 (BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.CategoryAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CategoryAttribute__ctor_mB1EB6F11D7491FD35988FEEA176310D268DF9398 (CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * __this, String_t* ___category0, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.SettingsBindableAttribute::get_Bindable()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool SettingsBindableAttribute_get_Bindable_m5BAAD91FCA8DE2EF3ACCEBB8B7C1419A1A4F820D_inline (SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * __this, const RuntimeMethod* method);
// System.Int32 System.Boolean::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737 (bool* __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.SettingsBindableAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SettingsBindableAttribute__ctor_m575E03D8661163D53C56D20F5EC65157305929AF (SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * __this, bool ___bindable0, const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831 (const RuntimeMethod* method);
// System.Single System.Convert::ToSingle(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m5F3E5F42FE95CB24ADF3164009FF7136DB1CE888 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Single System.Single::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Single_Parse_m6D591682F5EF2ED4D1CEADF65728E965A739AE74 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method);
// System.Single System.Single::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Single_Parse_m341EA42F7782B136FA7335771DA3C6C96AF6BD86 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.String System.Single::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_mCF682C2751EC9B98F1CE5455066B92D7D3356756 (float* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Boolean System.String::Equals(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
// System.Boolean System.String::StartsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
// System.Boolean System.IO.Path::IsPathRooted(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Path_IsPathRooted_mF70DAF863202638692CF75CCFA09ACBBD90C9A53 (String_t* ___path0, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertTo_m1CD3397D9E5717DE72A13B28C0A75D997A9F337D (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method);
// System.TimeSpan System.TimeSpan::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Parse_m0857A872999FE4A96AA7672A9BE488A137724080 (String_t* ___input0, RuntimeObject* ___formatProvider1, const RuntimeMethod* method);
// System.Void System.FormatException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m4DC702D2EF54A4AD4F704A7217680A4897292DE8 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Void System.ComponentModel.Design.Serialization.InstanceDescriptor::.ctor(System.Reflection.MemberInfo,System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceDescriptor__ctor_m90DA8CABB01052EA5C5022E14FE50533254C71DD (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * __this, MemberInfo_t * ___member0, RuntimeObject* ___arguments1, const RuntimeMethod* method);
// System.String System.String::ToUpper(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293 (String_t* __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1BF85DCCECA37FCD88A0884AF3C4D03566911BF0 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.String System.ComponentModel.ToolboxItemAttribute::get_ToolboxItemTypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ToolboxItemAttribute_get_ToolboxItemTypeName_m37914F48C67146F8C93D27EDA5CB8895DAF5AB31 (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.ToolboxItemAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ToolboxItemAttribute__ctor_m928FB88168D50A283E63170782864167D9BA1A1A (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * __this, String_t* ___toolboxItemTypeName0, const RuntimeMethod* method);
// System.Void System.ComponentModel.ToolboxItemAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ToolboxItemAttribute__ctor_mE30C2B3914C44361BACB775B4F4464F46536CE9D (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * __this, bool ___defaultType0, const RuntimeMethod* method);
// System.Void System.ComponentModel.ToolboxItemFilterAttribute::.ctor(System.String,System.ComponentModel.ToolboxItemFilterType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ToolboxItemFilterAttribute__ctor_mFAC0E4977E406F58310744D0159E3F94EB43BA71 (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, String_t* ___filterString0, int32_t ___filterType1, const RuntimeMethod* method);
// System.ComponentModel.ToolboxItemFilterType System.ComponentModel.ToolboxItemFilterAttribute::get_FilterType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ToolboxItemFilterAttribute_get_FilterType_mFCBA328F82DDB9F4DEBE1E0058858D94988B57E1_inline (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, const RuntimeMethod* method);
// System.String System.ComponentModel.ToolboxItemFilterAttribute::get_FilterString()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ToolboxItemFilterAttribute_get_FilterString_m1A808BD26BC9CB3A41704B4E666590DA2CA88B84_inline (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, const RuntimeMethod* method);
// System.String System.Enum::GetName(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Object System.ComponentModel.Design.Serialization.InstanceDescriptor::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InstanceDescriptor_Invoke_mFA1E52E0F4971ABC4432D30F7CF80304272355C0 (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * __this, const RuntimeMethod* method);
// System.Exception System.ComponentModel.TypeConverter::GetConvertFromException(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * TypeConverter_GetConvertFromException_m10012C012ED008F8AC9DF76BBAD93E19DDA6EAC3 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Object System.ComponentModel.TypeConverter::ConvertFromString(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertFromString_m29A7CD7DC7BD65459316FA4D807A1D16362C524E (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, String_t* ___text2, const RuntimeMethod* method);
// System.Exception System.ComponentModel.TypeConverter::GetConvertToException(System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * TypeConverter_GetConvertToException_mD906D7D39A16CC8ACFC0179208CE2627B73D5C32 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, const RuntimeMethod* method);
// System.String System.ComponentModel.TypeConverter::ConvertToString(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverter_ConvertToString_m2601B49A8D7AB780DBA7F2DD08A3790DF7987FB4 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeConverter_GetProperties_m5C07AE2E3658FB12366BFAA4A6DA26C9AA26F631 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.TypeConverter::get_UseCompatibleTypeConversion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_get_UseCompatibleTypeConversion_m4E8A4FB4000523FF099E5B064BF58BA44664E8CF (const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeConverter/SimplePropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimplePropertyDescriptor__ctor_m8F44C82E16B8574F418418F47D8E6A3A52D0978A (SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA * __this, Type_t * ___componentType0, String_t* ___name1, Type_t * ___propertyType2, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes3, const RuntimeMethod* method);
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
// System.Object System.Array::GetValue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 System.ComponentModel.TypeConverter/StandardValuesCollection::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeConverter/StandardValuesCollection::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandardValuesCollection_CopyTo_mA319F11A11360C258FCEEF3C9EFA53D504BD7C3E (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method);
// System.Collections.IEnumerator System.ComponentModel.TypeConverter/StandardValuesCollection::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeConverterAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverterAttribute__ctor_mD0795A29B6FD59978CAAC6DAF3AC7EC564C519A5 (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptionProvider/EmptyCustomTypeDescriptor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyCustomTypeDescriptor__ctor_m3AF937D2171D0224FC6501A9AFA23F89BAC5B1D0 (EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * __this, const RuntimeMethod* method);
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptionProvider_GetTypeDescriptor_m04847083CB9DB8E7BF69CFCD06283A8D817293A0 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method);
// System.Type System.Type::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_m6C9E6D55EC53587A0851176DA1D27A165724773E (Type_t * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.CustomTypeDescriptor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomTypeDescriptor__ctor_mD442A0BE59DB1D9EF0AC695FC857C18570B2AAD2 (CustomTypeDescriptor_tF8665CD45DFFA622F7EB328A2F77067DD2147689 * __this, const RuntimeMethod* method);
// System.Type System.ComponentModel.TypeDescriptor::get_ComObjectType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptor_get_ComObjectType_mD9A4F9CDA5863A62DEE85F88DECB3FF37CE42A4F (const RuntimeMethod* method);
// System.ComponentModel.TypeDescriptor/TypeDescriptionNode System.ComponentModel.TypeDescriptor::NodeFor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * TypeDescriptor_NodeFor_m767FF87E78839CA052D9BA45FC6E18BD28F8E2E2 (Type_t * ___type0, const RuntimeMethod* method);
// System.ComponentModel.IComNativeDescriptorHandler System.ComponentModel.TypeDescriptor/ComNativeDescriptionProvider::get_Handler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* ComNativeDescriptionProvider_get_Handler_mFDAA26D067DE2DE3A878E18B6E305D122366C6F9_inline (ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor/ComNativeDescriptionProvider::.ctor(System.ComponentModel.IComNativeDescriptorHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComNativeDescriptionProvider__ctor_mCB532BF72BDE7FBEFD35AEEBF76C6A4B9CE8684C (ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D * __this, RuntimeObject* ___handler0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor::AddProvider(System.ComponentModel.TypeDescriptionProvider,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_AddProvider_mD81A072B4AB0D7801F9297879CB43071C8740C9A (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, Type_t * ___type1, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor/ComNativeDescriptionProvider::set_Handler(System.ComponentModel.IComNativeDescriptorHandler)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ComNativeDescriptionProvider_set_Handler_m413D6825B451C480C8311EEB516FDE590D405542_inline (ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::GetProvider(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * TypeDescriptor_GetProvider_m3265CFAFF759A9DC540031E2401F96CD00BE9BF7 (Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor/AttributeProvider::.ctor(System.ComponentModel.TypeDescriptionProvider,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeProvider__ctor_mC68C27A36CD20DF71F5F1FD7A4EF3DC2C0D3BD0A (AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF * __this, TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___existingProvider0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs1, const RuntimeMethod* method);
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::GetProvider(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * TypeDescriptor_GetProvider_mCD95C62422DB0D4811ACE64E72D3C4C5B25BDD90 (RuntimeObject * ___instance0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor::AddProvider(System.ComponentModel.TypeDescriptionProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_AddProvider_mEB5B4337E9B7531C2335CE716429A9881ECD92C1 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, RuntimeObject * ___instance1, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectTypeDescriptionProvider::AddEditorTable(System.Type,System.Collections.Hashtable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectTypeDescriptionProvider_AddEditorTable_m990D5117A898C6C261F5195516D1032F04028262 (Type_t * ___editorBaseType0, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___table1, const RuntimeMethod* method);
// System.ComponentModel.TypeDescriptor/TypeDescriptionNode System.ComponentModel.TypeDescriptor::NodeFor(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * TypeDescriptor_NodeFor_m47CC24E4CFA599136DD05F6DD9A72A4B309D0D90 (Type_t * ___type0, bool ___createDelegator1, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor/TypeDescriptionNode::.ctor(System.ComponentModel.TypeDescriptionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptionNode__ctor_m18D16A33443D7C6C32D09203AE94E5A5DA65BDFF (TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * __this, TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_Refresh_m3EE0C2B17D9683C6C719C590D0D9744D16F58027 (Type_t * ___type0, const RuntimeMethod* method);
// System.ComponentModel.TypeDescriptor/TypeDescriptionNode System.ComponentModel.TypeDescriptor::NodeFor(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * TypeDescriptor_NodeFor_m90ADBC22F629303B34247E6000724298EDDF3E61 (RuntimeObject * ___instance0, bool ___createDelegator1, const RuntimeMethod* method);
// System.Void System.ComponentModel.WeakHashtable::SetWeak(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakHashtable_SetWeak_m3DA0C3EB8F3903CBE44CAA14B13670A69B236F35 (WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_Refresh_mEC7669AD5516911D4C54E02A9F073CF89E59DC6E (RuntimeObject * ___component0, bool ___refreshReflectionProvider1, const RuntimeMethod* method);
// System.String System.ComponentModel.TypeDescriptionProviderAttribute::get_TypeName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TypeDescriptionProviderAttribute_get_TypeName_m6C47AACE737391F28BD1C0A762AABBECA8DB8F75_inline (TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034 * __this, const RuntimeMethod* method);
// System.Object System.Activator::CreateInstance(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16 (Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor::CheckDefaultProvider(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_CheckDefaultProvider_m992A2ED0D5F3621C00369DF8CF35D6AFB17D3ADC (Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.ComponentModel.WeakHashtable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakHashtable__ctor_mE6517A855F67EE9584AF60DB7BC3AF5B2D58C249 (WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * __this, const RuntimeMethod* method);
// System.Void System.WeakReference::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakReference__ctor_m12F7412E9F228AA2276BBB37441CFBCD21A0ABBB (WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D * __this, RuntimeObject * ___target0, const RuntimeMethod* method);
// System.String System.ComponentModel.DesignerAttribute::get_DesignerBaseTypeName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DesignerAttribute_get_DesignerBaseTypeName_mAD0CC16E016DAE5EB60C58A0B7BC5E5361BF1525_inline (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, const RuntimeMethod* method);
// System.String System.ComponentModel.DesignerAttribute::get_DesignerTypeName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DesignerAttribute_get_DesignerTypeName_mD51D180F6C7BCA066BE47F54C6082B78088F662B_inline (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, const RuntimeMethod* method);
// System.Object System.SecurityUtils::SecureCreateInstance(System.Type,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SecurityUtils_SecureCreateInstance_m75CC5B0308F53B01ADC1B5EEBF831C49A53808F4 (Type_t * ___type0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, bool ___allowNonPublic2, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectEventDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor__ctor_mA48120EE25265C1F7739FFA078DC2462F89F24DE (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, Type_t * ___componentClass0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes3, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectEventDescriptor::.ctor(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor__ctor_mA2D771927AB9F0F9D9DE61868FFE7E0BBA173A8F (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, Type_t * ___componentType0, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___oldReflectEventDescriptor1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method);
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ExtenderProvidedPropertyAttribute::get_ExtenderProperty()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ExtenderProvidedPropertyAttribute_get_ExtenderProperty_mB56FFEF61D8278AFFA0FB91710E1A37795738E47_inline (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.ExtendedPropertyDescriptor::.ctor(System.ComponentModel.PropertyDescriptor,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtendedPropertyDescriptor__ctor_mB3DDF0467442FE4325BE2B83F8049DD543DAF389 (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___extender0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectPropertyDescriptor::.ctor(System.Type,System.ComponentModel.PropertyDescriptor,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor__ctor_mD94CA3BC0F9D3DA32E778F0F8724BE6CAA213475 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, Type_t * ___componentClass0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___oldReflectPropertyDescriptor1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.TypeDescriptor::ShouldHideMember(System.ComponentModel.MemberDescriptor,System.Attribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeDescriptor_ShouldHideMember_m7530A7627AB76EB292A22E86DA7D4B1A8DFEAF01 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___member0, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * ___attribute1, const RuntimeMethod* method);
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor::GetDescriptor(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB (Type_t * ___type0, String_t* ___typeName1, const RuntimeMethod* method);
// System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * TypeDescriptor_GetAttributes_mA96E001729AC6C2EF5ED8E0E5573BABF67501C44 (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method);
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor::GetDescriptor(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1 (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method);
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor::GetExtendedDescriptor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE (RuntimeObject * ___component0, const RuntimeMethod* method);
// System.Collections.ICollection System.ComponentModel.TypeDescriptor::PipelineMerge(System.Int32,System.Collections.ICollection,System.Collections.ICollection,System.Object,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_PipelineMerge_m12CD63D0457BCA451AF9635E4E754A1E27122E65 (int32_t ___pipelineType0, RuntimeObject* ___primary1, RuntimeObject* ___secondary2, RuntimeObject * ___instance3, RuntimeObject* ___cache4, const RuntimeMethod* method);
// System.Collections.ICollection System.ComponentModel.TypeDescriptor::PipelineFilter(System.Int32,System.Collections.ICollection,System.Object,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487 (int32_t ___pipelineType0, RuntimeObject* ___members1, RuntimeObject * ___instance2, RuntimeObject* ___cache3, const RuntimeMethod* method);
// System.Collections.ICollection System.ComponentModel.TypeDescriptor::PipelineInitialize(System.Int32,System.Collections.ICollection,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_PipelineInitialize_mE238329E4034835777FC35289A14EA9A1397CF66 (int32_t ___pipelineType0, RuntimeObject* ___members1, RuntimeObject* ___cache2, const RuntimeMethod* method);
// System.ComponentModel.TypeDescriptor/TypeDescriptionNode System.ComponentModel.TypeDescriptor::NodeFor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * TypeDescriptor_NodeFor_m5CD091DA5BF7D035FA36E6E397A96B2A9610E9D5 (RuntimeObject * ___instance0, const RuntimeMethod* method);
// System.String System.ComponentModel.TypeDescriptor::GetClassName(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptor_GetClassName_mACBEC8CAA950839E997F497253ED5940863A7B09 (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method);
// System.String System.ComponentModel.TypeDescriptor::GetComponentName(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptor_GetComponentName_mA9AC0DEB74A03166BEB397C9B8E44B8D3AFA175B (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method);
// System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * TypeDescriptor_GetConverter_mAC1F889B22B0561918C9FE3CE2AFC3B983E6AABC (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method);
// System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::GetDefaultEvent(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * TypeDescriptor_GetDefaultEvent_m4BD6A2A34BA730F46533F1862A9F03D82255D6BC (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method);
// System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::GetDefaultProperty(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * TypeDescriptor_GetDefaultProperty_m92DAAC0601FC527EE5B2399EF1AC88ACB9A488DD (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method);
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptionProvider_GetTypeDescriptor_m8CC34F54B8A643F99C2F4E4C254D661D3DC212D2 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, Type_t * ___objectType0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor/MergedTypeDescriptor::.ctor(System.ComponentModel.ICustomTypeDescriptor,System.ComponentModel.ICustomTypeDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MergedTypeDescriptor__ctor_m07BED02593A42C075C4F95B23D208CF1222C12A0 (MergedTypeDescriptor_t9395D9B4F23C94B7997A9ED698CBEF7995EB162B * __this, RuntimeObject* ___primary0, RuntimeObject* ___secondary1, const RuntimeMethod* method);
// System.Object System.ComponentModel.TypeDescriptor::GetEditor(System.Object,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeDescriptor_GetEditor_m5205BD6EA7BC05FA4DD716AE0E15A5B2A4BC8234 (RuntimeObject * ___component0, Type_t * ___editorBaseType1, bool ___noCustomTypeDesc2, const RuntimeMethod* method);
// System.Collections.ArrayList System.ComponentModel.TypeDescriptor::FilterMembers(System.Collections.IList,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * TypeDescriptor_FilterMembers_m6DE8E2489628CB06AFAE539F0202E73AEB645AA9 (RuntimeObject* ___members0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method);
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object,System.Attribute[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * TypeDescriptor_GetEvents_mA76921E0FEA0CFBA15CF0864A20664F2CC3DC4E4 (RuntimeObject * ___component0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, bool ___noCustomTypeDesc2, const RuntimeMethod* method);
// System.Collections.ICollection System.ComponentModel.TypeDescriptor::PipelineAttributeFilter(System.Int32,System.Collections.ICollection,System.Attribute[],System.Object,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_PipelineAttributeFilter_mDFD0C9F6114800954B3A9275EB4109520570307D (int32_t ___pipelineType0, RuntimeObject* ___members1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___filter2, RuntimeObject * ___instance3, RuntimeObject* ___cache4, const RuntimeMethod* method);
// System.ComponentModel.IExtenderProvider System.ComponentModel.ExtenderProvidedPropertyAttribute::get_Provider()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* ExtenderProvidedPropertyAttribute_get_Provider_m54BFFEFF3AF82BD3F36AC3A1D473FAC53CF368C6_inline (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method);
// System.Int32 System.Threading.Interlocked::Increment(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F (int32_t* ___location0, const RuntimeMethod* method);
// System.String System.Int32::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Type System.ComponentModel.TypeDescriptor::get_InterfaceType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptor_get_InterfaceType_m0DB3316CB939FE67643C044BAF39EB4F69D758E6 (const RuntimeMethod* method);
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_m9A75CAB323930B35DC4ED5EC53BFCB2C85BD7170 (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method);
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetPropertiesImpl(System.Object,System.Attribute[],System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetPropertiesImpl_m0F204546AFC2CCED7979E08E0FF134D7084DC248 (RuntimeObject * ___component0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, bool ___noCustomTypeDesc2, bool ___noAttributes3, const RuntimeMethod* method);
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Attribute[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_mD2A9DF20F4E4373E7144791303ECB062973647FA (RuntimeObject * ___component0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, bool ___noCustomTypeDesc2, const RuntimeMethod* method);
// System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptionProvider_GetReflectionType_m5A731257A8DCBE75C4FE588A1CC73EE2FFCA7E16 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, Type_t * ___objectType0, const RuntimeMethod* method);
// System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptionProvider_GetReflectionType_mB8AF537325510600B0C5A2B9940C970FA9DF23E4 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method);
// System.Type System.ComponentModel.TypeDescriptor::GetNodeForBaseType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptor_GetNodeForBaseType_mD4DC672E329294D1CC62ED255A60FEB216151414 (Type_t * ___searchType0, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectTypeDescriptionProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectTypeDescriptionProvider__ctor_mE3E181FF24A78513F9E285D485FA292B11708B17 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.DelegatingTypeDescriptionProvider::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegatingTypeDescriptionProvider__ctor_mCA7A19A0B8F2306A3FCBE5541B92E0F1D1376B01 (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsCOMObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsCOMObject_m8A4083D3B8D11015F554755827249ABE5E996381 (Type_t * __this, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.TypeDescriptor/AttributeFilterCacheItem::IsValid(System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttributeFilterCacheItem_IsValid_m0218A992CF2B98E84CD36A2C037F948A5DDB6BF9 (AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 * __this, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___filter0, const RuntimeMethod* method);
// System.Void System.Collections.ArrayList::.ctor(System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, RuntimeObject* ___c0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor/AttributeFilterCacheItem::.ctor(System.Attribute[],System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeFilterCacheItem__ctor_m8319ED63E0DDDB46F62ED8DBC04CCD530C477AAF (AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 * __this, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___filter0, RuntimeObject* ___filteredMembers1, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.TypeDescriptor/FilterCacheItem::IsValid(System.ComponentModel.Design.ITypeDescriptorFilterService)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FilterCacheItem_IsValid_m91C02B95AF49F2BD09314CF2EB67F6090052B8B4 (FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 * __this, RuntimeObject* ___filterService0, const RuntimeMethod* method);
// System.String System.ComponentModel.TypeDescriptor::GetExtenderCollisionSuffix(System.ComponentModel.MemberDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptor_GetExtenderCollisionSuffix_m686BE0F744E8E5511310EA611B39FF891AEDC784 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___member0, const RuntimeMethod* method);
// System.Object System.Collections.Specialized.OrderedDictionary::get_Item(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * OrderedDictionary_get_Item_m4BA1DD5702BF43A016E1785285DE53D4E9902E7B (OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
// System.Void System.Collections.Specialized.OrderedDictionary::Remove(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedDictionary_Remove_m32466C87EC2ED256642300B29B89101DD5227AA0 (OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor/FilterCacheItem::.ctor(System.ComponentModel.Design.ITypeDescriptorFilterService,System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FilterCacheItem__ctor_m9398DF7D02FBE4926AFB8D768F6F0936E0929181 (FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 * __this, RuntimeObject* ___filterService0, RuntimeObject* ___filteredMembers1, const RuntimeMethod* method);
// System.Void System.ComponentModel.RefreshEventArgs::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefreshEventArgs__ctor_mE6F6B0E8B783784BF676F37DCB9C196E5064928D (RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * __this, RuntimeObject * ___componentChanged0, const RuntimeMethod* method);
// System.Void System.ComponentModel.RefreshEventHandler::Invoke(System.ComponentModel.RefreshEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefreshEventHandler_Invoke_mF3ADA58FAFE8E56B53F99B9717A4D3E252575FF5 (RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * __this, RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * ___e0, const RuntimeMethod* method);
// System.Void System.ComponentModel.RefreshEventArgs::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefreshEventArgs__ctor_mEC162508026E43A0B4E193163E6ED7D6B682D342 (RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * __this, Type_t * ___typeChanged0, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.ReflectTypeDescriptionProvider::IsPopulated(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectTypeDescriptionProvider_IsPopulated_mDA141741A260991A87C6B4C7EE84FAB26220A534 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.ComponentModel.ReflectTypeDescriptionProvider::Refresh(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectTypeDescriptionProvider_Refresh_m6C8F1779B16BB22FAAABA8E16E5DB5AB1025DF89 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor::RaiseRefresh(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RaiseRefresh_m59D4457847547E4C32159C2F24E1DDDA1D34F60C (RuntimeObject * ___component0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor::RaiseRefresh(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RaiseRefresh_m75708E2026685B087D03E5383F08E65F1608332C (Type_t * ___type0, const RuntimeMethod* method);
// System.Type[] System.ComponentModel.ReflectTypeDescriptionProvider::GetPopulatedTypes(System.Reflection.Module)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ReflectTypeDescriptionProvider_GetPopulatedTypes_mC33B39A2E560A2A7137D85F6A93ECE1F5B269D3B (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * ___module0, const RuntimeMethod* method);
// System.Reflection.Module[] System.Reflection.Assembly::GetModules()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ModuleU5BU5D_t5A96D0D19A757DE3D576E4EB81BE0FD6326DBB6E* Assembly_GetModules_m83EF56F7C280AEA8B27779E1B438B5DBD65CD690 (Assembly_t * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Reflection.Module)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_Refresh_mF1572C257E75B5BBBA5468FE0FB982ACB33F8E90 (Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * ___module0, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor::NodeRemove(System.Object,System.ComponentModel.TypeDescriptionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_NodeRemove_mA49498A2B87FC037CE2A9C6D26CDF6043FEFC122 (RuntimeObject * ___key0, TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider1, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor::RemoveProvider(System.ComponentModel.TypeDescriptionProvider,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RemoveProvider_m6AC5F6B0977537915ED5D177715CF02DA4E6F3C6 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, Type_t * ___type1, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeDescriptor::RemoveProvider(System.ComponentModel.TypeDescriptionProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RemoveProvider_m64D37F2DD488312D85314715D4F41DDCFF14D588 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, RuntimeObject * ___instance1, const RuntimeMethod* method);
// System.Collections.ArrayList System.Collections.ArrayList::Adapter(System.Collections.IList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ArrayList_Adapter_m72B987518E0C05216B4AD5BF8B54047FBC43F56E (RuntimeObject* ___list0, const RuntimeMethod* method);
// System.Void System.Diagnostics.BooleanSwitch::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BooleanSwitch__ctor_m6F066AB4D9A1AF132569B625CB857AE671F94C0B (BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 * __this, String_t* ___displayName0, String_t* ___description1, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator::.ctor(System.ComponentModel.PropertyDescriptorCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorEnumerator__ctor_mD766982CCA3E90487BD77781B1EA0C29F9477B7D (PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D * __this, PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ___owner0, const RuntimeMethod* method)
{
{
__this->set_index_1((-1));
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_0 = ___owner0;
__this->set_owner_0(L_0);
return;
}
}
// System.Object System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * PropertyDescriptorEnumerator_get_Current_m010FD0E05A0FA950A30C202CF643D7B3934557D8 (PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PropertyDescriptorEnumerator_get_Current_m010FD0E05A0FA950A30C202CF643D7B3934557D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_0 = PropertyDescriptorEnumerator_get_Entry_m8BDC6BA3A4A5620F2EA393763B6BF271FD58AB60(__this, /*hidden argument*/NULL);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_1 = L_0;
RuntimeObject * L_2 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
}
// System.Collections.DictionaryEntry System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator::get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 PropertyDescriptorEnumerator_get_Entry_m8BDC6BA3A4A5620F2EA393763B6BF271FD58AB60 (PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D * __this, const RuntimeMethod* method)
{
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * V_0 = NULL;
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_0 = __this->get_owner_0();
int32_t L_1 = __this->get_index_1();
NullCheck(L_0);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_2 = VirtFuncInvoker1< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, int32_t >::Invoke(31 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.Int32) */, L_0, L_1);
V_0 = L_2;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_3);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_5 = V_0;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_6;
memset((&L_6), 0, sizeof(L_6));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_6), L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Object System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator::get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * PropertyDescriptorEnumerator_get_Key_m229FC1FF77DE80A679B1FE548094C02AF396A9B0 (PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D * __this, const RuntimeMethod* method)
{
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_0 = __this->get_owner_0();
int32_t L_1 = __this->get_index_1();
NullCheck(L_0);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_2 = VirtFuncInvoker1< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, int32_t >::Invoke(31 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.Int32) */, L_0, L_1);
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_2);
return L_3;
}
}
// System.Object System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * PropertyDescriptorEnumerator_get_Value_mADCA4A1AE3EB26072C808EACB670596099943359 (PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D * __this, const RuntimeMethod* method)
{
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_0 = __this->get_owner_0();
int32_t L_1 = __this->get_index_1();
NullCheck(L_0);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_2 = VirtFuncInvoker1< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, int32_t >::Invoke(31 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.Int32) */, L_0, L_1);
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_2);
return L_3;
}
}
// System.Boolean System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptorEnumerator_MoveNext_m6AB35EFF1B4CC455D419DF2C4F55DFCFFE420E1B (PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_index_1();
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_1 = __this->get_owner_0();
NullCheck(L_1);
int32_t L_2 = PropertyDescriptorCollection_get_Count_mAA1EA8D4BE590EE7F7E469876FB503F2A0F0E4B0_inline(L_1, /*hidden argument*/NULL);
if ((((int32_t)L_0) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)))))
{
goto IL_0025;
}
}
{
int32_t L_3 = __this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)));
return (bool)1;
}
IL_0025:
{
return (bool)0;
}
}
// System.Void System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorEnumerator_Reset_m4FFA35A10951E339F0A75683E0151217D120329D (PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D * __this, const RuntimeMethod* method)
{
{
__this->set_index_1((-1));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.PropertyTabAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyTabAttribute__ctor_m374749B7B7ED94FF2DC5825776307F8EB70F2D19 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PropertyTabAttribute__ctor_m374749B7B7ED94FF2DC5825776307F8EB70F2D19_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_0 = (PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260*)(PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260*)SZArrayNew(PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260_il2cpp_TypeInfo_var, (uint32_t)0);
__this->set_tabScopes_0(L_0);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)0);
__this->set_tabClassNames_2(L_1);
return;
}
}
// System.Void System.ComponentModel.PropertyTabAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyTabAttribute__ctor_m2D97D6CA0E6285B5E521000EA9E936E00D078706 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, Type_t * ___tabClass0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___tabClass0;
PropertyTabAttribute__ctor_m61853ADFF5EC012A40B967FE861832DDAF7D1A08(__this, L_0, 3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.PropertyTabAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyTabAttribute__ctor_m5FC36840ABEA8EFFEFC580C4584CBE529D2ED933 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, String_t* ___tabClassName0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___tabClassName0;
PropertyTabAttribute__ctor_mB42E8A52E002DEC87211862DAECBAB55BF62249D(__this, L_0, 3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.PropertyTabAttribute::.ctor(System.Type,System.ComponentModel.PropertyTabScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyTabAttribute__ctor_m61853ADFF5EC012A40B967FE861832DDAF7D1A08 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, Type_t * ___tabClass0, int32_t ___tabScope1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PropertyTabAttribute__ctor_m61853ADFF5EC012A40B967FE861832DDAF7D1A08_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = L_0;
Type_t * L_2 = ___tabClass0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_2);
__this->set_tabClasses_1(L_1);
int32_t L_3 = ___tabScope1;
if ((((int32_t)L_3) >= ((int32_t)2)))
{
goto IL_002f;
}
}
{
String_t* L_4 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralB25D43BA18FDE045622CA56DCD4CC5121EF85531, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_5, L_4, _stringLiteralA0DA104AA05B235639E5FC94B288E06E21037F0D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, PropertyTabAttribute__ctor_m61853ADFF5EC012A40B967FE861832DDAF7D1A08_RuntimeMethod_var);
}
IL_002f:
{
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_6 = (PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260*)(PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260*)SZArrayNew(PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260_il2cpp_TypeInfo_var, (uint32_t)1);
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_7 = L_6;
int32_t L_8 = ___tabScope1;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_8);
__this->set_tabScopes_0(L_7);
return;
}
}
// System.Void System.ComponentModel.PropertyTabAttribute::.ctor(System.String,System.ComponentModel.PropertyTabScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyTabAttribute__ctor_mB42E8A52E002DEC87211862DAECBAB55BF62249D (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, String_t* ___tabClassName0, int32_t ___tabScope1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PropertyTabAttribute__ctor_mB42E8A52E002DEC87211862DAECBAB55BF62249D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = L_0;
String_t* L_2 = ___tabClassName0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_2);
__this->set_tabClassNames_2(L_1);
int32_t L_3 = ___tabScope1;
if ((((int32_t)L_3) >= ((int32_t)2)))
{
goto IL_002f;
}
}
{
String_t* L_4 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralB25D43BA18FDE045622CA56DCD4CC5121EF85531, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_5, L_4, _stringLiteralA0DA104AA05B235639E5FC94B288E06E21037F0D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, PropertyTabAttribute__ctor_mB42E8A52E002DEC87211862DAECBAB55BF62249D_RuntimeMethod_var);
}
IL_002f:
{
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_6 = (PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260*)(PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260*)SZArrayNew(PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260_il2cpp_TypeInfo_var, (uint32_t)1);
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_7 = L_6;
int32_t L_8 = ___tabScope1;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_8);
__this->set_tabScopes_0(L_7);
return;
}
}
// System.Type[] System.ComponentModel.PropertyTabAttribute::get_TabClasses()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* PropertyTabAttribute_get_TabClasses_m6CE9F5CB57CDD0AD0BEA1C9CBC9125D1701AC995 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PropertyTabAttribute_get_TabClasses_m6CE9F5CB57CDD0AD0BEA1C9CBC9125D1701AC995_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
Assembly_t * V_4 = NULL;
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = __this->get_tabClasses_1();
if (L_0)
{
goto IL_00f1;
}
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = __this->get_tabClassNames_2();
if (!L_1)
{
goto IL_00f1;
}
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = __this->get_tabClassNames_2();
NullCheck(L_2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))));
__this->set_tabClasses_1(L_3);
V_0 = 0;
goto IL_00e3;
}
IL_0030:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = __this->get_tabClassNames_2();
int32_t L_5 = V_0;
NullCheck(L_4);
int32_t L_6 = L_5;
String_t* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_7);
int32_t L_8 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_7, ((int32_t)44), /*hidden argument*/NULL);
V_1 = L_8;
V_2 = (String_t*)NULL;
V_3 = (String_t*)NULL;
int32_t L_9 = V_1;
if ((((int32_t)L_9) == ((int32_t)(-1))))
{
goto IL_0075;
}
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = __this->get_tabClassNames_2();
int32_t L_11 = V_0;
NullCheck(L_10);
int32_t L_12 = L_11;
String_t* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
int32_t L_14 = V_1;
NullCheck(L_13);
String_t* L_15 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_13, 0, L_14, /*hidden argument*/NULL);
NullCheck(L_15);
String_t* L_16 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_15, /*hidden argument*/NULL);
V_2 = L_16;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = __this->get_tabClassNames_2();
int32_t L_18 = V_0;
NullCheck(L_17);
int32_t L_19 = L_18;
String_t* L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
int32_t L_21 = V_1;
NullCheck(L_20);
String_t* L_22 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_20, ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)), /*hidden argument*/NULL);
NullCheck(L_22);
String_t* L_23 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_22, /*hidden argument*/NULL);
V_3 = L_23;
goto IL_007e;
}
IL_0075:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = __this->get_tabClassNames_2();
int32_t L_25 = V_0;
NullCheck(L_24);
int32_t L_26 = L_25;
String_t* L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
V_2 = L_27;
}
IL_007e:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = __this->get_tabClasses_1();
int32_t L_29 = V_0;
String_t* L_30 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_31 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m8A8A6481B24551476F2AF999A970AD705BA68C7A, L_30, (bool)0, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
NullCheck(L_28);
ArrayElementTypeCheck (L_28, L_31);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(L_29), (Type_t *)L_31);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_32 = __this->get_tabClasses_1();
int32_t L_33 = V_0;
NullCheck(L_32);
int32_t L_34 = L_33;
Type_t * L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
bool L_36 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_35, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_36)
{
goto IL_00df;
}
}
{
String_t* L_37 = V_3;
if (!L_37)
{
goto IL_00c5;
}
}
{
String_t* L_38 = V_3;
Assembly_t * L_39 = Assembly_Load_m4640304E91781FC3D197CD014B0C2DCEAFCFFF55(L_38, /*hidden argument*/NULL);
V_4 = L_39;
Assembly_t * L_40 = V_4;
bool L_41 = Assembly_op_Inequality_m6949ED5777CC2840BF1EBD907C35A20E25F22F7B(L_40, (Assembly_t *)NULL, /*hidden argument*/NULL);
if (!L_41)
{
goto IL_00df;
}
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_42 = __this->get_tabClasses_1();
int32_t L_43 = V_0;
Assembly_t * L_44 = V_4;
String_t* L_45 = V_2;
NullCheck(L_44);
Type_t * L_46 = VirtFuncInvoker2< Type_t *, String_t*, bool >::Invoke(17 /* System.Type System.Reflection.Assembly::GetType(System.String,System.Boolean) */, L_44, L_45, (bool)1);
NullCheck(L_42);
ArrayElementTypeCheck (L_42, L_46);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(L_43), (Type_t *)L_46);
goto IL_00df;
}
IL_00c5:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_48 = L_47;
String_t* L_49 = V_2;
NullCheck(L_48);
ArrayElementTypeCheck (L_48, L_49);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_49);
String_t* L_50 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteralE10FB83C6288E277CEDA92426153BE5417FCBBBA, L_48, /*hidden argument*/NULL);
TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * L_51 = (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 *)il2cpp_codegen_object_new(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1_il2cpp_TypeInfo_var);
TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581(L_51, L_50, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_51, PropertyTabAttribute_get_TabClasses_m6CE9F5CB57CDD0AD0BEA1C9CBC9125D1701AC995_RuntimeMethod_var);
}
IL_00df:
{
int32_t L_52 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)1));
}
IL_00e3:
{
int32_t L_53 = V_0;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_54 = __this->get_tabClassNames_2();
NullCheck(L_54);
if ((((int32_t)L_53) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_54)->max_length)))))))
{
goto IL_0030;
}
}
IL_00f1:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_55 = __this->get_tabClasses_1();
return L_55;
}
}
// System.String[] System.ComponentModel.PropertyTabAttribute::get_TabClassNames()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* PropertyTabAttribute_get_TabClassNames_m66CD61EDE2222A20EA4C8B303B0D76123D02305F (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PropertyTabAttribute_get_TabClassNames_m66CD61EDE2222A20EA4C8B303B0D76123D02305F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = __this->get_tabClassNames_2();
if (!L_0)
{
goto IL_0019;
}
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = __this->get_tabClassNames_2();
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
return ((StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)Castclass((RuntimeObject*)L_2, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var));
}
IL_0019:
{
return (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)NULL;
}
}
// System.ComponentModel.PropertyTabScope[] System.ComponentModel.PropertyTabAttribute::get_TabScopes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* PropertyTabAttribute_get_TabScopes_m9A00F379D99A89E766BA35314A680F98A05FB033 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, const RuntimeMethod* method)
{
{
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_0 = __this->get_tabScopes_0();
return L_0;
}
}
// System.Boolean System.ComponentModel.PropertyTabAttribute::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyTabAttribute_Equals_m3D0564F307FC227C7FB38F5B9D1B667F39A1E584 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PropertyTabAttribute_Equals_m3D0564F307FC227C7FB38F5B9D1B667F39A1E584_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___other0;
if (!((PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 *)IsInstClass((RuntimeObject*)L_0, PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___other0;
bool L_2 = PropertyTabAttribute_Equals_m124B0306933902AE12C2DA00B0997CFABCAF2702(__this, ((PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 *)CastclassClass((RuntimeObject*)L_1, PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
// System.Boolean System.ComponentModel.PropertyTabAttribute::Equals(System.ComponentModel.PropertyTabAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyTabAttribute_Equals_m124B0306933902AE12C2DA00B0997CFABCAF2702 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PropertyTabAttribute_Equals_m124B0306933902AE12C2DA00B0997CFABCAF2702_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * L_0 = ___other0;
if ((!(((RuntimeObject*)(PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 *)L_0) == ((RuntimeObject*)(PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 *)__this))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * L_1 = ___other0;
NullCheck(L_1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = PropertyTabAttribute_get_TabClasses_m6CE9F5CB57CDD0AD0BEA1C9CBC9125D1701AC995(L_1, /*hidden argument*/NULL);
NullCheck(L_2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = PropertyTabAttribute_get_TabClasses_m6CE9F5CB57CDD0AD0BEA1C9CBC9125D1701AC995(__this, /*hidden argument*/NULL);
NullCheck(L_3);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))))
{
goto IL_002a;
}
}
{
PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * L_4 = ___other0;
NullCheck(L_4);
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_5 = PropertyTabAttribute_get_TabScopes_m9A00F379D99A89E766BA35314A680F98A05FB033_inline(L_4, /*hidden argument*/NULL);
NullCheck(L_5);
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_6 = PropertyTabAttribute_get_TabScopes_m9A00F379D99A89E766BA35314A680F98A05FB033_inline(__this, /*hidden argument*/NULL);
NullCheck(L_6);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))))
{
goto IL_002c;
}
}
IL_002a:
{
return (bool)0;
}
IL_002c:
{
V_0 = 0;
goto IL_005f;
}
IL_0030:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = PropertyTabAttribute_get_TabClasses_m6CE9F5CB57CDD0AD0BEA1C9CBC9125D1701AC995(__this, /*hidden argument*/NULL);
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
Type_t * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * L_11 = ___other0;
NullCheck(L_11);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_12 = PropertyTabAttribute_get_TabClasses_m6CE9F5CB57CDD0AD0BEA1C9CBC9125D1701AC995(L_11, /*hidden argument*/NULL);
int32_t L_13 = V_0;
NullCheck(L_12);
int32_t L_14 = L_13;
Type_t * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_16 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_10, L_15, /*hidden argument*/NULL);
if (L_16)
{
goto IL_0059;
}
}
{
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_17 = PropertyTabAttribute_get_TabScopes_m9A00F379D99A89E766BA35314A680F98A05FB033_inline(__this, /*hidden argument*/NULL);
int32_t L_18 = V_0;
NullCheck(L_17);
int32_t L_19 = L_18;
int32_t L_20 = (int32_t)(L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * L_21 = ___other0;
NullCheck(L_21);
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_22 = PropertyTabAttribute_get_TabScopes_m9A00F379D99A89E766BA35314A680F98A05FB033_inline(L_21, /*hidden argument*/NULL);
int32_t L_23 = V_0;
NullCheck(L_22);
int32_t L_24 = L_23;
int32_t L_25 = (int32_t)(L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
if ((((int32_t)L_20) == ((int32_t)L_25)))
{
goto IL_005b;
}
}
IL_0059:
{
return (bool)0;
}
IL_005b:
{
int32_t L_26 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
}
IL_005f:
{
int32_t L_27 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = PropertyTabAttribute_get_TabClasses_m6CE9F5CB57CDD0AD0BEA1C9CBC9125D1701AC995(__this, /*hidden argument*/NULL);
NullCheck(L_28);
if ((((int32_t)L_27) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))))
{
goto IL_0030;
}
}
{
return (bool)1;
}
}
// System.Int32 System.ComponentModel.PropertyTabAttribute::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PropertyTabAttribute_GetHashCode_m5D524E965DAD1830A6BBD5756896CD51B02DAF9D (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.ComponentModel.PropertyTabAttribute::InitializeArrays(System.String[],System.ComponentModel.PropertyTabScope[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyTabAttribute_InitializeArrays_mB629C8AA86B48D76E3024DFB2D04ED9F20044FF2 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___tabClassNames0, PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* ___tabScopes1, const RuntimeMethod* method)
{
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = ___tabClassNames0;
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_1 = ___tabScopes1;
PropertyTabAttribute_InitializeArrays_mD8AE560AB430117121701B018B9C36B9CDA3B531(__this, L_0, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)NULL, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.PropertyTabAttribute::InitializeArrays(System.Type[],System.ComponentModel.PropertyTabScope[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyTabAttribute_InitializeArrays_m40C1411B274D40CF6484CAFB0C2576848511D896 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___tabClasses0, PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* ___tabScopes1, const RuntimeMethod* method)
{
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = ___tabClasses0;
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_1 = ___tabScopes1;
PropertyTabAttribute_InitializeArrays_mD8AE560AB430117121701B018B9C36B9CDA3B531(__this, (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)NULL, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.PropertyTabAttribute::InitializeArrays(System.String[],System.Type[],System.ComponentModel.PropertyTabScope[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyTabAttribute_InitializeArrays_mD8AE560AB430117121701B018B9C36B9CDA3B531 (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___tabClassNames0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___tabClasses1, PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* ___tabScopes2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PropertyTabAttribute_InitializeArrays_mD8AE560AB430117121701B018B9C36B9CDA3B531_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = ___tabClasses1;
if (!L_0)
{
goto IL_0031;
}
}
{
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_1 = ___tabScopes2;
if (!L_1)
{
goto IL_001e;
}
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___tabClasses1;
NullCheck(L_2);
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_3 = ___tabScopes2;
NullCheck(L_3);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))))
{
goto IL_001e;
}
}
{
String_t* L_4 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralFCF25CDFBB71E0585A34354EEA2D84AEE8F57EA2, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, PropertyTabAttribute_InitializeArrays_mD8AE560AB430117121701B018B9C36B9CDA3B531_RuntimeMethod_var);
}
IL_001e:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = ___tabClasses1;
NullCheck((RuntimeArray *)(RuntimeArray *)L_6);
RuntimeObject * L_7 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_6, /*hidden argument*/NULL);
__this->set_tabClasses_1(((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)Castclass((RuntimeObject*)L_7, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var)));
goto IL_0089;
}
IL_0031:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_8 = ___tabClassNames0;
if (!L_8)
{
goto IL_0069;
}
}
{
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_9 = ___tabScopes2;
if (!L_9)
{
goto IL_004f;
}
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = ___tabClasses1;
NullCheck(L_10);
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_11 = ___tabScopes2;
NullCheck(L_11);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))))
{
goto IL_004f;
}
}
{
String_t* L_12 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralFCF25CDFBB71E0585A34354EEA2D84AEE8F57EA2, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, PropertyTabAttribute_InitializeArrays_mD8AE560AB430117121701B018B9C36B9CDA3B531_RuntimeMethod_var);
}
IL_004f:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = ___tabClassNames0;
NullCheck((RuntimeArray *)(RuntimeArray *)L_14);
RuntimeObject * L_15 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_14, /*hidden argument*/NULL);
__this->set_tabClassNames_2(((StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)Castclass((RuntimeObject*)L_15, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var)));
__this->set_tabClasses_1((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)NULL);
goto IL_0089;
}
IL_0069:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_16 = __this->get_tabClasses_1();
if (L_16)
{
goto IL_0089;
}
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = __this->get_tabClassNames_2();
if (L_17)
{
goto IL_0089;
}
}
{
String_t* L_18 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralDB7F56C5583130E4C5D05C8A9FF06FFC0024175E, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_19 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_19, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, PropertyTabAttribute_InitializeArrays_mD8AE560AB430117121701B018B9C36B9CDA3B531_RuntimeMethod_var);
}
IL_0089:
{
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_20 = ___tabScopes2;
if (!L_20)
{
goto IL_00c2;
}
}
{
V_0 = 0;
goto IL_00aa;
}
IL_0090:
{
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_21 = ___tabScopes2;
int32_t L_22 = V_0;
NullCheck(L_21);
int32_t L_23 = L_22;
int32_t L_24 = (int32_t)(L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
if ((((int32_t)L_24) >= ((int32_t)2)))
{
goto IL_00a6;
}
}
{
String_t* L_25 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralB25D43BA18FDE045622CA56DCD4CC5121EF85531, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_26 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_26, L_25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, PropertyTabAttribute_InitializeArrays_mD8AE560AB430117121701B018B9C36B9CDA3B531_RuntimeMethod_var);
}
IL_00a6:
{
int32_t L_27 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_00aa:
{
int32_t L_28 = V_0;
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_29 = ___tabScopes2;
NullCheck(L_29);
if ((((int32_t)L_28) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length)))))))
{
goto IL_0090;
}
}
{
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_30 = ___tabScopes2;
NullCheck((RuntimeArray *)(RuntimeArray *)L_30);
RuntimeObject * L_31 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_30, /*hidden argument*/NULL);
__this->set_tabScopes_0(((PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260*)Castclass((RuntimeObject*)L_31, PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260_il2cpp_TypeInfo_var)));
return;
}
IL_00c2:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_32 = ___tabClasses1;
NullCheck(L_32);
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_33 = (PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260*)(PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260*)SZArrayNew(PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))));
__this->set_tabScopes_0(L_33);
V_1 = 0;
goto IL_00e1;
}
IL_00d4:
{
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_34 = __this->get_tabScopes_0();
int32_t L_35 = V_1;
NullCheck(L_34);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(L_35), (int32_t)3);
int32_t L_36 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1));
}
IL_00e1:
{
int32_t L_37 = V_1;
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_38 = PropertyTabAttribute_get_TabScopes_m9A00F379D99A89E766BA35314A680F98A05FB033_inline(__this, /*hidden argument*/NULL);
NullCheck(L_38);
if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length)))))))
{
goto IL_00d4;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.ProvidePropertyAttribute::.ctor(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProvidePropertyAttribute__ctor_mD10B87B8B3BCD5112CCF83A41F9147F55A8260A2 (ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * __this, String_t* ___propertyName0, Type_t * ___receiverType1, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___propertyName0;
__this->set_propertyName_0(L_0);
Type_t * L_1 = ___receiverType1;
NullCheck(L_1);
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_1);
__this->set_receiverTypeName_1(L_2);
return;
}
}
// System.Void System.ComponentModel.ProvidePropertyAttribute::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProvidePropertyAttribute__ctor_mC11F2B7043C0F64DB17F25278FF7547A62DE27E8 (ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * __this, String_t* ___propertyName0, String_t* ___receiverTypeName1, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___propertyName0;
__this->set_propertyName_0(L_0);
String_t* L_1 = ___receiverTypeName1;
__this->set_receiverTypeName_1(L_1);
return;
}
}
// System.String System.ComponentModel.ProvidePropertyAttribute::get_PropertyName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ProvidePropertyAttribute_get_PropertyName_mCFB6B8ECE17E7FFD9FA7D5EE4FB0FACEDE552AEC (ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_propertyName_0();
return L_0;
}
}
// System.String System.ComponentModel.ProvidePropertyAttribute::get_ReceiverTypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ProvidePropertyAttribute_get_ReceiverTypeName_m66AECE2E8CB9069B1A1EC02C17BE84B4D176BB82 (ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_receiverTypeName_1();
return L_0;
}
}
// System.Object System.ComponentModel.ProvidePropertyAttribute::get_TypeId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ProvidePropertyAttribute_get_TypeId_mDB7BC23FC5124AF05A791B1F411046F825967CCC (ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_0);
String_t* L_2 = __this->get_propertyName_0();
String_t* L_3 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Boolean System.ComponentModel.ProvidePropertyAttribute::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ProvidePropertyAttribute_Equals_mB8923F76CF6AEA2DD5FE365E075654D2FFC7EAF2 (ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ProvidePropertyAttribute_Equals_mB8923F76CF6AEA2DD5FE365E075654D2FFC7EAF2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 *)__this))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 *)IsInstSealed((RuntimeObject*)L_1, ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3_il2cpp_TypeInfo_var));
ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * L_2 = V_0;
if (!L_2)
{
goto IL_0035;
}
}
{
ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = L_3->get_propertyName_0();
String_t* L_5 = __this->get_propertyName_0();
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0035;
}
}
{
ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * L_7 = V_0;
NullCheck(L_7);
String_t* L_8 = L_7->get_receiverTypeName_1();
String_t* L_9 = __this->get_receiverTypeName_1();
bool L_10 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, L_9, /*hidden argument*/NULL);
return L_10;
}
IL_0035:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.ProvidePropertyAttribute::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ProvidePropertyAttribute_GetHashCode_m7038CA4DD0A5745965AAE0CAD18856CA6C8A8EE3 (ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_propertyName_0();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
String_t* L_2 = __this->get_receiverTypeName_1();
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_2);
return ((int32_t)((int32_t)L_1^(int32_t)L_3));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.ReadOnlyAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyAttribute__ctor_m57EACC99156B2E048A2BA49ACF9F58FBF6537752 (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * __this, bool ___isReadOnly0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
bool L_0 = ___isReadOnly0;
__this->set_isReadOnly_0(L_0);
return;
}
}
// System.Boolean System.ComponentModel.ReadOnlyAttribute::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyAttribute_get_IsReadOnly_m0626C74195DDB464E767AFE4CB8C205C267C8866 (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_isReadOnly_0();
return L_0;
}
}
// System.Boolean System.ComponentModel.ReadOnlyAttribute::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyAttribute_Equals_m26B602C82A7F89B540D34BCC23DBAFEF44AA8F4F (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReadOnlyAttribute_Equals_m26B602C82A7F89B540D34BCC23DBAFEF44AA8F4F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
if ((!(((RuntimeObject*)(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B *)__this) == ((RuntimeObject*)(RuntimeObject *)L_0))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject * L_1 = ___value0;
V_0 = ((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B *)IsInstSealed((RuntimeObject*)L_1, ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var));
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * L_2 = V_0;
if (!L_2)
{
goto IL_001f;
}
}
{
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * L_3 = V_0;
NullCheck(L_3);
bool L_4 = ReadOnlyAttribute_get_IsReadOnly_m0626C74195DDB464E767AFE4CB8C205C267C8866_inline(L_3, /*hidden argument*/NULL);
bool L_5 = ReadOnlyAttribute_get_IsReadOnly_m0626C74195DDB464E767AFE4CB8C205C267C8866_inline(__this, /*hidden argument*/NULL);
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
}
IL_001f:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.ReadOnlyAttribute::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyAttribute_GetHashCode_m697ACF28ADDA00FCE0470F0014FB341AB141796E (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean System.ComponentModel.ReadOnlyAttribute::IsDefaultAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyAttribute_IsDefaultAttribute_mFE2BD94B822BE83971CA81A4A364ED0265E7B294 (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReadOnlyAttribute_IsDefaultAttribute_mFE2BD94B822BE83971CA81A4A364ED0265E7B294_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ReadOnlyAttribute_get_IsReadOnly_m0626C74195DDB464E767AFE4CB8C205C267C8866_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var);
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * L_1 = ((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var))->get_Default_3();
NullCheck(L_1);
bool L_2 = ReadOnlyAttribute_get_IsReadOnly_m0626C74195DDB464E767AFE4CB8C205C267C8866_inline(L_1, /*hidden argument*/NULL);
return (bool)((((int32_t)L_0) == ((int32_t)L_2))? 1 : 0);
}
}
// System.Void System.ComponentModel.ReadOnlyAttribute::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyAttribute__cctor_m82F2AA3C79CBEBF7C845B6EF35A5774A25CB33C4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReadOnlyAttribute__cctor_m82F2AA3C79CBEBF7C845B6EF35A5774A25CB33C4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * L_0 = (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B *)il2cpp_codegen_object_new(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var);
ReadOnlyAttribute__ctor_m57EACC99156B2E048A2BA49ACF9F58FBF6537752(L_0, (bool)1, /*hidden argument*/NULL);
((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var))->set_Yes_1(L_0);
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * L_1 = (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B *)il2cpp_codegen_object_new(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var);
ReadOnlyAttribute__ctor_m57EACC99156B2E048A2BA49ACF9F58FBF6537752(L_1, (bool)0, /*hidden argument*/NULL);
((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var))->set_No_2(L_1);
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * L_2 = ((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var))->get_No_2();
((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var))->set_Default_3(L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.RecommendedAsConfigurableAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecommendedAsConfigurableAttribute__ctor_m1BC9A81E7BC555C329472010AAC9F4371EF2A920 (RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * __this, bool ___recommendedAsConfigurable0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
bool L_0 = ___recommendedAsConfigurable0;
__this->set_recommendedAsConfigurable_0(L_0);
return;
}
}
// System.Boolean System.ComponentModel.RecommendedAsConfigurableAttribute::get_RecommendedAsConfigurable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RecommendedAsConfigurableAttribute_get_RecommendedAsConfigurable_m4C6A004F4A4059573D320A02842B43A60B3F1B92 (RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_recommendedAsConfigurable_0();
return L_0;
}
}
// System.Boolean System.ComponentModel.RecommendedAsConfigurableAttribute::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RecommendedAsConfigurableAttribute_Equals_mF18C273B93F9EAA08FAF46109E48D15D40B4AD3F (RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RecommendedAsConfigurableAttribute_Equals_mF18C273B93F9EAA08FAF46109E48D15D40B4AD3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 *)__this))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 *)IsInstClass((RuntimeObject*)L_1, RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_il2cpp_TypeInfo_var));
RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * L_2 = V_0;
if (!L_2)
{
goto IL_001f;
}
}
{
RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * L_3 = V_0;
NullCheck(L_3);
bool L_4 = RecommendedAsConfigurableAttribute_get_RecommendedAsConfigurable_m4C6A004F4A4059573D320A02842B43A60B3F1B92_inline(L_3, /*hidden argument*/NULL);
bool L_5 = __this->get_recommendedAsConfigurable_0();
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
}
IL_001f:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.RecommendedAsConfigurableAttribute::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RecommendedAsConfigurableAttribute_GetHashCode_mBF7CA1B953C4096A5C8BBACA9A491D00CE9B2C8A (RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean System.ComponentModel.RecommendedAsConfigurableAttribute::IsDefaultAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RecommendedAsConfigurableAttribute_IsDefaultAttribute_m92CA502A543F9CEB8C5D9C9BE3D43312C178A89E (RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_recommendedAsConfigurable_0();
return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.ComponentModel.RecommendedAsConfigurableAttribute::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecommendedAsConfigurableAttribute__cctor_mBCCC4D55AFDCFDDEAA62473BD41B1644165F5685 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RecommendedAsConfigurableAttribute__cctor_mBCCC4D55AFDCFDDEAA62473BD41B1644165F5685_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * L_0 = (RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 *)il2cpp_codegen_object_new(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_il2cpp_TypeInfo_var);
RecommendedAsConfigurableAttribute__ctor_m1BC9A81E7BC555C329472010AAC9F4371EF2A920(L_0, (bool)0, /*hidden argument*/NULL);
((RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_StaticFields*)il2cpp_codegen_static_fields_for(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_il2cpp_TypeInfo_var))->set_No_1(L_0);
RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * L_1 = (RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 *)il2cpp_codegen_object_new(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_il2cpp_TypeInfo_var);
RecommendedAsConfigurableAttribute__ctor_m1BC9A81E7BC555C329472010AAC9F4371EF2A920(L_1, (bool)1, /*hidden argument*/NULL);
((RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_StaticFields*)il2cpp_codegen_static_fields_for(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_il2cpp_TypeInfo_var))->set_Yes_2(L_1);
RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * L_2 = ((RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_StaticFields*)il2cpp_codegen_static_fields_for(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_il2cpp_TypeInfo_var))->get_No_1();
((RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_StaticFields*)il2cpp_codegen_static_fields_for(RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55_il2cpp_TypeInfo_var))->set_Default_3(L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.ReferenceConverter::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReferenceConverter__ctor_m2FB1721E7BE48D8857E0BF4690A1FB82C9EC1DC7 (ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReferenceConverter__ctor_m2FB1721E7BE48D8857E0BF4690A1FB82C9EC1DC7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___type0;
__this->set_type_3(L_0);
return;
}
}
// System.Boolean System.ComponentModel.ReferenceConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReferenceConverter_CanConvertFrom_m5B23C497B2BFB682E5733F35369FB714098EA731 (ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReferenceConverter_CanConvertFrom_m5B23C497B2BFB682E5733F35369FB714098EA731_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___sourceType1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0017;
}
}
{
RuntimeObject* L_4 = ___context0;
if (!L_4)
{
goto IL_0017;
}
}
{
return (bool)1;
}
IL_0017:
{
RuntimeObject* L_5 = ___context0;
Type_t * L_6 = ___sourceType1;
bool L_7 = TypeConverter_CanConvertFrom_m8E1F9E41B7DEE6A032EAC70130ADC6356C3F227D(__this, L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Object System.ComponentModel.ReferenceConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReferenceConverter_ConvertFrom_m9D3A8DC96E994551E61A2432EDE3978A61370650 (ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReferenceConverter_ConvertFrom_m9D3A8DC96E994551E61A2432EDE3978A61370650_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject * V_3 = NULL;
RuntimeObject * V_4 = NULL;
{
RuntimeObject * L_0 = ___value2;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)))
{
goto IL_006b;
}
}
{
RuntimeObject * L_1 = ___value2;
NullCheck(((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)));
String_t* L_2 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_2;
String_t* L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_il2cpp_TypeInfo_var);
String_t* L_4 = ((ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_StaticFields*)il2cpp_codegen_static_fields_for(ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_il2cpp_TypeInfo_var))->get_none_2();
bool L_5 = String_Equals_m90EB651A751C3444BADBBD5401109CE05B3E1CFB(L_3, L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0069;
}
}
{
RuntimeObject* L_6 = ___context0;
if (!L_6)
{
goto IL_0069;
}
}
{
RuntimeObject* L_7 = ___context0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IReferenceService_t3D5BD2CDF5EA822FDE024FD069D65B6161BC5F9F_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL);
NullCheck(L_7);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_7, L_9);
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_10, IReferenceService_t3D5BD2CDF5EA822FDE024FD069D65B6161BC5F9F_il2cpp_TypeInfo_var));
RuntimeObject* L_11 = V_1;
if (!L_11)
{
goto IL_004a;
}
}
{
RuntimeObject* L_12 = V_1;
String_t* L_13 = V_0;
NullCheck(L_12);
RuntimeObject * L_14 = InterfaceFuncInvoker1< RuntimeObject *, String_t* >::Invoke(0 /* System.Object System.ComponentModel.Design.IReferenceService::GetReference(System.String) */, IReferenceService_t3D5BD2CDF5EA822FDE024FD069D65B6161BC5F9F_il2cpp_TypeInfo_var, L_12, L_13);
V_3 = L_14;
RuntimeObject * L_15 = V_3;
if (!L_15)
{
goto IL_004a;
}
}
{
RuntimeObject * L_16 = V_3;
return L_16;
}
IL_004a:
{
RuntimeObject* L_17 = ___context0;
NullCheck(L_17);
RuntimeObject* L_18 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.IContainer System.ComponentModel.ITypeDescriptorContext::get_Container() */, ITypeDescriptorContext_tE299A513DA3526C32BFAC7D1FDFFC55AFB1D0CD6_il2cpp_TypeInfo_var, L_17);
V_2 = L_18;
RuntimeObject* L_19 = V_2;
if (!L_19)
{
goto IL_0069;
}
}
{
RuntimeObject* L_20 = V_2;
NullCheck(L_20);
ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895 * L_21 = InterfaceFuncInvoker0< ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895 * >::Invoke(2 /* System.ComponentModel.ComponentCollection System.ComponentModel.IContainer::get_Components() */, IContainer_tA0D1065AEB21197BA9E1F139F6501B8ADCB66077_il2cpp_TypeInfo_var, L_20);
String_t* L_22 = V_0;
NullCheck(L_21);
RuntimeObject* L_23 = VirtFuncInvoker1< RuntimeObject*, String_t* >::Invoke(11 /* System.ComponentModel.IComponent System.ComponentModel.ComponentCollection::get_Item(System.String) */, L_21, L_22);
V_4 = L_23;
RuntimeObject * L_24 = V_4;
if (!L_24)
{
goto IL_0069;
}
}
{
RuntimeObject * L_25 = V_4;
return L_25;
}
IL_0069:
{
return NULL;
}
IL_006b:
{
RuntimeObject* L_26 = ___context0;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_27 = ___culture1;
RuntimeObject * L_28 = ___value2;
RuntimeObject * L_29 = TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3(__this, L_26, L_27, L_28, /*hidden argument*/NULL);
return L_29;
}
}
// System.Object System.ComponentModel.ReferenceConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReferenceConverter_ConvertTo_m82E3032D3598D3E709C5475209ADFE427FD7EDFE (ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReferenceConverter_ConvertTo_m82E3032D3598D3E709C5475209ADFE427FD7EDFE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
String_t* V_1 = NULL;
{
Type_t * L_0 = ___destinationType3;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0015;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFF3BA695D3EFEA937A1B1571C4E6461A8DACB151, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ReferenceConverter_ConvertTo_m82E3032D3598D3E709C5475209ADFE427FD7EDFE_RuntimeMethod_var);
}
IL_0015:
{
Type_t * L_3 = ___destinationType3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_005a;
}
}
{
RuntimeObject * L_7 = ___value2;
if (!L_7)
{
goto IL_0054;
}
}
{
RuntimeObject* L_8 = ___context0;
if (!L_8)
{
goto IL_0054;
}
}
{
RuntimeObject* L_9 = ___context0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (IReferenceService_t3D5BD2CDF5EA822FDE024FD069D65B6161BC5F9F_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL);
NullCheck(L_9);
RuntimeObject * L_12 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_9, L_11);
V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_12, IReferenceService_t3D5BD2CDF5EA822FDE024FD069D65B6161BC5F9F_il2cpp_TypeInfo_var));
RuntimeObject* L_13 = V_0;
if (!L_13)
{
goto IL_0054;
}
}
{
RuntimeObject* L_14 = V_0;
RuntimeObject * L_15 = ___value2;
NullCheck(L_14);
String_t* L_16 = InterfaceFuncInvoker1< String_t*, RuntimeObject * >::Invoke(1 /* System.String System.ComponentModel.Design.IReferenceService::GetName(System.Object) */, IReferenceService_t3D5BD2CDF5EA822FDE024FD069D65B6161BC5F9F_il2cpp_TypeInfo_var, L_14, L_15);
V_1 = L_16;
String_t* L_17 = V_1;
if (!L_17)
{
goto IL_0054;
}
}
{
String_t* L_18 = V_1;
return L_18;
}
IL_0054:
{
IL2CPP_RUNTIME_CLASS_INIT(ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_il2cpp_TypeInfo_var);
String_t* L_19 = ((ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_StaticFields*)il2cpp_codegen_static_fields_for(ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_il2cpp_TypeInfo_var))->get_none_2();
return L_19;
}
IL_005a:
{
RuntimeObject* L_20 = ___context0;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_21 = ___culture1;
RuntimeObject * L_22 = ___value2;
Type_t * L_23 = ___destinationType3;
RuntimeObject * L_24 = TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC(__this, L_20, L_21, L_22, L_23, /*hidden argument*/NULL);
return L_24;
}
}
// System.ComponentModel.TypeConverter_StandardValuesCollection System.ComponentModel.ReferenceConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * ReferenceConverter_GetStandardValues_mF0F5434970C6CA3D182842120296A2FCC3928BE2 (ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReferenceConverter_GetStandardValues_mF0F5434970C6CA3D182842120296A2FCC3928BE2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
RuntimeObject* V_6 = NULL;
RuntimeObject* V_7 = NULL;
RuntimeObject* V_8 = NULL;
RuntimeObject* V_9 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL;
RuntimeObject* L_0 = ___context0;
if (!L_0)
{
goto IL_00f4;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_1, /*hidden argument*/NULL);
V_1 = L_1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = V_1;
NullCheck(L_2);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, NULL);
RuntimeObject* L_3 = ___context0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (IReferenceService_t3D5BD2CDF5EA822FDE024FD069D65B6161BC5F9F_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
NullCheck(L_3);
RuntimeObject * L_6 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_3, L_5);
V_2 = ((RuntimeObject*)Castclass((RuntimeObject*)L_6, IReferenceService_t3D5BD2CDF5EA822FDE024FD069D65B6161BC5F9F_il2cpp_TypeInfo_var));
RuntimeObject* L_7 = V_2;
if (!L_7)
{
goto IL_006c;
}
}
{
RuntimeObject* L_8 = V_2;
Type_t * L_9 = __this->get_type_3();
NullCheck(L_8);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = InterfaceFuncInvoker1< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t * >::Invoke(2 /* System.Object[] System.ComponentModel.Design.IReferenceService::GetReferences(System.Type) */, IReferenceService_t3D5BD2CDF5EA822FDE024FD069D65B6161BC5F9F_il2cpp_TypeInfo_var, L_8, L_9);
V_3 = L_10;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = V_3;
NullCheck(L_11);
V_4 = (((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))));
V_5 = 0;
goto IL_0064;
}
IL_0046:
{
RuntimeObject* L_12 = ___context0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = V_3;
int32_t L_14 = V_5;
NullCheck(L_13);
int32_t L_15 = L_14;
RuntimeObject * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
bool L_17 = VirtFuncInvoker2< bool, RuntimeObject*, RuntimeObject * >::Invoke(16 /* System.Boolean System.ComponentModel.ReferenceConverter::IsValueAllowed(System.ComponentModel.ITypeDescriptorContext,System.Object) */, __this, L_12, L_16);
if (!L_17)
{
goto IL_005e;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_18 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = V_3;
int32_t L_20 = V_5;
NullCheck(L_19);
int32_t L_21 = L_20;
RuntimeObject * L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_18);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_18, L_22);
}
IL_005e:
{
int32_t L_23 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_0064:
{
int32_t L_24 = V_5;
int32_t L_25 = V_4;
if ((((int32_t)L_24) < ((int32_t)L_25)))
{
goto IL_0046;
}
}
{
goto IL_00dd;
}
IL_006c:
{
RuntimeObject* L_26 = ___context0;
NullCheck(L_26);
RuntimeObject* L_27 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.IContainer System.ComponentModel.ITypeDescriptorContext::get_Container() */, ITypeDescriptorContext_tE299A513DA3526C32BFAC7D1FDFFC55AFB1D0CD6_il2cpp_TypeInfo_var, L_26);
V_6 = L_27;
RuntimeObject* L_28 = V_6;
if (!L_28)
{
goto IL_00dd;
}
}
{
RuntimeObject* L_29 = V_6;
NullCheck(L_29);
ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895 * L_30 = InterfaceFuncInvoker0< ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895 * >::Invoke(2 /* System.ComponentModel.ComponentCollection System.ComponentModel.IContainer::get_Components() */, IContainer_tA0D1065AEB21197BA9E1F139F6501B8ADCB66077_il2cpp_TypeInfo_var, L_29);
NullCheck(L_30);
RuntimeObject* L_31 = VirtFuncInvoker0< RuntimeObject* >::Invoke(10 /* System.Collections.IEnumerator System.Collections.ReadOnlyCollectionBase::GetEnumerator() */, L_30);
V_7 = L_31;
}
IL_0086:
try
{ // begin try (depth: 1)
{
goto IL_00bd;
}
IL_0088:
{
RuntimeObject* L_32 = V_7;
NullCheck(L_32);
RuntimeObject * L_33 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_32);
V_8 = ((RuntimeObject*)Castclass((RuntimeObject*)L_33, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var));
RuntimeObject* L_34 = V_8;
if (!L_34)
{
goto IL_00bd;
}
}
IL_009a:
{
Type_t * L_35 = __this->get_type_3();
RuntimeObject* L_36 = V_8;
NullCheck(L_35);
bool L_37 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(138 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_35, L_36);
if (!L_37)
{
goto IL_00bd;
}
}
IL_00a9:
{
RuntimeObject* L_38 = ___context0;
RuntimeObject* L_39 = V_8;
bool L_40 = VirtFuncInvoker2< bool, RuntimeObject*, RuntimeObject * >::Invoke(16 /* System.Boolean System.ComponentModel.ReferenceConverter::IsValueAllowed(System.ComponentModel.ITypeDescriptorContext,System.Object) */, __this, L_38, L_39);
if (!L_40)
{
goto IL_00bd;
}
}
IL_00b4:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_41 = V_1;
RuntimeObject* L_42 = V_8;
NullCheck(L_41);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_41, L_42);
}
IL_00bd:
{
RuntimeObject* L_43 = V_7;
NullCheck(L_43);
bool L_44 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_43);
if (L_44)
{
goto IL_0088;
}
}
IL_00c6:
{
IL2CPP_LEAVE(0xDD, FINALLY_00c8);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00c8;
}
FINALLY_00c8:
{ // begin finally (depth: 1)
{
RuntimeObject* L_45 = V_7;
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_45, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_46 = V_9;
if (!L_46)
{
goto IL_00dc;
}
}
IL_00d5:
{
RuntimeObject* L_47 = V_9;
NullCheck(L_47);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_47);
}
IL_00dc:
{
IL2CPP_END_FINALLY(200)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(200)
{
IL2CPP_JUMP_TBL(0xDD, IL_00dd)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00dd:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_48 = V_1;
NullCheck(L_48);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_49 = VirtFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(46 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_48);
V_0 = L_49;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_50 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_51 = V_0;
NullCheck(L_51);
ReferenceComparer_t3DEA0E67FDC8BA34C167CC4401A1FCC3CFE0B33A * L_52 = (ReferenceComparer_t3DEA0E67FDC8BA34C167CC4401A1FCC3CFE0B33A *)il2cpp_codegen_object_new(ReferenceComparer_t3DEA0E67FDC8BA34C167CC4401A1FCC3CFE0B33A_il2cpp_TypeInfo_var);
ReferenceComparer__ctor_m7547D75DBAFDA96F03302A6FE4E5AE47153AE77E(L_52, __this, /*hidden argument*/NULL);
Array_Sort_mFB179CA0C7D29427781B2F4B86DCCC36DDABE967((RuntimeArray *)(RuntimeArray *)L_50, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length)))), L_52, /*hidden argument*/NULL);
}
IL_00f4:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_53 = V_0;
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_54 = (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 *)il2cpp_codegen_object_new(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3_il2cpp_TypeInfo_var);
StandardValuesCollection__ctor_m75578979BC0D77C0D622E4C9D7C1CB1E047615C1(L_54, (RuntimeObject*)(RuntimeObject*)L_53, /*hidden argument*/NULL);
return L_54;
}
}
// System.Boolean System.ComponentModel.ReferenceConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReferenceConverter_GetStandardValuesExclusive_m4CCC72D62B9A051A01F70D48219920A639481B28 (ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.ComponentModel.ReferenceConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReferenceConverter_GetStandardValuesSupported_mE721CE30F2B1CC5C3BE0A46B349D6C96F0932405 (ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.ComponentModel.ReferenceConverter::IsValueAllowed(System.ComponentModel.ITypeDescriptorContext,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReferenceConverter_IsValueAllowed_m1CFB041C5BF5BE8FA167627CCC406C607498C069 (ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.ComponentModel.ReferenceConverter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReferenceConverter__cctor_m6B8D4BF669E7923D139320E54DF971BF30D4825C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReferenceConverter__cctor_m6B8D4BF669E7923D139320E54DF971BF30D4825C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral3C6B183D348F955357B33A3FBA45083E98AB8125, /*hidden argument*/NULL);
((ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_StaticFields*)il2cpp_codegen_static_fields_for(ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_il2cpp_TypeInfo_var))->set_none_2(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.ReferenceConverter_ReferenceComparer::.ctor(System.ComponentModel.ReferenceConverter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReferenceComparer__ctor_m7547D75DBAFDA96F03302A6FE4E5AE47153AE77E (ReferenceComparer_t3DEA0E67FDC8BA34C167CC4401A1FCC3CFE0B33A * __this, ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * ___converter0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * L_0 = ___converter0;
__this->set_converter_0(L_0);
return;
}
}
// System.Int32 System.ComponentModel.ReferenceConverter_ReferenceComparer::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReferenceComparer_Compare_m0B320ABB7F1A30AD4FB195849020B843764BE1D0 (ReferenceComparer_t3DEA0E67FDC8BA34C167CC4401A1FCC3CFE0B33A * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReferenceComparer_Compare_m0B320ABB7F1A30AD4FB195849020B843764BE1D0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * L_0 = __this->get_converter_0();
RuntimeObject * L_1 = ___item10;
NullCheck(L_0);
String_t* L_2 = TypeConverter_ConvertToString_m2CBE8E127541982F2FB74F81D59AA62D097FD623(L_0, L_1, /*hidden argument*/NULL);
ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 * L_3 = __this->get_converter_0();
RuntimeObject * L_4 = ___item21;
NullCheck(L_3);
String_t* L_5 = TypeConverter_ConvertToString_m2CBE8E127541982F2FB74F81D59AA62D097FD623(L_3, L_4, /*hidden argument*/NULL);
V_0 = L_5;
String_t* L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
int32_t L_8 = String_Compare_mA1D43767F882FE677F238637A8785FCCEE7173D9(L_2, L_6, (bool)0, L_7, /*hidden argument*/NULL);
return L_8;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.ReflectEventDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor__ctor_mA48120EE25265C1F7739FFA078DC2462F89F24DE (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, Type_t * ___componentClass0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectEventDescriptor__ctor_mA48120EE25265C1F7739FFA078DC2462F89F24DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attributes3;
EventDescriptor__ctor_m64DD06C2302860B79602DB0A9538323FBEB778F1(__this, L_0, L_1, /*hidden argument*/NULL);
Type_t * L_2 = ___componentClass0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0030;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = L_4;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, _stringLiteralC9937828CE00719332E80BEA0A26B7DDD25E1012);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralC9937828CE00719332E80BEA0A26B7DDD25E1012);
String_t* L_6 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral75DCD1F61A1F7E67C90F78978534AFCD113053A6, L_5, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ReflectEventDescriptor__ctor_mA48120EE25265C1F7739FFA078DC2462F89F24DE_RuntimeMethod_var);
}
IL_0030:
{
Type_t * L_8 = ___type2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_9 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_8, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_9)
{
goto IL_004b;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (Delegate_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL);
Type_t * L_12 = ___type2;
NullCheck(L_11);
bool L_13 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_11, L_12);
if (L_13)
{
goto IL_0065;
}
}
IL_004b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = L_14;
String_t* L_16 = ___name1;
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_16);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_16);
String_t* L_17 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral8572C0E406DBF82FA5574E14CA56E07642DE3310, L_15, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_18 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_18, L_17, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ReflectEventDescriptor__ctor_mA48120EE25265C1F7739FFA078DC2462F89F24DE_RuntimeMethod_var);
}
IL_0065:
{
Type_t * L_19 = ___componentClass0;
__this->set_componentClass_13(L_19);
Type_t * L_20 = ___type2;
__this->set_type_12(L_20);
return;
}
}
// System.Void System.ComponentModel.ReflectEventDescriptor::.ctor(System.Type,System.Reflection.EventInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor__ctor_m148E8EA0618ACD1C6E5C671B38BDFE3BE048FD12 (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, Type_t * ___componentClass0, EventInfo_t * ___eventInfo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectEventDescriptor__ctor_m148E8EA0618ACD1C6E5C671B38BDFE3BE048FD12_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
EventInfo_t * L_0 = ___eventInfo1;
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_2 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)0);
EventDescriptor__ctor_m64DD06C2302860B79602DB0A9538323FBEB778F1(__this, L_1, L_2, /*hidden argument*/NULL);
Type_t * L_3 = ___componentClass0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_4 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0039;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_5;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, _stringLiteralC9937828CE00719332E80BEA0A26B7DDD25E1012);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralC9937828CE00719332E80BEA0A26B7DDD25E1012);
String_t* L_7 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral75DCD1F61A1F7E67C90F78978534AFCD113053A6, L_6, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ReflectEventDescriptor__ctor_m148E8EA0618ACD1C6E5C671B38BDFE3BE048FD12_RuntimeMethod_var);
}
IL_0039:
{
Type_t * L_9 = ___componentClass0;
__this->set_componentClass_13(L_9);
EventInfo_t * L_10 = ___eventInfo1;
__this->set_realEvent_16(L_10);
return;
}
}
// System.Void System.ComponentModel.ReflectEventDescriptor::.ctor(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor__ctor_mA2D771927AB9F0F9D9DE61868FFE7E0BBA173A8F (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, Type_t * ___componentType0, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___oldReflectEventDescriptor1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectEventDescriptor__ctor_mA2D771927AB9F0F9D9DE61868FFE7E0BBA173A8F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * V_0 = NULL;
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_0 = ___oldReflectEventDescriptor1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attributes2;
EventDescriptor__ctor_m8F8D69FB49D3DBACBD9DF097476A561A5C642888(__this, L_0, L_1, /*hidden argument*/NULL);
Type_t * L_2 = ___componentType0;
__this->set_componentClass_13(L_2);
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_3 = ___oldReflectEventDescriptor1;
NullCheck(L_3);
Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.ComponentModel.EventDescriptor::get_EventType() */, L_3);
__this->set_type_12(L_4);
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_5 = ___oldReflectEventDescriptor1;
V_0 = ((ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 *)IsInstSealed((RuntimeObject*)L_5, ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360_il2cpp_TypeInfo_var));
ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * L_6 = V_0;
if (!L_6)
{
goto IL_0044;
}
}
{
ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * L_7 = V_0;
NullCheck(L_7);
MethodInfo_t * L_8 = L_7->get_addMethod_14();
__this->set_addMethod_14(L_8);
ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * L_9 = V_0;
NullCheck(L_9);
MethodInfo_t * L_10 = L_9->get_removeMethod_15();
__this->set_removeMethod_15(L_10);
__this->set_filledMethods_17((bool)1);
}
IL_0044:
{
return;
}
}
// System.Type System.ComponentModel.ReflectEventDescriptor::get_ComponentType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectEventDescriptor_get_ComponentType_mB2EB65ABBB6BB4E3A83C5985AFE9D04EF04A5E32 (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_componentClass_13();
return L_0;
}
}
// System.Type System.ComponentModel.ReflectEventDescriptor::get_EventType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectEventDescriptor_get_EventType_m837FD06BF5E55F6DD6B1FD15DEED69767D19429F (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, const RuntimeMethod* method)
{
{
ReflectEventDescriptor_FillMethods_m7AAD8CF57D3F38B679BB63966AD032684072E3B7(__this, /*hidden argument*/NULL);
Type_t * L_0 = __this->get_type_12();
return L_0;
}
}
// System.Boolean System.ComponentModel.ReflectEventDescriptor::get_IsMulticast()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectEventDescriptor_get_IsMulticast_mDCE6D94CAADAFD0BAC3414D432B3C19C8E2D1703 (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectEventDescriptor_get_IsMulticast_mDCE6D94CAADAFD0BAC3414D432B3C19C8E2D1703_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (MulticastDelegate_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.ComponentModel.EventDescriptor::get_EventType() */, __this);
NullCheck(L_1);
bool L_3 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_1, L_2);
return L_3;
}
}
// System.Void System.ComponentModel.ReflectEventDescriptor::AddEventHandler(System.Object,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor_AddEventHandler_m48D106DBB820A98053D0AB78E162E9CD9FE9FC59 (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, RuntimeObject * ___component0, Delegate_t * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectEventDescriptor_AddEventHandler_m48D106DBB820A98053D0AB78E162E9CD9FE9FC59_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * V_3 = NULL;
RuntimeObject* V_4 = NULL;
Delegate_t * V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ReflectEventDescriptor_FillMethods_m7AAD8CF57D3F38B679BB63966AD032684072E3B7(__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___component0;
if (!L_0)
{
goto IL_00f1;
}
}
{
RuntimeObject * L_1 = ___component0;
RuntimeObject* L_2 = MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6(L_1, /*hidden argument*/NULL);
V_0 = L_2;
V_1 = (RuntimeObject*)NULL;
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_002e;
}
}
{
RuntimeObject* L_4 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL);
NullCheck(L_4);
RuntimeObject * L_7 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_4, L_6);
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_7, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var));
}
IL_002e:
{
RuntimeObject* L_8 = V_1;
if (!L_8)
{
goto IL_004b;
}
}
IL_0031:
try
{ // begin try (depth: 1)
RuntimeObject* L_9 = V_1;
RuntimeObject * L_10 = ___component0;
NullCheck(L_9);
InterfaceActionInvoker2< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * >::Invoke(1 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanging(System.Object,System.ComponentModel.MemberDescriptor) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_9, L_10, __this);
goto IL_004b;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_003b;
throw e;
}
CATCH_003b:
{ // begin catch(System.ComponentModel.Design.CheckoutException)
{
V_3 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)__exception_local);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_11 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_12 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_StaticFields*)il2cpp_codegen_static_fields_for(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var))->get_Canceled_17();
if ((!(((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_11) == ((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_12))))
{
goto IL_0049;
}
}
IL_0044:
{
goto IL_00f1;
}
IL_0049:
{
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_13 = V_3;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ReflectEventDescriptor_AddEventHandler_m48D106DBB820A98053D0AB78E162E9CD9FE9FC59_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_004b:
{
V_2 = (bool)0;
RuntimeObject* L_14 = V_0;
if (!L_14)
{
goto IL_00ca;
}
}
{
RuntimeObject* L_15 = V_0;
NullCheck(L_15);
bool L_16 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.ComponentModel.ISite::get_DesignMode() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_15);
if (!L_16)
{
goto IL_00ca;
}
}
{
Type_t * L_17 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.ComponentModel.EventDescriptor::get_EventType() */, __this);
Delegate_t * L_18 = ___value1;
NullCheck(L_18);
Type_t * L_19 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_18, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_20 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_17, L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_008a;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = L_21;
String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
NullCheck(L_22);
ArrayElementTypeCheck (L_22, L_23);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23);
String_t* L_24 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral42CA2466BE73DFBF4566E79C71B6090A7346DF09, L_22, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_25 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_25, L_24, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ReflectEventDescriptor_AddEventHandler_m48D106DBB820A98053D0AB78E162E9CD9FE9FC59_RuntimeMethod_var);
}
IL_008a:
{
RuntimeObject* L_26 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL);
NullCheck(L_26);
RuntimeObject * L_29 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_26, L_28);
V_4 = ((RuntimeObject*)Castclass((RuntimeObject*)L_29, IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_il2cpp_TypeInfo_var));
RuntimeObject* L_30 = V_4;
if (!L_30)
{
goto IL_00ca;
}
}
{
RuntimeObject* L_31 = V_4;
NullCheck(L_31);
RuntimeObject * L_32 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.ComponentModel.Design.IDictionaryService::GetValue(System.Object) */, IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_il2cpp_TypeInfo_var, L_31, __this);
V_5 = ((Delegate_t *)CastclassClass((RuntimeObject*)L_32, Delegate_t_il2cpp_TypeInfo_var));
Delegate_t * L_33 = V_5;
Delegate_t * L_34 = ___value1;
Delegate_t * L_35 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1(L_33, L_34, /*hidden argument*/NULL);
V_5 = L_35;
RuntimeObject* L_36 = V_4;
Delegate_t * L_37 = V_5;
NullCheck(L_36);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.ComponentModel.Design.IDictionaryService::SetValue(System.Object,System.Object) */, IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_il2cpp_TypeInfo_var, L_36, __this, L_37);
V_2 = (bool)1;
}
IL_00ca:
{
bool L_38 = V_2;
if (L_38)
{
goto IL_00e4;
}
}
{
MethodInfo_t * L_39 = __this->get_addMethod_14();
RuntimeObject * L_40 = ___component0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_41 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_42 = L_41;
Delegate_t * L_43 = ___value1;
NullCheck(L_42);
ArrayElementTypeCheck (L_42, L_43);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_43);
SecurityUtils_MethodInfoInvoke_mF5977E97A2A9073E72C098B312789C9949128AF0(L_39, L_40, L_42, /*hidden argument*/NULL);
}
IL_00e4:
{
RuntimeObject* L_44 = V_1;
if (!L_44)
{
goto IL_00f1;
}
}
{
RuntimeObject* L_45 = V_1;
RuntimeObject * L_46 = ___component0;
Delegate_t * L_47 = ___value1;
NullCheck(L_45);
InterfaceActionInvoker4< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 *, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanged(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_45, L_46, __this, NULL, L_47);
}
IL_00f1:
{
return;
}
}
// System.Void System.ComponentModel.ReflectEventDescriptor::FillAttributes(System.Collections.IList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor_FillAttributes_m08930506CD8D22D7E668273DDC52AA9542A6A5A5 (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, RuntimeObject* ___attributes0, const RuntimeMethod* method)
{
{
ReflectEventDescriptor_FillMethods_m7AAD8CF57D3F38B679BB63966AD032684072E3B7(__this, /*hidden argument*/NULL);
EventInfo_t * L_0 = __this->get_realEvent_16();
bool L_1 = EventInfo_op_Inequality_mC7E27E2551DF4073E8DC033A89A705596AFF344C(L_0, (EventInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0023;
}
}
{
EventInfo_t * L_2 = __this->get_realEvent_16();
RuntimeObject* L_3 = ___attributes0;
ReflectEventDescriptor_FillEventInfoAttribute_m3E056666DC23914CEE8B585782483C0207E6FD53(__this, L_2, L_3, /*hidden argument*/NULL);
goto IL_003d;
}
IL_0023:
{
MethodInfo_t * L_4 = __this->get_removeMethod_15();
RuntimeObject* L_5 = ___attributes0;
ReflectEventDescriptor_FillSingleMethodAttribute_mC67C5577BF6FBA1FFCBADED02CC4F03F8E9AEC9B(__this, L_4, L_5, /*hidden argument*/NULL);
MethodInfo_t * L_6 = __this->get_addMethod_14();
RuntimeObject* L_7 = ___attributes0;
ReflectEventDescriptor_FillSingleMethodAttribute_mC67C5577BF6FBA1FFCBADED02CC4F03F8E9AEC9B(__this, L_6, L_7, /*hidden argument*/NULL);
}
IL_003d:
{
RuntimeObject* L_8 = ___attributes0;
MemberDescriptor_FillAttributes_mA33C5FFD1DE2BA560E335B6549E60A229B9F773B(__this, L_8, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.ReflectEventDescriptor::FillEventInfoAttribute(System.Reflection.EventInfo,System.Collections.IList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor_FillEventInfoAttribute_m3E056666DC23914CEE8B585782483C0207E6FD53 (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, EventInfo_t * ___realEventInfo0, RuntimeObject* ___attributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectEventDescriptor_FillEventInfoAttribute_m3E056666DC23914CEE8B585782483C0207E6FD53_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
Type_t * V_2 = NULL;
int32_t V_3 = 0;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* V_4 = NULL;
MemberInfo_t * V_5 = NULL;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* V_6 = NULL;
int32_t V_7 = 0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_8 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_9 = NULL;
int32_t V_10 = 0;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_11 = NULL;
{
EventInfo_t * L_0 = ___realEventInfo0;
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0);
V_0 = L_1;
V_1 = ((int32_t)22);
EventInfo_t * L_2 = ___realEventInfo0;
NullCheck(L_2);
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_ReflectedType() */, L_2);
V_2 = L_3;
V_3 = 0;
goto IL_0020;
}
IL_0015:
{
int32_t L_4 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
Type_t * L_5 = V_2;
NullCheck(L_5);
Type_t * L_6 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_5);
V_2 = L_6;
}
IL_0020:
{
Type_t * L_7 = V_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL);
bool L_10 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_7, L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_0015;
}
}
{
int32_t L_11 = V_3;
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_00cf;
}
}
{
EventInfo_t * L_12 = ___realEventInfo0;
NullCheck(L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_ReflectedType() */, L_12);
V_2 = L_13;
int32_t L_14 = V_3;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_15 = (AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448*)(AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448*)SZArrayNew(AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448_il2cpp_TypeInfo_var, (uint32_t)L_14);
V_4 = L_15;
goto IL_0074;
}
IL_004a:
{
Type_t * L_16 = V_2;
String_t* L_17 = V_0;
int32_t L_18 = V_1;
NullCheck(L_16);
EventInfo_t * L_19 = VirtFuncInvoker2< EventInfo_t *, String_t*, int32_t >::Invoke(57 /* System.Reflection.EventInfo System.Type::GetEvent(System.String,System.Reflection.BindingFlags) */, L_16, L_17, L_18);
V_5 = L_19;
MemberInfo_t * L_20 = V_5;
bool L_21 = MemberInfo_op_Inequality_mAFFDD84E1AF346532192B32FA8787E64072B4F5B(L_20, (MemberInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_006d;
}
}
{
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_22 = V_4;
int32_t L_23 = V_3;
int32_t L_24 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1));
V_3 = L_24;
MemberInfo_t * L_25 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_26 = ReflectTypeDescriptionProvider_ReflectGetAttributes_mA3DA28648085382DC968178CE6B9D5288DE17739(L_25, /*hidden argument*/NULL);
NullCheck(L_22);
ArrayElementTypeCheck (L_22, L_26);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)L_26);
}
IL_006d:
{
Type_t * L_27 = V_2;
NullCheck(L_27);
Type_t * L_28 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_27);
V_2 = L_28;
}
IL_0074:
{
Type_t * L_29 = V_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_30 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_31 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_30, /*hidden argument*/NULL);
bool L_32 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_29, L_31, /*hidden argument*/NULL);
if (L_32)
{
goto IL_004a;
}
}
{
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_33 = V_4;
V_6 = L_33;
V_7 = 0;
goto IL_00c7;
}
IL_008f:
{
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_34 = V_6;
int32_t L_35 = V_7;
NullCheck(L_34);
int32_t L_36 = L_35;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_37 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
V_8 = L_37;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_38 = V_8;
if (!L_38)
{
goto IL_00c1;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_39 = V_8;
V_9 = L_39;
V_10 = 0;
goto IL_00b9;
}
IL_00a3:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_40 = V_9;
int32_t L_41 = V_10;
NullCheck(L_40);
int32_t L_42 = L_41;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
V_11 = L_43;
RuntimeObject* L_44 = ___attributes1;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_45 = V_11;
NullCheck(L_44);
InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_44, L_45);
int32_t L_46 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1));
}
IL_00b9:
{
int32_t L_47 = V_10;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_48 = V_9;
NullCheck(L_48);
if ((((int32_t)L_47) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))))))
{
goto IL_00a3;
}
}
IL_00c1:
{
int32_t L_49 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1));
}
IL_00c7:
{
int32_t L_50 = V_7;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_51 = V_6;
NullCheck(L_51);
if ((((int32_t)L_50) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length)))))))
{
goto IL_008f;
}
}
IL_00cf:
{
return;
}
}
// System.Void System.ComponentModel.ReflectEventDescriptor::FillMethods()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor_FillMethods_m7AAD8CF57D3F38B679BB63966AD032684072E3B7 (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectEventDescriptor_FillMethods_m7AAD8CF57D3F38B679BB63966AD032684072E3B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventInfo_t * V_0 = NULL;
Type_t * V_1 = NULL;
int32_t V_2 = 0;
EventInfo_t * V_3 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_4 = NULL;
{
bool L_0 = __this->get_filledMethods_17();
if (!L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
EventInfo_t * L_1 = __this->get_realEvent_16();
bool L_2 = EventInfo_op_Inequality_mC7E27E2551DF4073E8DC033A89A705596AFF344C(L_1, (EventInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_00f3;
}
}
{
EventInfo_t * L_3 = __this->get_realEvent_16();
NullCheck(L_3);
MethodInfo_t * L_4 = EventInfo_GetAddMethod_mCA36A5E78615F6777817A647355C2BAF49154619(L_3, /*hidden argument*/NULL);
__this->set_addMethod_14(L_4);
EventInfo_t * L_5 = __this->get_realEvent_16();
NullCheck(L_5);
MethodInfo_t * L_6 = EventInfo_GetRemoveMethod_m18316DA28217AC9BED8EEB585BCDAA452B963132(L_5, /*hidden argument*/NULL);
__this->set_removeMethod_15(L_6);
V_0 = (EventInfo_t *)NULL;
MethodInfo_t * L_7 = __this->get_addMethod_14();
bool L_8 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_7, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_8)
{
goto IL_005a;
}
}
{
MethodInfo_t * L_9 = __this->get_removeMethod_15();
bool L_10 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_9, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_00ab;
}
}
IL_005a:
{
Type_t * L_11 = __this->get_componentClass_13();
NullCheck(L_11);
Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_11);
V_1 = L_12;
goto IL_0090;
}
IL_0068:
{
V_2 = ((int32_t)52);
Type_t * L_13 = V_1;
EventInfo_t * L_14 = __this->get_realEvent_16();
NullCheck(L_14);
String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_14);
int32_t L_16 = V_2;
NullCheck(L_13);
EventInfo_t * L_17 = VirtFuncInvoker2< EventInfo_t *, String_t*, int32_t >::Invoke(57 /* System.Reflection.EventInfo System.Type::GetEvent(System.String,System.Reflection.BindingFlags) */, L_13, L_15, L_16);
V_3 = L_17;
EventInfo_t * L_18 = V_3;
NullCheck(L_18);
MethodInfo_t * L_19 = EventInfo_GetAddMethod_mCA36A5E78615F6777817A647355C2BAF49154619(L_18, /*hidden argument*/NULL);
bool L_20 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_19, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_0090;
}
}
{
EventInfo_t * L_21 = V_3;
V_0 = L_21;
goto IL_00ab;
}
IL_0090:
{
Type_t * L_22 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_23 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_22, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_00ab;
}
}
{
Type_t * L_24 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_25 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_26 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_25, /*hidden argument*/NULL);
bool L_27 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_24, L_26, /*hidden argument*/NULL);
if (L_27)
{
goto IL_0068;
}
}
IL_00ab:
{
EventInfo_t * L_28 = V_0;
bool L_29 = EventInfo_op_Inequality_mC7E27E2551DF4073E8DC033A89A705596AFF344C(L_28, (EventInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_29)
{
goto IL_00dd;
}
}
{
EventInfo_t * L_30 = V_0;
NullCheck(L_30);
MethodInfo_t * L_31 = EventInfo_GetAddMethod_mCA36A5E78615F6777817A647355C2BAF49154619(L_30, /*hidden argument*/NULL);
__this->set_addMethod_14(L_31);
EventInfo_t * L_32 = V_0;
NullCheck(L_32);
MethodInfo_t * L_33 = EventInfo_GetRemoveMethod_m18316DA28217AC9BED8EEB585BCDAA452B963132(L_32, /*hidden argument*/NULL);
__this->set_removeMethod_15(L_33);
EventInfo_t * L_34 = V_0;
NullCheck(L_34);
Type_t * L_35 = VirtFuncInvoker0< Type_t * >::Invoke(16 /* System.Type System.Reflection.EventInfo::get_EventHandlerType() */, L_34);
__this->set_type_12(L_35);
goto IL_01c5;
}
IL_00dd:
{
EventInfo_t * L_36 = __this->get_realEvent_16();
NullCheck(L_36);
Type_t * L_37 = VirtFuncInvoker0< Type_t * >::Invoke(16 /* System.Type System.Reflection.EventInfo::get_EventHandlerType() */, L_36);
__this->set_type_12(L_37);
goto IL_01c5;
}
IL_00f3:
{
Type_t * L_38 = __this->get_componentClass_13();
String_t* L_39 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
NullCheck(L_38);
EventInfo_t * L_40 = Type_GetEvent_m769CDE0E3BA7074940DC4E0E086F71A7E7D09721(L_38, L_39, /*hidden argument*/NULL);
__this->set_realEvent_16(L_40);
EventInfo_t * L_41 = __this->get_realEvent_16();
bool L_42 = EventInfo_op_Inequality_mC7E27E2551DF4073E8DC033A89A705596AFF344C(L_41, (EventInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_42)
{
goto IL_011f;
}
}
{
ReflectEventDescriptor_FillMethods_m7AAD8CF57D3F38B679BB63966AD032684072E3B7(__this, /*hidden argument*/NULL);
return;
}
IL_011f:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_43 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_44 = L_43;
Type_t * L_45 = __this->get_type_12();
NullCheck(L_44);
ArrayElementTypeCheck (L_44, L_45);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_45);
V_4 = L_44;
Type_t * L_46 = __this->get_componentClass_13();
String_t* L_47 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
String_t* L_48 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral6F4CF4C32070EEC47857D2D1C0E9656C7B2D0F80, L_47, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_49 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_50 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_51 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_50, /*hidden argument*/NULL);
MethodInfo_t * L_52 = MemberDescriptor_FindMethod_m4B26329E481C2681B235A311E2E7D022DC891773(L_46, L_48, L_49, L_51, /*hidden argument*/NULL);
__this->set_addMethod_14(L_52);
Type_t * L_53 = __this->get_componentClass_13();
String_t* L_54 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
String_t* L_55 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral194F10DF7E62063526272FE8EC1D30CA08046A77, L_54, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_56 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) };
Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_57, /*hidden argument*/NULL);
MethodInfo_t * L_59 = MemberDescriptor_FindMethod_m4B26329E481C2681B235A311E2E7D022DC891773(L_53, L_55, L_56, L_58, /*hidden argument*/NULL);
__this->set_removeMethod_15(L_59);
MethodInfo_t * L_60 = __this->get_addMethod_14();
bool L_61 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_60, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_61)
{
goto IL_01a6;
}
}
{
MethodInfo_t * L_62 = __this->get_removeMethod_15();
bool L_63 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_62, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_63)
{
goto IL_01c5;
}
}
IL_01a6:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_64 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_65 = L_64;
String_t* L_66 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
NullCheck(L_65);
ArrayElementTypeCheck (L_65, L_66);
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_66);
String_t* L_67 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral90CE69628586A9232EAA11888B4D010682DB9C4C, L_65, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_68 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_68, L_67, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_68, ReflectEventDescriptor_FillMethods_m7AAD8CF57D3F38B679BB63966AD032684072E3B7_RuntimeMethod_var);
}
IL_01c5:
{
__this->set_filledMethods_17((bool)1);
return;
}
}
// System.Void System.ComponentModel.ReflectEventDescriptor::FillSingleMethodAttribute(System.Reflection.MethodInfo,System.Collections.IList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor_FillSingleMethodAttribute_mC67C5577BF6FBA1FFCBADED02CC4F03F8E9AEC9B (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, MethodInfo_t * ___realMethodInfo0, RuntimeObject* ___attributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectEventDescriptor_FillSingleMethodAttribute_mC67C5577BF6FBA1FFCBADED02CC4F03F8E9AEC9B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
Type_t * V_2 = NULL;
int32_t V_3 = 0;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* V_4 = NULL;
MemberInfo_t * V_5 = NULL;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* V_6 = NULL;
int32_t V_7 = 0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_8 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_9 = NULL;
int32_t V_10 = 0;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_11 = NULL;
{
MethodInfo_t * L_0 = ___realMethodInfo0;
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0);
V_0 = L_1;
V_1 = ((int32_t)22);
MethodInfo_t * L_2 = ___realMethodInfo0;
NullCheck(L_2);
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_ReflectedType() */, L_2);
V_2 = L_3;
V_3 = 0;
goto IL_0020;
}
IL_0015:
{
int32_t L_4 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
Type_t * L_5 = V_2;
NullCheck(L_5);
Type_t * L_6 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_5);
V_2 = L_6;
}
IL_0020:
{
Type_t * L_7 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_8 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_7, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_003b;
}
}
{
Type_t * L_9 = V_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL);
bool L_12 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_9, L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_0015;
}
}
IL_003b:
{
int32_t L_13 = V_3;
if ((((int32_t)L_13) <= ((int32_t)0)))
{
goto IL_00e1;
}
}
{
MethodInfo_t * L_14 = ___realMethodInfo0;
NullCheck(L_14);
Type_t * L_15 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_ReflectedType() */, L_14);
V_2 = L_15;
int32_t L_16 = V_3;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_17 = (AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448*)(AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448*)SZArrayNew(AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448_il2cpp_TypeInfo_var, (uint32_t)L_16);
V_4 = L_17;
goto IL_007d;
}
IL_0053:
{
Type_t * L_18 = V_2;
String_t* L_19 = V_0;
int32_t L_20 = V_1;
NullCheck(L_18);
MethodInfo_t * L_21 = Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD(L_18, L_19, L_20, /*hidden argument*/NULL);
V_5 = L_21;
MemberInfo_t * L_22 = V_5;
bool L_23 = MemberInfo_op_Inequality_mAFFDD84E1AF346532192B32FA8787E64072B4F5B(L_22, (MemberInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_0076;
}
}
{
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_24 = V_4;
int32_t L_25 = V_3;
int32_t L_26 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
V_3 = L_26;
MemberInfo_t * L_27 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_28 = ReflectTypeDescriptionProvider_ReflectGetAttributes_mA3DA28648085382DC968178CE6B9D5288DE17739(L_27, /*hidden argument*/NULL);
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_28);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)L_28);
}
IL_0076:
{
Type_t * L_29 = V_2;
NullCheck(L_29);
Type_t * L_30 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_29);
V_2 = L_30;
}
IL_007d:
{
Type_t * L_31 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_32 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_31, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_32)
{
goto IL_0098;
}
}
{
Type_t * L_33 = V_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_34 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_35 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_34, /*hidden argument*/NULL);
bool L_36 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_33, L_35, /*hidden argument*/NULL);
if (L_36)
{
goto IL_0053;
}
}
IL_0098:
{
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_37 = V_4;
V_6 = L_37;
V_7 = 0;
goto IL_00d9;
}
IL_00a1:
{
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_38 = V_6;
int32_t L_39 = V_7;
NullCheck(L_38);
int32_t L_40 = L_39;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_41 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_40));
V_8 = L_41;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_42 = V_8;
if (!L_42)
{
goto IL_00d3;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_43 = V_8;
V_9 = L_43;
V_10 = 0;
goto IL_00cb;
}
IL_00b5:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_44 = V_9;
int32_t L_45 = V_10;
NullCheck(L_44);
int32_t L_46 = L_45;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_47 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_46));
V_11 = L_47;
RuntimeObject* L_48 = ___attributes1;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_49 = V_11;
NullCheck(L_48);
InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_48, L_49);
int32_t L_50 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1));
}
IL_00cb:
{
int32_t L_51 = V_10;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_52 = V_9;
NullCheck(L_52);
if ((((int32_t)L_51) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_52)->max_length)))))))
{
goto IL_00b5;
}
}
IL_00d3:
{
int32_t L_53 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1));
}
IL_00d9:
{
int32_t L_54 = V_7;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_55 = V_6;
NullCheck(L_55);
if ((((int32_t)L_54) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_55)->max_length)))))))
{
goto IL_00a1;
}
}
IL_00e1:
{
return;
}
}
// System.Void System.ComponentModel.ReflectEventDescriptor::RemoveEventHandler(System.Object,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectEventDescriptor_RemoveEventHandler_m7E857D97702405D54DF79D0BE1917F5CEDF1F650 (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * __this, RuntimeObject * ___component0, Delegate_t * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectEventDescriptor_RemoveEventHandler_m7E857D97702405D54DF79D0BE1917F5CEDF1F650_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * V_3 = NULL;
RuntimeObject* V_4 = NULL;
Delegate_t * V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ReflectEventDescriptor_FillMethods_m7AAD8CF57D3F38B679BB63966AD032684072E3B7(__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___component0;
if (!L_0)
{
goto IL_00bc;
}
}
{
RuntimeObject * L_1 = ___component0;
RuntimeObject* L_2 = MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6(L_1, /*hidden argument*/NULL);
V_0 = L_2;
V_1 = (RuntimeObject*)NULL;
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_002e;
}
}
{
RuntimeObject* L_4 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL);
NullCheck(L_4);
RuntimeObject * L_7 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_4, L_6);
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_7, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var));
}
IL_002e:
{
RuntimeObject* L_8 = V_1;
if (!L_8)
{
goto IL_0048;
}
}
IL_0031:
try
{ // begin try (depth: 1)
RuntimeObject* L_9 = V_1;
RuntimeObject * L_10 = ___component0;
NullCheck(L_9);
InterfaceActionInvoker2< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * >::Invoke(1 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanging(System.Object,System.ComponentModel.MemberDescriptor) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_9, L_10, __this);
goto IL_0048;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_003b;
throw e;
}
CATCH_003b:
{ // begin catch(System.ComponentModel.Design.CheckoutException)
{
V_3 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)__exception_local);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_11 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_12 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_StaticFields*)il2cpp_codegen_static_fields_for(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var))->get_Canceled_17();
if ((!(((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_11) == ((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_12))))
{
goto IL_0046;
}
}
IL_0044:
{
goto IL_00bc;
}
IL_0046:
{
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_13 = V_3;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ReflectEventDescriptor_RemoveEventHandler_m7E857D97702405D54DF79D0BE1917F5CEDF1F650_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_0048:
{
V_2 = (bool)0;
RuntimeObject* L_14 = V_0;
if (!L_14)
{
goto IL_0095;
}
}
{
RuntimeObject* L_15 = V_0;
NullCheck(L_15);
bool L_16 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.ComponentModel.ISite::get_DesignMode() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_15);
if (!L_16)
{
goto IL_0095;
}
}
{
RuntimeObject* L_17 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL);
NullCheck(L_17);
RuntimeObject * L_20 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_17, L_19);
V_4 = ((RuntimeObject*)Castclass((RuntimeObject*)L_20, IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_il2cpp_TypeInfo_var));
RuntimeObject* L_21 = V_4;
if (!L_21)
{
goto IL_0095;
}
}
{
RuntimeObject* L_22 = V_4;
NullCheck(L_22);
RuntimeObject * L_23 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.ComponentModel.Design.IDictionaryService::GetValue(System.Object) */, IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_il2cpp_TypeInfo_var, L_22, __this);
V_5 = ((Delegate_t *)CastclassClass((RuntimeObject*)L_23, Delegate_t_il2cpp_TypeInfo_var));
Delegate_t * L_24 = V_5;
Delegate_t * L_25 = ___value1;
Delegate_t * L_26 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D(L_24, L_25, /*hidden argument*/NULL);
V_5 = L_26;
RuntimeObject* L_27 = V_4;
Delegate_t * L_28 = V_5;
NullCheck(L_27);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.ComponentModel.Design.IDictionaryService::SetValue(System.Object,System.Object) */, IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_il2cpp_TypeInfo_var, L_27, __this, L_28);
V_2 = (bool)1;
}
IL_0095:
{
bool L_29 = V_2;
if (L_29)
{
goto IL_00af;
}
}
{
MethodInfo_t * L_30 = __this->get_removeMethod_15();
RuntimeObject * L_31 = ___component0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = L_32;
Delegate_t * L_34 = ___value1;
NullCheck(L_33);
ArrayElementTypeCheck (L_33, L_34);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_34);
SecurityUtils_MethodInfoInvoke_mF5977E97A2A9073E72C098B312789C9949128AF0(L_30, L_31, L_33, /*hidden argument*/NULL);
}
IL_00af:
{
RuntimeObject* L_35 = V_1;
if (!L_35)
{
goto IL_00bc;
}
}
{
RuntimeObject* L_36 = V_1;
RuntimeObject * L_37 = ___component0;
Delegate_t * L_38 = ___value1;
NullCheck(L_36);
InterfaceActionInvoker4< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 *, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanged(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_36, L_37, __this, NULL, L_38);
}
IL_00bc:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.ReflectPropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor__ctor_mB5E1EB28647D1B39D7EEC2A60C41BD3F2B5EBB4E (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, Type_t * ___componentClass0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor__ctor_mB5E1EB28647D1B39D7EEC2A60C41BD3F2B5EBB4E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
String_t* L_0 = ___name1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attributes3;
PropertyDescriptor__ctor_m8CEC4DAE5266714927949F60E4F8A7F31141BC22(__this, L_0, L_1, /*hidden argument*/NULL);
}
IL_0009:
try
{ // begin try (depth: 1)
{
Type_t * L_2 = ___type2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_002c;
}
}
IL_0012:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = L_4;
String_t* L_6 = ___name1;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6);
String_t* L_7 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral6F168092555938E6A3D3B918C82C2D26170041FC, L_5, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ReflectPropertyDescriptor__ctor_mB5E1EB28647D1B39D7EEC2A60C41BD3F2B5EBB4E_RuntimeMethod_var);
}
IL_002c:
{
Type_t * L_9 = ___componentClass0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_9, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0053;
}
}
IL_0035:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = L_11;
NullCheck(L_12);
ArrayElementTypeCheck (L_12, _stringLiteralC9937828CE00719332E80BEA0A26B7DDD25E1012);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralC9937828CE00719332E80BEA0A26B7DDD25E1012);
String_t* L_13 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral75DCD1F61A1F7E67C90F78978534AFCD113053A6, L_12, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_14, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ReflectPropertyDescriptor__ctor_mB5E1EB28647D1B39D7EEC2A60C41BD3F2B5EBB4E_RuntimeMethod_var);
}
IL_0053:
{
Type_t * L_15 = ___type2;
__this->set_type_33(L_15);
Type_t * L_16 = ___componentClass0;
__this->set_componentClass_32(L_16);
goto IL_0064;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0063;
throw e;
}
CATCH_0063:
{ // begin catch(System.Exception)
IL2CPP_RAISE_MANAGED_EXCEPTION(((Exception_t *)__exception_local), ReflectPropertyDescriptor__ctor_mB5E1EB28647D1B39D7EEC2A60C41BD3F2B5EBB4E_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0064:
{
return;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Reflection.PropertyInfo,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor__ctor_m81658E6FF4EDE19BDC21661F2AD7F1D428DE2D90 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, Type_t * ___componentClass0, String_t* ___name1, Type_t * ___type2, PropertyInfo_t * ___propInfo3, MethodInfo_t * ___getMethod4, MethodInfo_t * ___setMethod5, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor__ctor_m81658E6FF4EDE19BDC21661F2AD7F1D428DE2D90_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentClass0;
String_t* L_1 = ___name1;
Type_t * L_2 = ___type2;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = ___attrs6;
ReflectPropertyDescriptor__ctor_mB5E1EB28647D1B39D7EEC2A60C41BD3F2B5EBB4E(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
PropertyInfo_t * L_4 = ___propInfo3;
__this->set_propInfo_36(L_4);
MethodInfo_t * L_5 = ___getMethod4;
__this->set_getMethod_37(L_5);
MethodInfo_t * L_6 = ___setMethod5;
__this->set_setMethod_38(L_6);
MethodInfo_t * L_7 = ___getMethod4;
bool L_8 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_7, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0059;
}
}
{
PropertyInfo_t * L_9 = ___propInfo3;
bool L_10 = PropertyInfo_op_Inequality_m72FFC34F4BEFB4F18155B0E97F8616597AE9A782(L_9, (PropertyInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0059;
}
}
{
MethodInfo_t * L_11 = ___setMethod5;
bool L_12 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_11, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0059;
}
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_13 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_14 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitGetQueried_22();
int32_t L_15 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitSetOnDemand_30();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_13, ((int32_t)((int32_t)L_14|(int32_t)L_15)), (bool)1, /*hidden argument*/NULL);
return;
}
IL_0059:
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_16 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_17 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitGetQueried_22();
int32_t L_18 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitSetQueried_23();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_16, ((int32_t)((int32_t)L_17|(int32_t)L_18)), (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor__ctor_mED173B591B660C3642C4F39591EF6A2CBBA13C5F (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, Type_t * ___componentClass0, String_t* ___name1, Type_t * ___type2, Type_t * ___receiverType3, MethodInfo_t * ___getMethod4, MethodInfo_t * ___setMethod5, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor__ctor_mED173B591B660C3642C4F39591EF6A2CBBA13C5F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentClass0;
String_t* L_1 = ___name1;
Type_t * L_2 = ___type2;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = ___attrs6;
ReflectPropertyDescriptor__ctor_mB5E1EB28647D1B39D7EEC2A60C41BD3F2B5EBB4E(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
Type_t * L_4 = ___receiverType3;
__this->set_receiverType_43(L_4);
MethodInfo_t * L_5 = ___getMethod4;
__this->set_getMethod_37(L_5);
MethodInfo_t * L_6 = ___setMethod5;
__this->set_setMethod_38(L_6);
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_7 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_8 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitGetQueried_22();
int32_t L_9 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitSetQueried_23();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_7, ((int32_t)((int32_t)L_8|(int32_t)L_9)), (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::.ctor(System.Type,System.ComponentModel.PropertyDescriptor,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor__ctor_mD94CA3BC0F9D3DA32E778F0F8724BE6CAA213475 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, Type_t * ___componentClass0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___oldReflectPropertyDescriptor1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor__ctor_mD94CA3BC0F9D3DA32E778F0F8724BE6CAA213475_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * V_0 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_1 = NULL;
int32_t V_2 = 0;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_3 = NULL;
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * V_4 = NULL;
AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E * V_5 = NULL;
{
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_0 = ___oldReflectPropertyDescriptor1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attributes2;
PropertyDescriptor__ctor_m8C1C276319F5C29A452F48C89B595334AB7E65B0(__this, L_0, L_1, /*hidden argument*/NULL);
Type_t * L_2 = ___componentClass0;
__this->set_componentClass_32(L_2);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_3 = ___oldReflectPropertyDescriptor1;
NullCheck(L_3);
Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, L_3);
__this->set_type_33(L_4);
Type_t * L_5 = ___componentClass0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0042;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_7;
NullCheck(L_8);
ArrayElementTypeCheck (L_8, _stringLiteralC9937828CE00719332E80BEA0A26B7DDD25E1012);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralC9937828CE00719332E80BEA0A26B7DDD25E1012);
String_t* L_9 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral75DCD1F61A1F7E67C90F78978534AFCD113053A6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ReflectPropertyDescriptor__ctor_mD94CA3BC0F9D3DA32E778F0F8724BE6CAA213475_RuntimeMethod_var);
}
IL_0042:
{
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_11 = ___oldReflectPropertyDescriptor1;
V_0 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E *)IsInstSealed((RuntimeObject*)L_11, ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var));
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_12 = V_0;
if (!L_12)
{
goto IL_017c;
}
}
{
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_13 = V_0;
NullCheck(L_13);
Type_t * L_14 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.PropertyDescriptor::get_ComponentType() */, L_13);
Type_t * L_15 = ___componentClass0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_14, L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_00bd;
}
}
{
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_17 = V_0;
NullCheck(L_17);
PropertyInfo_t * L_18 = L_17->get_propInfo_36();
__this->set_propInfo_36(L_18);
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_19 = V_0;
NullCheck(L_19);
MethodInfo_t * L_20 = L_19->get_getMethod_37();
__this->set_getMethod_37(L_20);
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_21 = V_0;
NullCheck(L_21);
MethodInfo_t * L_22 = L_21->get_setMethod_38();
__this->set_setMethod_38(L_22);
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_23 = V_0;
NullCheck(L_23);
MethodInfo_t * L_24 = L_23->get_shouldSerializeMethod_39();
__this->set_shouldSerializeMethod_39(L_24);
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_25 = V_0;
NullCheck(L_25);
MethodInfo_t * L_26 = L_25->get_resetMethod_40();
__this->set_resetMethod_40(L_26);
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_27 = V_0;
NullCheck(L_27);
RuntimeObject * L_28 = L_27->get_defaultValue_34();
__this->set_defaultValue_34(L_28);
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_29 = V_0;
NullCheck(L_29);
RuntimeObject * L_30 = L_29->get_ambientValue_35();
__this->set_ambientValue_35(L_30);
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_31 = V_0;
NullCheck(L_31);
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 L_32 = L_31->get_state_31();
__this->set_state_31(L_32);
}
IL_00bd:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_33 = ___attributes2;
if (!L_33)
{
goto IL_017c;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_34 = ___attributes2;
V_1 = L_34;
V_2 = 0;
goto IL_0173;
}
IL_00cc:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_35 = V_1;
int32_t L_36 = V_2;
NullCheck(L_35);
int32_t L_37 = L_36;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
V_3 = L_38;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_39 = V_3;
V_4 = ((DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC *)IsInstClass((RuntimeObject*)L_39, DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_il2cpp_TypeInfo_var));
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_40 = V_4;
if (!L_40)
{
goto IL_0145;
}
}
{
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_41 = V_4;
NullCheck(L_41);
RuntimeObject * L_42 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_41);
__this->set_defaultValue_34(L_42);
RuntimeObject * L_43 = __this->get_defaultValue_34();
if (!L_43)
{
goto IL_0132;
}
}
{
Type_t * L_44 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
NullCheck(L_44);
bool L_45 = VirtFuncInvoker0< bool >::Invoke(95 /* System.Boolean System.Type::get_IsEnum() */, L_44);
if (!L_45)
{
goto IL_0132;
}
}
{
Type_t * L_46 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
NullCheck(L_46);
Type_t * L_47 = VirtFuncInvoker0< Type_t * >::Invoke(133 /* System.Type System.Type::GetEnumUnderlyingType() */, L_46);
RuntimeObject * L_48 = __this->get_defaultValue_34();
NullCheck(L_48);
Type_t * L_49 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_48, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_50 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_47, L_49, /*hidden argument*/NULL);
if (!L_50)
{
goto IL_0132;
}
}
{
Type_t * L_51 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
RuntimeObject * L_52 = __this->get_defaultValue_34();
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
RuntimeObject * L_53 = Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D(L_51, L_52, /*hidden argument*/NULL);
__this->set_defaultValue_34(L_53);
}
IL_0132:
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_54 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_55 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitDefaultValueQueried_21();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_54, L_55, (bool)1, /*hidden argument*/NULL);
goto IL_016f;
}
IL_0145:
{
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_56 = V_3;
V_5 = ((AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E *)IsInstSealed((RuntimeObject*)L_56, AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E_il2cpp_TypeInfo_var));
AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E * L_57 = V_5;
if (!L_57)
{
goto IL_016f;
}
}
{
AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E * L_58 = V_5;
NullCheck(L_58);
RuntimeObject * L_59 = AmbientValueAttribute_get_Value_mAF197402AF2951D9F41882A7E8E2AC99946EF5DF_inline(L_58, /*hidden argument*/NULL);
__this->set_ambientValue_35(L_59);
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_60 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_61 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitAmbientValueQueried_29();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_60, L_61, (bool)1, /*hidden argument*/NULL);
}
IL_016f:
{
int32_t L_62 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1));
}
IL_0173:
{
int32_t L_63 = V_2;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_64 = V_1;
NullCheck(L_64);
if ((((int32_t)L_63) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_64)->max_length)))))))
{
goto IL_00cc;
}
}
IL_017c:
{
return;
}
}
// System.Object System.ComponentModel.ReflectPropertyDescriptor::get_AmbientValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectPropertyDescriptor_get_AmbientValue_m2FE1E71F14949D9DA86714056C74205C3672D6D3 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_get_AmbientValue_m2FE1E71F14949D9DA86714056C74205C3672D6D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_0 = NULL;
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitAmbientValueQueried_29();
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_005a;
}
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_3 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_4 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitAmbientValueQueried_29();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_3, L_4, (bool)1, /*hidden argument*/NULL);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_5 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_8 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_5, L_7);
V_0 = L_8;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_9 = V_0;
if (!L_9)
{
goto IL_004f;
}
}
{
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_10 = V_0;
NullCheck(((AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E *)CastclassSealed((RuntimeObject*)L_10, AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E_il2cpp_TypeInfo_var)));
RuntimeObject * L_11 = AmbientValueAttribute_get_Value_mAF197402AF2951D9F41882A7E8E2AC99946EF5DF_inline(((AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E *)CastclassSealed((RuntimeObject*)L_10, AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
__this->set_ambientValue_35(L_11);
goto IL_005a;
}
IL_004f:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
RuntimeObject * L_12 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_noValue_18();
__this->set_ambientValue_35(L_12);
}
IL_005a:
{
RuntimeObject * L_13 = __this->get_ambientValue_35();
return L_13;
}
}
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectPropertyDescriptor::get_ChangedEventValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ReflectPropertyDescriptor_get_ChangedEventValue_m53318DC3BCA673EA99F7D7B8CA6A5BA314D6D0A8 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_get_ChangedEventValue_m53318DC3BCA673EA99F7D7B8CA6A5BA314D6D0A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitChangedQueried_26();
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_004e;
}
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_3 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_4 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitChangedQueried_26();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_3, L_4, (bool)1, /*hidden argument*/NULL);
Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.PropertyDescriptor::get_ComponentType() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_6 = TypeDescriptor_GetEvents_mEB93FB58F539D9302E2ACAA823DABB199DFB9944(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
String_t* L_9 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_7, _stringLiteral88D4C9655BC7EFADB5989A802C6F0FB153615D01, L_8, /*hidden argument*/NULL);
NullCheck(L_6);
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_10 = VirtFuncInvoker1< EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *, String_t* >::Invoke(21 /* System.ComponentModel.EventDescriptor System.ComponentModel.EventDescriptorCollection::get_Item(System.String) */, L_6, L_9);
__this->set_realChangedEvent_41(L_10);
}
IL_004e:
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_11 = __this->get_realChangedEvent_41();
return L_11;
}
}
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectPropertyDescriptor::get_IPropChangedEventValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ReflectPropertyDescriptor_get_IPropChangedEventValue_m09F9B4CC2CF462E85042BAAD57FC69A3A84BB73A (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_get_IPropChangedEventValue_m09F9B4CC2CF462E85042BAAD57FC69A3A84BB73A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitIPropChangedQueried_27();
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0059;
}
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_3 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_4 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitIPropChangedQueried_27();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_3, L_4, (bool)1, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (INotifyPropertyChanged_t60B44979ACFFDE2136E090F0E834D9190558C2B7_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL);
Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.PropertyDescriptor::get_ComponentType() */, __this);
NullCheck(L_6);
bool L_8 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_6, L_7);
if (!L_8)
{
goto IL_0059;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (INotifyPropertyChanged_t60B44979ACFFDE2136E090F0E834D9190558C2B7_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_11 = TypeDescriptor_GetEvents_mEB93FB58F539D9302E2ACAA823DABB199DFB9944(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_12 = VirtFuncInvoker1< EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *, String_t* >::Invoke(21 /* System.ComponentModel.EventDescriptor System.ComponentModel.EventDescriptorCollection::get_Item(System.String) */, L_11, _stringLiteral876BAB78066F4F76F12B4112D6DB4A433C09DD31);
__this->set_realIPropChangedEvent_42(L_12);
}
IL_0059:
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_13 = __this->get_realIPropChangedEvent_42();
return L_13;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::set_IPropChangedEventValue(System.ComponentModel.EventDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_set_IPropChangedEventValue_m4A7C7B24C72BA1DB14833DC2CB2804187A89A54F (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_set_IPropChangedEventValue_m4A7C7B24C72BA1DB14833DC2CB2804187A89A54F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_0 = ___value0;
__this->set_realIPropChangedEvent_42(L_0);
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_1 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_2 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitIPropChangedQueried_27();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_1, L_2, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Type System.ComponentModel.ReflectPropertyDescriptor::get_ComponentType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectPropertyDescriptor_get_ComponentType_mBDBB35C343705F6E0BCF6E29CA74EE9AD7192C5E (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_componentClass_32();
return L_0;
}
}
// System.Object System.ComponentModel.ReflectPropertyDescriptor::get_DefaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_0 = NULL;
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitDefaultValueQueried_21();
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_00a6;
}
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_3 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_4 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitDefaultValueQueried_21();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_3, L_4, (bool)1, /*hidden argument*/NULL);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_5 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_8 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_5, L_7);
V_0 = L_8;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_9 = V_0;
if (!L_9)
{
goto IL_009b;
}
}
{
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_10 = V_0;
NullCheck(((DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC *)CastclassClass((RuntimeObject*)L_10, DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_il2cpp_TypeInfo_var)));
RuntimeObject * L_11 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, ((DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC *)CastclassClass((RuntimeObject*)L_10, DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_il2cpp_TypeInfo_var)));
__this->set_defaultValue_34(L_11);
RuntimeObject * L_12 = __this->get_defaultValue_34();
if (!L_12)
{
goto IL_00a6;
}
}
{
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
NullCheck(L_13);
bool L_14 = VirtFuncInvoker0< bool >::Invoke(95 /* System.Boolean System.Type::get_IsEnum() */, L_13);
if (!L_14)
{
goto IL_00a6;
}
}
{
Type_t * L_15 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
NullCheck(L_15);
Type_t * L_16 = VirtFuncInvoker0< Type_t * >::Invoke(133 /* System.Type System.Type::GetEnumUnderlyingType() */, L_15);
RuntimeObject * L_17 = __this->get_defaultValue_34();
NullCheck(L_17);
Type_t * L_18 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_17, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_19 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_16, L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_00a6;
}
}
{
Type_t * L_20 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
RuntimeObject * L_21 = __this->get_defaultValue_34();
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
RuntimeObject * L_22 = Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D(L_20, L_21, /*hidden argument*/NULL);
__this->set_defaultValue_34(L_22);
goto IL_00a6;
}
IL_009b:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
RuntimeObject * L_23 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_noValue_18();
__this->set_defaultValue_34(L_23);
}
IL_00a6:
{
RuntimeObject * L_24 = __this->get_defaultValue_34();
return L_24;
}
}
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::get_GetMethodValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitGetQueried_22();
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_013e;
}
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_3 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_4 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitGetQueried_22();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_3, L_4, (bool)1, /*hidden argument*/NULL);
Type_t * L_5 = __this->get_receiverType_43();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_00db;
}
}
{
PropertyInfo_t * L_7 = __this->get_propInfo_36();
bool L_8 = PropertyInfo_op_Equality_m6E3A0B7912D137F6FA5F53756ED260C9831B70ED(L_7, (PropertyInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0076;
}
}
{
V_0 = ((int32_t)4148);
Type_t * L_9 = __this->get_componentClass_32();
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
int32_t L_11 = V_0;
Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)0);
ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* L_14 = (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)SZArrayNew(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA_il2cpp_TypeInfo_var, (uint32_t)0);
NullCheck(L_9);
PropertyInfo_t * L_15 = Type_GetProperty_m35A7FCA1C89F7F03E865EBE00515336DFB482CFF(L_9, L_10, L_11, (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_12, L_13, L_14, /*hidden argument*/NULL);
__this->set_propInfo_36(L_15);
}
IL_0076:
{
PropertyInfo_t * L_16 = __this->get_propInfo_36();
bool L_17 = PropertyInfo_op_Inequality_m72FFC34F4BEFB4F18155B0E97F8616597AE9A782(L_16, (PropertyInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_0096;
}
}
{
PropertyInfo_t * L_18 = __this->get_propInfo_36();
NullCheck(L_18);
MethodInfo_t * L_19 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(22 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_18, (bool)1);
__this->set_getMethod_37(L_19);
}
IL_0096:
{
MethodInfo_t * L_20 = __this->get_getMethod_37();
bool L_21 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_20, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_013e;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = L_22;
Type_t * L_24 = __this->get_componentClass_32();
NullCheck(L_24);
String_t* L_25 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_24);
String_t* L_26 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
String_t* L_27 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_25, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, L_26, /*hidden argument*/NULL);
NullCheck(L_23);
ArrayElementTypeCheck (L_23, L_27);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_27);
String_t* L_28 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral8DC7D044CD123CF43C6C3692B3DACF8DA158EE4E, L_23, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_29 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_29, L_28, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618_RuntimeMethod_var);
}
IL_00db:
{
Type_t * L_30 = __this->get_componentClass_32();
String_t* L_31 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
String_t* L_32 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralBFFFD736CDDD08A4EEE689949C3399CB61DA773B, L_31, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = L_33;
Type_t * L_35 = __this->get_receiverType_43();
NullCheck(L_34);
ArrayElementTypeCheck (L_34, L_35);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35);
Type_t * L_36 = __this->get_type_33();
MethodInfo_t * L_37 = MemberDescriptor_FindMethod_m4B26329E481C2681B235A311E2E7D022DC891773(L_30, L_32, L_34, L_36, /*hidden argument*/NULL);
__this->set_getMethod_37(L_37);
MethodInfo_t * L_38 = __this->get_getMethod_37();
bool L_39 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_38, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_013e;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_40 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_41 = L_40;
String_t* L_42 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
NullCheck(L_41);
ArrayElementTypeCheck (L_41, L_42);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_42);
String_t* L_43 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral8DC7D044CD123CF43C6C3692B3DACF8DA158EE4E, L_41, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_44 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_44, L_43, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618_RuntimeMethod_var);
}
IL_013e:
{
MethodInfo_t * L_45 = __this->get_getMethod_37();
return L_45;
}
}
// System.Boolean System.ComponentModel.ReflectPropertyDescriptor::get_IsExtender()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectPropertyDescriptor_get_IsExtender_mFFEE1C5A723D8A0BBBAC2AFE3DA9B77D7821727A (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_get_IsExtender_mFFEE1C5A723D8A0BBBAC2AFE3DA9B77D7821727A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = __this->get_receiverType_43();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean System.ComponentModel.ReflectPropertyDescriptor::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectPropertyDescriptor_get_IsReadOnly_m5E22D2D628A2EE4DA486A40ED815A72C1574D641 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_get_IsReadOnly_m5E22D2D628A2EE4DA486A40ED815A72C1574D641_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MethodInfo_t * L_0 = ReflectPropertyDescriptor_get_SetMethodValue_m9C7CB91D0400A7450E620516B1A30B2FD37791A5(__this, /*hidden argument*/NULL);
bool L_1 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_0, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_1)
{
goto IL_002e;
}
}
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_2 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_5 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_2, L_4);
NullCheck(((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B *)CastclassSealed((RuntimeObject*)L_5, ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var)));
bool L_6 = ReadOnlyAttribute_get_IsReadOnly_m0626C74195DDB464E767AFE4CB8C205C267C8866_inline(((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B *)CastclassSealed((RuntimeObject*)L_5, ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_6;
}
IL_002e:
{
return (bool)1;
}
}
// System.Type System.ComponentModel.ReflectPropertyDescriptor::get_PropertyType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectPropertyDescriptor_get_PropertyType_m42BC13BCBD5DD4FADEF53D5BA86EB8BD8C1153F1 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_type_33();
return L_0;
}
}
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::get_ResetMethodValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL;
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitResetQueried_25();
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0076;
}
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_3 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_4 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitResetQueried_25();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_3, L_4, (bool)1, /*hidden argument*/NULL);
Type_t * L_5 = __this->get_receiverType_43();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0039;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_argsNone_17();
V_0 = L_7;
goto IL_0049;
}
IL_0039:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = L_8;
Type_t * L_10 = __this->get_receiverType_43();
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_10);
V_0 = L_9;
}
IL_0049:
{
Type_t * L_11 = __this->get_componentClass_32();
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
String_t* L_13 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral44C57ABD888A66B36D4B7C902134063E4A097223, L_12, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
MethodInfo_t * L_17 = MemberDescriptor_FindMethod_m55C2AA54F198A970DAD868DE103F41602CC4ABEF(L_11, L_13, L_14, L_16, (bool)0, /*hidden argument*/NULL);
__this->set_resetMethod_40(L_17);
}
IL_0076:
{
MethodInfo_t * L_18 = __this->get_resetMethod_40();
return L_18;
}
}
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::get_SetMethodValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * ReflectPropertyDescriptor_get_SetMethodValue_m9C7CB91D0400A7450E620516B1A30B2FD37791A5 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_get_SetMethodValue_m9C7CB91D0400A7450E620516B1A30B2FD37791A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
Type_t * V_2 = NULL;
PropertyInfo_t * V_3 = NULL;
int32_t V_4 = 0;
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitSetQueried_23();
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_00cb;
}
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_3 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_4 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitSetOnDemand_30();
bool L_5 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_00cb;
}
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_6 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_7 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitSetQueried_23();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_6, L_7, (bool)1, /*hidden argument*/NULL);
V_0 = ((int32_t)22);
PropertyInfo_t * L_8 = __this->get_propInfo_36();
NullCheck(L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_8);
V_1 = L_9;
MethodInfo_t * L_10 = __this->get_setMethod_38();
bool L_11 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_10, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_00cb;
}
}
{
Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.PropertyDescriptor::get_ComponentType() */, __this);
NullCheck(L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_12);
V_2 = L_13;
goto IL_00b0;
}
IL_0066:
{
Type_t * L_14 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_15 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_14, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_15)
{
goto IL_00cb;
}
}
{
Type_t * L_16 = V_2;
String_t* L_17 = V_1;
int32_t L_18 = V_0;
Type_t * L_19 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)0);
NullCheck(L_16);
PropertyInfo_t * L_21 = Type_GetProperty_m35A7FCA1C89F7F03E865EBE00515336DFB482CFF(L_16, L_17, L_18, (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_19, L_20, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL);
V_3 = L_21;
PropertyInfo_t * L_22 = V_3;
bool L_23 = PropertyInfo_op_Inequality_m72FFC34F4BEFB4F18155B0E97F8616597AE9A782(L_22, (PropertyInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_00a9;
}
}
{
PropertyInfo_t * L_24 = V_3;
NullCheck(L_24);
MethodInfo_t * L_25 = PropertyInfo_GetSetMethod_m275171F734C49C398DC9E9F3970AA798725C7CA9(L_24, /*hidden argument*/NULL);
__this->set_setMethod_38(L_25);
MethodInfo_t * L_26 = __this->get_setMethod_38();
bool L_27 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_26, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_27)
{
goto IL_00cb;
}
}
IL_00a9:
{
Type_t * L_28 = V_2;
NullCheck(L_28);
Type_t * L_29 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_28);
V_2 = L_29;
}
IL_00b0:
{
Type_t * L_30 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_31 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_30, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00cb;
}
}
{
Type_t * L_32 = V_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_33 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_34 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_33, /*hidden argument*/NULL);
bool L_35 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_32, L_34, /*hidden argument*/NULL);
if (L_35)
{
goto IL_0066;
}
}
IL_00cb:
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_36 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_37 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitSetQueried_23();
bool L_38 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_36, L_37, /*hidden argument*/NULL);
if (L_38)
{
goto IL_01a5;
}
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_39 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_40 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitSetQueried_23();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_39, L_40, (bool)1, /*hidden argument*/NULL);
Type_t * L_41 = __this->get_receiverType_43();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_42 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_41, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_42)
{
goto IL_0162;
}
}
{
PropertyInfo_t * L_43 = __this->get_propInfo_36();
bool L_44 = PropertyInfo_op_Equality_m6E3A0B7912D137F6FA5F53756ED260C9831B70ED(L_43, (PropertyInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_44)
{
goto IL_0140;
}
}
{
V_4 = ((int32_t)4148);
Type_t * L_45 = __this->get_componentClass_32();
String_t* L_46 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
int32_t L_47 = V_4;
Type_t * L_48 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_49 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)0);
ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* L_50 = (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)SZArrayNew(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA_il2cpp_TypeInfo_var, (uint32_t)0);
NullCheck(L_45);
PropertyInfo_t * L_51 = Type_GetProperty_m35A7FCA1C89F7F03E865EBE00515336DFB482CFF(L_45, L_46, L_47, (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_48, L_49, L_50, /*hidden argument*/NULL);
__this->set_propInfo_36(L_51);
}
IL_0140:
{
PropertyInfo_t * L_52 = __this->get_propInfo_36();
bool L_53 = PropertyInfo_op_Inequality_m72FFC34F4BEFB4F18155B0E97F8616597AE9A782(L_52, (PropertyInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_53)
{
goto IL_01a5;
}
}
{
PropertyInfo_t * L_54 = __this->get_propInfo_36();
NullCheck(L_54);
MethodInfo_t * L_55 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(25 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_54, (bool)1);
__this->set_setMethod_38(L_55);
goto IL_01a5;
}
IL_0162:
{
Type_t * L_56 = __this->get_componentClass_32();
String_t* L_57 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
String_t* L_58 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral448AB73BA1C21E671E218FB91F2644C834F0C16F, L_57, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_59 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_60 = L_59;
Type_t * L_61 = __this->get_receiverType_43();
NullCheck(L_60);
ArrayElementTypeCheck (L_60, L_61);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_61);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_62 = L_60;
Type_t * L_63 = __this->get_type_33();
NullCheck(L_62);
ArrayElementTypeCheck (L_62, L_63);
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_63);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_64 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_65 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_64, /*hidden argument*/NULL);
MethodInfo_t * L_66 = MemberDescriptor_FindMethod_m4B26329E481C2681B235A311E2E7D022DC891773(L_56, L_58, L_62, L_65, /*hidden argument*/NULL);
__this->set_setMethod_38(L_66);
}
IL_01a5:
{
MethodInfo_t * L_67 = __this->get_setMethod_38();
return L_67;
}
}
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::get_ShouldSerializeMethodValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL;
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitShouldSerializeQueried_24();
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0076;
}
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_3 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_4 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitShouldSerializeQueried_24();
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_3, L_4, (bool)1, /*hidden argument*/NULL);
Type_t * L_5 = __this->get_receiverType_43();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0039;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_argsNone_17();
V_0 = L_7;
goto IL_0049;
}
IL_0039:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = L_8;
Type_t * L_10 = __this->get_receiverType_43();
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_10);
V_0 = L_9;
}
IL_0049:
{
Type_t * L_11 = __this->get_componentClass_32();
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
String_t* L_13 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral71BE626854390279C8DE7ECCCFA7B9B42168F86B, L_12, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
MethodInfo_t * L_17 = MemberDescriptor_FindMethod_m55C2AA54F198A970DAD868DE103F41602CC4ABEF(L_11, L_13, L_14, L_16, (bool)0, /*hidden argument*/NULL);
__this->set_shouldSerializeMethod_39(L_17);
}
IL_0076:
{
MethodInfo_t * L_18 = __this->get_shouldSerializeMethod_39();
return L_18;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::AddValueChanged(System.Object,System.EventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_AddValueChanged_m3197A9D9D7029DF4FD0D05ACF1972107B86FC0DB (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject * ___component0, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___handler1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_AddValueChanged_m3197A9D9D7029DF4FD0D05ACF1972107B86FC0DB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * V_0 = NULL;
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * V_1 = NULL;
{
RuntimeObject * L_0 = ___component0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral335C4C1E2F05B5297A56769D8DE75AD9C4874CD3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ReflectPropertyDescriptor_AddValueChanged_m3197A9D9D7029DF4FD0D05ACF1972107B86FC0DB_RuntimeMethod_var);
}
IL_000e:
{
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_2 = ___handler1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteral31A81EC93DB3740EE3984FC40E34A60B0412643D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ReflectPropertyDescriptor_AddValueChanged_m3197A9D9D7029DF4FD0D05ACF1972107B86FC0DB_RuntimeMethod_var);
}
IL_001c:
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_4 = ReflectPropertyDescriptor_get_ChangedEventValue_m53318DC3BCA673EA99F7D7B8CA6A5BA314D6D0A8(__this, /*hidden argument*/NULL);
V_0 = L_4;
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_5 = V_0;
if (!L_5)
{
goto IL_003d;
}
}
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_6 = V_0;
NullCheck(L_6);
Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.ComponentModel.EventDescriptor::get_EventType() */, L_6);
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_8 = ___handler1;
NullCheck(L_7);
bool L_9 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(138 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_7, L_8);
if (!L_9)
{
goto IL_003d;
}
}
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_10 = V_0;
RuntimeObject * L_11 = ___component0;
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_12 = ___handler1;
NullCheck(L_10);
VirtActionInvoker2< RuntimeObject *, Delegate_t * >::Invoke(20 /* System.Void System.ComponentModel.EventDescriptor::AddEventHandler(System.Object,System.Delegate) */, L_10, L_11, L_12);
return;
}
IL_003d:
{
RuntimeObject * L_13 = ___component0;
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_14 = PropertyDescriptor_GetValueChangedHandler_m1574AF743125BF015F9DDB577AE0559684063000(__this, L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0063;
}
}
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_15 = ReflectPropertyDescriptor_get_IPropChangedEventValue_m09F9B4CC2CF462E85042BAAD57FC69A3A84BB73A(__this, /*hidden argument*/NULL);
V_1 = L_15;
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_16 = V_1;
if (!L_16)
{
goto IL_0063;
}
}
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_17 = V_1;
RuntimeObject * L_18 = ___component0;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_19 = (PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 *)il2cpp_codegen_object_new(PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82_il2cpp_TypeInfo_var);
PropertyChangedEventHandler__ctor_mC6EC20F2995A9376A72EB51981850A9E5C8450E7(L_19, __this, (intptr_t)((intptr_t)ReflectPropertyDescriptor_OnINotifyPropertyChanged_mBD589BFB27A3750D64BB9404B282E699BF366739_RuntimeMethod_var), /*hidden argument*/NULL);
NullCheck(L_17);
VirtActionInvoker2< RuntimeObject *, Delegate_t * >::Invoke(20 /* System.Void System.ComponentModel.EventDescriptor::AddEventHandler(System.Object,System.Delegate) */, L_17, L_18, L_19);
}
IL_0063:
{
RuntimeObject * L_20 = ___component0;
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_21 = ___handler1;
PropertyDescriptor_AddValueChanged_m91408A44CCF3C64DD47A6223D352E64F784EB538(__this, L_20, L_21, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.ComponentModel.ReflectPropertyDescriptor::ExtenderCanResetValue(System.ComponentModel.IExtenderProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectPropertyDescriptor_ExtenderCanResetValue_mACFED798483AFF6BB779CF30C35D735A484B4DAB (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_ExtenderCanResetValue_mACFED798483AFF6BB779CF30C35D735A484B4DAB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject * L_0 = ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_noValue_18();
if ((((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))
{
goto IL_0024;
}
}
{
RuntimeObject* L_2 = ___provider0;
RuntimeObject * L_3 = ___component1;
RuntimeObject * L_4 = ReflectPropertyDescriptor_ExtenderGetValue_m741FE4C60D34936C3505CE5E90DB426593C7F96F(__this, L_2, L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = __this->get_defaultValue_34();
bool L_6 = Object_Equals_mD98CD6D19C28ADC48B8468F78F94D38E203D0521(L_4, L_5, /*hidden argument*/NULL);
return (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
}
IL_0024:
{
MethodInfo_t * L_7 = ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70(__this, /*hidden argument*/NULL);
bool L_8 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_7, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0074;
}
}
{
MethodInfo_t * L_9 = ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B(__this, /*hidden argument*/NULL);
V_0 = L_9;
MethodInfo_t * L_10 = V_0;
bool L_11 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_10, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0072;
}
}
IL_0042:
try
{ // begin try (depth: 1)
Type_t * L_12 = __this->get_componentClass_32();
RuntimeObject* L_13 = ___provider0;
RuntimeObject * L_14 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject * >::Invoke(16 /* System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object) */, __this, L_12, L_13);
___provider0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_14, IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var));
MethodInfo_t * L_15 = V_0;
RuntimeObject* L_16 = ___provider0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_17;
RuntimeObject * L_19 = ___component1;
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_19);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_19);
NullCheck(L_15);
RuntimeObject * L_20 = MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_15, L_16, L_18, /*hidden argument*/NULL);
V_1 = ((*(bool*)((bool*)UnBox(L_20, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))));
goto IL_0076;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_006f;
throw e;
}
CATCH_006f:
{ // begin catch(System.Object)
goto IL_0072;
} // end catch (depth: 1)
IL_0072:
{
return (bool)1;
}
IL_0074:
{
return (bool)0;
}
IL_0076:
{
bool L_21 = V_1;
return L_21;
}
}
// System.Type System.ComponentModel.ReflectPropertyDescriptor::ExtenderGetReceiverType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectPropertyDescriptor_ExtenderGetReceiverType_mEACD75A498F4FEA40302981092B93DBBC95EB1FA (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_receiverType_43();
return L_0;
}
}
// System.Type System.ComponentModel.ReflectPropertyDescriptor::ExtenderGetType(System.ComponentModel.IExtenderProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectPropertyDescriptor_ExtenderGetType_mD6042994CD9EFFCDE3177C09E58823CADA0CFBD7 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
Type_t * L_0 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
return L_0;
}
}
// System.Object System.ComponentModel.ReflectPropertyDescriptor::ExtenderGetValue(System.ComponentModel.IExtenderProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectPropertyDescriptor_ExtenderGetValue_m741FE4C60D34936C3505CE5E90DB426593C7F96F (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_ExtenderGetValue_m741FE4C60D34936C3505CE5E90DB426593C7F96F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___provider0;
if (!L_0)
{
goto IL_002e;
}
}
{
Type_t * L_1 = __this->get_componentClass_32();
RuntimeObject* L_2 = ___provider0;
RuntimeObject * L_3 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject * >::Invoke(16 /* System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object) */, __this, L_1, L_2);
___provider0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_3, IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var));
MethodInfo_t * L_4 = ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618(__this, /*hidden argument*/NULL);
RuntimeObject* L_5 = ___provider0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6;
RuntimeObject * L_8 = ___component1;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_8);
NullCheck(L_4);
RuntimeObject * L_9 = MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_4, L_5, L_7, /*hidden argument*/NULL);
return L_9;
}
IL_002e:
{
return NULL;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::ExtenderResetValue(System.ComponentModel.IExtenderProvider,System.Object,System.ComponentModel.PropertyDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_ExtenderResetValue_mD615C4E5718D88643447EA1115D1B48460D2DA06 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___notifyDesc2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_ExtenderResetValue_mD615C4E5718D88643447EA1115D1B48460D2DA06_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
RuntimeObject * V_3 = NULL;
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject * L_0 = ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_noValue_18();
if ((((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))
{
goto IL_001d;
}
}
{
RuntimeObject* L_2 = ___provider0;
RuntimeObject * L_3 = ___component1;
RuntimeObject * L_4 = ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA(__this, /*hidden argument*/NULL);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_5 = ___notifyDesc2;
ReflectPropertyDescriptor_ExtenderSetValue_mC58759964687244DFA66A4330C48B8EC0BFA860E(__this, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
return;
}
IL_001d:
{
RuntimeObject * L_6 = ReflectPropertyDescriptor_get_AmbientValue_m2FE1E71F14949D9DA86714056C74205C3672D6D3(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
RuntimeObject * L_7 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_noValue_18();
if ((((RuntimeObject*)(RuntimeObject *)L_6) == ((RuntimeObject*)(RuntimeObject *)L_7)))
{
goto IL_003a;
}
}
{
RuntimeObject* L_8 = ___provider0;
RuntimeObject * L_9 = ___component1;
RuntimeObject * L_10 = ReflectPropertyDescriptor_get_AmbientValue_m2FE1E71F14949D9DA86714056C74205C3672D6D3(__this, /*hidden argument*/NULL);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_11 = ___notifyDesc2;
ReflectPropertyDescriptor_ExtenderSetValue_mC58759964687244DFA66A4330C48B8EC0BFA860E(__this, L_8, L_9, L_10, L_11, /*hidden argument*/NULL);
return;
}
IL_003a:
{
MethodInfo_t * L_12 = ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70(__this, /*hidden argument*/NULL);
bool L_13 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_12, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_00e4;
}
}
{
RuntimeObject * L_14 = ___component1;
RuntimeObject* L_15 = MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6(L_14, /*hidden argument*/NULL);
V_0 = L_15;
V_1 = (RuntimeObject*)NULL;
V_2 = NULL;
RuntimeObject* L_16 = V_0;
if (!L_16)
{
goto IL_006f;
}
}
{
RuntimeObject* L_17 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL);
NullCheck(L_17);
RuntimeObject * L_20 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_17, L_19);
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_20, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var));
}
IL_006f:
{
RuntimeObject* L_21 = V_1;
if (!L_21)
{
goto IL_0095;
}
}
{
RuntimeObject* L_22 = ___provider0;
RuntimeObject * L_23 = ___component1;
RuntimeObject * L_24 = ReflectPropertyDescriptor_ExtenderGetValue_m741FE4C60D34936C3505CE5E90DB426593C7F96F(__this, L_22, L_23, /*hidden argument*/NULL);
V_2 = L_24;
}
IL_007b:
try
{ // begin try (depth: 1)
RuntimeObject* L_25 = V_1;
RuntimeObject * L_26 = ___component1;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_27 = ___notifyDesc2;
NullCheck(L_25);
InterfaceActionInvoker2< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * >::Invoke(1 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanging(System.Object,System.ComponentModel.MemberDescriptor) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_25, L_26, L_27);
goto IL_0095;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0085;
throw e;
}
CATCH_0085:
{ // begin catch(System.ComponentModel.Design.CheckoutException)
{
V_4 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)__exception_local);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_28 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_29 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_StaticFields*)il2cpp_codegen_static_fields_for(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var))->get_Canceled_17();
if ((!(((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_28) == ((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_29))))
{
goto IL_0092;
}
}
IL_0090:
{
goto IL_00e4;
}
IL_0092:
{
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_30 = V_4;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, ReflectPropertyDescriptor_ExtenderResetValue_mD615C4E5718D88643447EA1115D1B48460D2DA06_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_0095:
{
Type_t * L_31 = __this->get_componentClass_32();
RuntimeObject* L_32 = ___provider0;
RuntimeObject * L_33 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject * >::Invoke(16 /* System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object) */, __this, L_31, L_32);
___provider0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_33, IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var));
MethodInfo_t * L_34 = ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70(__this, /*hidden argument*/NULL);
bool L_35 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_34, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_35)
{
goto IL_00e4;
}
}
{
MethodInfo_t * L_36 = ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70(__this, /*hidden argument*/NULL);
RuntimeObject* L_37 = ___provider0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = L_38;
RuntimeObject * L_40 = ___component1;
NullCheck(L_39);
ArrayElementTypeCheck (L_39, L_40);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_40);
NullCheck(L_36);
MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_36, L_37, L_39, /*hidden argument*/NULL);
RuntimeObject* L_41 = V_1;
if (!L_41)
{
goto IL_00e4;
}
}
{
RuntimeObject* L_42 = ___provider0;
RuntimeObject * L_43 = ___component1;
RuntimeObject * L_44 = ReflectPropertyDescriptor_ExtenderGetValue_m741FE4C60D34936C3505CE5E90DB426593C7F96F(__this, L_42, L_43, /*hidden argument*/NULL);
V_3 = L_44;
RuntimeObject* L_45 = V_1;
RuntimeObject * L_46 = ___component1;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_47 = ___notifyDesc2;
RuntimeObject * L_48 = V_2;
RuntimeObject * L_49 = V_3;
NullCheck(L_45);
InterfaceActionInvoker4< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 *, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanged(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_45, L_46, L_47, L_48, L_49);
}
IL_00e4:
{
return;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::ExtenderSetValue(System.ComponentModel.IExtenderProvider,System.Object,System.Object,System.ComponentModel.PropertyDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_ExtenderSetValue_mC58759964687244DFA66A4330C48B8EC0BFA860E (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, RuntimeObject * ___value2, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___notifyDesc3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_ExtenderSetValue_mC58759964687244DFA66A4330C48B8EC0BFA860E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___provider0;
if (!L_0)
{
goto IL_0099;
}
}
{
RuntimeObject * L_1 = ___component1;
RuntimeObject* L_2 = MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6(L_1, /*hidden argument*/NULL);
V_0 = L_2;
V_1 = (RuntimeObject*)NULL;
V_2 = NULL;
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_002a;
}
}
{
RuntimeObject* L_4 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL);
NullCheck(L_4);
RuntimeObject * L_7 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_4, L_6);
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_7, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var));
}
IL_002a:
{
RuntimeObject* L_8 = V_1;
if (!L_8)
{
goto IL_004e;
}
}
{
RuntimeObject* L_9 = ___provider0;
RuntimeObject * L_10 = ___component1;
RuntimeObject * L_11 = ReflectPropertyDescriptor_ExtenderGetValue_m741FE4C60D34936C3505CE5E90DB426593C7F96F(__this, L_9, L_10, /*hidden argument*/NULL);
V_2 = L_11;
}
IL_0036:
try
{ // begin try (depth: 1)
RuntimeObject* L_12 = V_1;
RuntimeObject * L_13 = ___component1;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_14 = ___notifyDesc3;
NullCheck(L_12);
InterfaceActionInvoker2< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * >::Invoke(1 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanging(System.Object,System.ComponentModel.MemberDescriptor) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_12, L_13, L_14);
goto IL_004e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0041;
throw e;
}
CATCH_0041:
{ // begin catch(System.ComponentModel.Design.CheckoutException)
{
V_3 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)__exception_local);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_15 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_16 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_StaticFields*)il2cpp_codegen_static_fields_for(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var))->get_Canceled_17();
if ((!(((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_15) == ((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_16))))
{
goto IL_004c;
}
}
IL_004a:
{
goto IL_0099;
}
IL_004c:
{
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_17 = V_3;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ReflectPropertyDescriptor_ExtenderSetValue_mC58759964687244DFA66A4330C48B8EC0BFA860E_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_004e:
{
Type_t * L_18 = __this->get_componentClass_32();
RuntimeObject* L_19 = ___provider0;
RuntimeObject * L_20 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject * >::Invoke(16 /* System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object) */, __this, L_18, L_19);
___provider0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_20, IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var));
MethodInfo_t * L_21 = ReflectPropertyDescriptor_get_SetMethodValue_m9C7CB91D0400A7450E620516B1A30B2FD37791A5(__this, /*hidden argument*/NULL);
bool L_22 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_21, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_0099;
}
}
{
MethodInfo_t * L_23 = ReflectPropertyDescriptor_get_SetMethodValue_m9C7CB91D0400A7450E620516B1A30B2FD37791A5(__this, /*hidden argument*/NULL);
RuntimeObject* L_24 = ___provider0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = L_25;
RuntimeObject * L_27 = ___component1;
NullCheck(L_26);
ArrayElementTypeCheck (L_26, L_27);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_27);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = L_26;
RuntimeObject * L_29 = ___value2;
NullCheck(L_28);
ArrayElementTypeCheck (L_28, L_29);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_29);
NullCheck(L_23);
MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_23, L_24, L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = V_1;
if (!L_30)
{
goto IL_0099;
}
}
{
RuntimeObject* L_31 = V_1;
RuntimeObject * L_32 = ___component1;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_33 = ___notifyDesc3;
RuntimeObject * L_34 = V_2;
RuntimeObject * L_35 = ___value2;
NullCheck(L_31);
InterfaceActionInvoker4< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 *, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanged(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_31, L_32, L_33, L_34, L_35);
}
IL_0099:
{
return;
}
}
// System.Boolean System.ComponentModel.ReflectPropertyDescriptor::ExtenderShouldSerializeValue(System.ComponentModel.IExtenderProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectPropertyDescriptor_ExtenderShouldSerializeValue_mD2094CC76B452BFB3D7157B92FC88D1F3C016BE9 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_ExtenderShouldSerializeValue_mD2094CC76B452BFB3D7157B92FC88D1F3C016BE9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 4);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Type_t * L_0 = __this->get_componentClass_32();
RuntimeObject* L_1 = ___provider0;
RuntimeObject * L_2 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject * >::Invoke(16 /* System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object) */, __this, L_0, L_1);
___provider0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_2, IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var));
bool L_3 = VirtFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.ComponentModel.PropertyDescriptor::get_IsReadOnly() */, __this);
if (!L_3)
{
goto IL_005c;
}
}
{
MethodInfo_t * L_4 = ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B(__this, /*hidden argument*/NULL);
bool L_5 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_4, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_004b;
}
}
IL_002a:
try
{ // begin try (depth: 1)
MethodInfo_t * L_6 = ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B(__this, /*hidden argument*/NULL);
RuntimeObject* L_7 = ___provider0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_8;
RuntimeObject * L_10 = ___component1;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_10);
NullCheck(L_6);
RuntimeObject * L_11 = MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_6, L_7, L_9, /*hidden argument*/NULL);
V_0 = ((*(bool*)((bool*)UnBox(L_11, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))));
goto IL_00b1;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0048;
throw e;
}
CATCH_0048:
{ // begin catch(System.Object)
goto IL_004b;
} // end catch (depth: 1)
IL_004b:
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_12 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var);
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * L_13 = ((DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var))->get_Content_0();
NullCheck(L_12);
bool L_14 = AttributeCollection_Contains_m44FEEEE6F4C20AAF6207A09BE38A10EEF6EDE6EF(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
IL_005c:
{
RuntimeObject * L_15 = ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
RuntimeObject * L_16 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_noValue_18();
if ((!(((RuntimeObject*)(RuntimeObject *)L_15) == ((RuntimeObject*)(RuntimeObject *)L_16))))
{
goto IL_009a;
}
}
{
MethodInfo_t * L_17 = ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B(__this, /*hidden argument*/NULL);
bool L_18 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_17, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0098;
}
}
IL_0077:
try
{ // begin try (depth: 1)
MethodInfo_t * L_19 = ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B(__this, /*hidden argument*/NULL);
RuntimeObject* L_20 = ___provider0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = L_21;
RuntimeObject * L_23 = ___component1;
NullCheck(L_22);
ArrayElementTypeCheck (L_22, L_23);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23);
NullCheck(L_19);
RuntimeObject * L_24 = MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_19, L_20, L_22, /*hidden argument*/NULL);
V_0 = ((*(bool*)((bool*)UnBox(L_24, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))));
goto IL_00b1;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0095;
throw e;
}
CATCH_0095:
{ // begin catch(System.Object)
goto IL_0098;
} // end catch (depth: 1)
IL_0098:
{
return (bool)1;
}
IL_009a:
{
RuntimeObject * L_25 = ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA(__this, /*hidden argument*/NULL);
RuntimeObject* L_26 = ___provider0;
RuntimeObject * L_27 = ___component1;
RuntimeObject * L_28 = ReflectPropertyDescriptor_ExtenderGetValue_m741FE4C60D34936C3505CE5E90DB426593C7F96F(__this, L_26, L_27, /*hidden argument*/NULL);
bool L_29 = Object_Equals_mD98CD6D19C28ADC48B8468F78F94D38E203D0521(L_25, L_28, /*hidden argument*/NULL);
return (bool)((((int32_t)L_29) == ((int32_t)0))? 1 : 0);
}
IL_00b1:
{
bool L_30 = V_0;
return L_30;
}
}
// System.Boolean System.ComponentModel.ReflectPropertyDescriptor::CanResetValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectPropertyDescriptor_CanResetValue_mD2A00DE68F5D8509FF25E61EF73732238D032176 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_CanResetValue_mD2A00DE68F5D8509FF25E61EF73732238D032176_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
bool L_0 = ReflectPropertyDescriptor_get_IsExtender_mFFEE1C5A723D8A0BBBAC2AFE3DA9B77D7821727A(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0010;
}
}
{
bool L_1 = VirtFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.ComponentModel.PropertyDescriptor::get_IsReadOnly() */, __this);
if (!L_1)
{
goto IL_0012;
}
}
IL_0010:
{
return (bool)0;
}
IL_0012:
{
RuntimeObject * L_2 = ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
RuntimeObject * L_3 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_noValue_18();
if ((((RuntimeObject*)(RuntimeObject *)L_2) == ((RuntimeObject*)(RuntimeObject *)L_3)))
{
goto IL_0035;
}
}
{
RuntimeObject * L_4 = ___component0;
RuntimeObject * L_5 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.ComponentModel.PropertyDescriptor::GetValue(System.Object) */, __this, L_4);
RuntimeObject * L_6 = ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA(__this, /*hidden argument*/NULL);
bool L_7 = Object_Equals_mD98CD6D19C28ADC48B8468F78F94D38E203D0521(L_5, L_6, /*hidden argument*/NULL);
return (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
}
IL_0035:
{
MethodInfo_t * L_8 = ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70(__this, /*hidden argument*/NULL);
bool L_9 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_8, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_007a;
}
}
{
MethodInfo_t * L_10 = ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B(__this, /*hidden argument*/NULL);
bool L_11 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_10, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0078;
}
}
{
Type_t * L_12 = __this->get_componentClass_32();
RuntimeObject * L_13 = ___component0;
RuntimeObject * L_14 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject * >::Invoke(16 /* System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object) */, __this, L_12, L_13);
___component0 = L_14;
}
IL_0060:
try
{ // begin try (depth: 1)
MethodInfo_t * L_15 = ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B(__this, /*hidden argument*/NULL);
RuntimeObject * L_16 = ___component0;
NullCheck(L_15);
RuntimeObject * L_17 = MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_15, L_16, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
V_0 = ((*(bool*)((bool*)UnBox(L_17, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))));
goto IL_0091;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0075;
throw e;
}
CATCH_0075:
{ // begin catch(System.Object)
goto IL_0078;
} // end catch (depth: 1)
IL_0078:
{
return (bool)1;
}
IL_007a:
{
RuntimeObject * L_18 = ReflectPropertyDescriptor_get_AmbientValue_m2FE1E71F14949D9DA86714056C74205C3672D6D3(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
RuntimeObject * L_19 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_noValue_18();
if ((((RuntimeObject*)(RuntimeObject *)L_18) == ((RuntimeObject*)(RuntimeObject *)L_19)))
{
goto IL_008f;
}
}
{
RuntimeObject * L_20 = ___component0;
bool L_21 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(31 /* System.Boolean System.ComponentModel.PropertyDescriptor::ShouldSerializeValue(System.Object) */, __this, L_20);
return L_21;
}
IL_008f:
{
return (bool)0;
}
IL_0091:
{
bool L_22 = V_0;
return L_22;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::FillAttributes(System.Collections.IList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_FillAttributes_m6D3D9FF9C54562771EAFA7176184DF610B99B6EC (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___attributes0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_FillAttributes_m6D3D9FF9C54562771EAFA7176184DF610B99B6EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Type_t * V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject* V_3 = NULL;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_4 = NULL;
RuntimeObject* V_5 = NULL;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* V_6 = NULL;
MemberInfo_t * V_7 = NULL;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* V_8 = NULL;
int32_t V_9 = 0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_10 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_11 = NULL;
int32_t V_12 = 0;
AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068 * V_13 = NULL;
Type_t * V_14 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_15 = NULL;
MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* V_16 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_17 = NULL;
int32_t V_18 = 0;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_19 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_20 = NULL;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_21 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Type_t * L_0 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
RuntimeObject* L_2 = AttributeCollection_GetEnumerator_m0A6B7803DAA1D559DF91BB18D0230F449A036DCB(L_1, /*hidden argument*/NULL);
V_3 = L_2;
}
IL_0011:
try
{ // begin try (depth: 1)
{
goto IL_0029;
}
IL_0013:
{
RuntimeObject* L_3 = V_3;
NullCheck(L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_3);
V_4 = ((Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)CastclassClass((RuntimeObject*)L_4, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_il2cpp_TypeInfo_var));
RuntimeObject* L_5 = ___attributes0;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_6 = V_4;
NullCheck(L_5);
InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_5, L_6);
}
IL_0029:
{
RuntimeObject* L_7 = V_3;
NullCheck(L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_7);
if (L_8)
{
goto IL_0013;
}
}
IL_0031:
{
IL2CPP_LEAVE(0x47, FINALLY_0033);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0033;
}
FINALLY_0033:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_3;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_10 = V_5;
if (!L_10)
{
goto IL_0046;
}
}
IL_003f:
{
RuntimeObject* L_11 = V_5;
NullCheck(L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_11);
}
IL_0046:
{
IL2CPP_END_FINALLY(51)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(51)
{
IL2CPP_JUMP_TBL(0x47, IL_0047)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0047:
{
V_0 = ((int32_t)54);
Type_t * L_12 = __this->get_componentClass_32();
V_1 = L_12;
V_2 = 0;
goto IL_0060;
}
IL_0055:
{
int32_t L_13 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
Type_t * L_14 = V_1;
NullCheck(L_14);
Type_t * L_15 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_14);
V_1 = L_15;
}
IL_0060:
{
Type_t * L_16 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_17 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_16, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_007b;
}
}
{
Type_t * L_18 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL);
bool L_21 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_18, L_20, /*hidden argument*/NULL);
if (L_21)
{
goto IL_0055;
}
}
IL_007b:
{
int32_t L_22 = V_2;
if ((((int32_t)L_22) <= ((int32_t)0)))
{
goto IL_0259;
}
}
{
Type_t * L_23 = __this->get_componentClass_32();
V_1 = L_23;
int32_t L_24 = V_2;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_25 = (AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448*)(AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448*)SZArrayNew(AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448_il2cpp_TypeInfo_var, (uint32_t)L_24);
V_6 = L_25;
goto IL_010c;
}
IL_0093:
{
V_7 = (MemberInfo_t *)NULL;
bool L_26 = ReflectPropertyDescriptor_get_IsExtender_mFFEE1C5A723D8A0BBBAC2AFE3DA9B77D7821727A(__this, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_00ca;
}
}
{
Type_t * L_27 = V_1;
String_t* L_28 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
String_t* L_29 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralBFFFD736CDDD08A4EEE689949C3399CB61DA773B, L_28, /*hidden argument*/NULL);
int32_t L_30 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_31 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_32 = L_31;
Type_t * L_33 = __this->get_receiverType_43();
NullCheck(L_32);
ArrayElementTypeCheck (L_32, L_33);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_33);
NullCheck(L_27);
MethodInfo_t * L_34 = Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA(L_27, L_29, L_30, (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_32, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL);
V_7 = L_34;
goto IL_00ec;
}
IL_00ca:
{
Type_t * L_35 = V_1;
String_t* L_36 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
int32_t L_37 = V_0;
Type_t * L_38 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_39 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)0);
ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* L_40 = (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)SZArrayNew(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA_il2cpp_TypeInfo_var, (uint32_t)0);
NullCheck(L_35);
PropertyInfo_t * L_41 = Type_GetProperty_m35A7FCA1C89F7F03E865EBE00515336DFB482CFF(L_35, L_36, L_37, (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_38, L_39, L_40, /*hidden argument*/NULL);
V_7 = L_41;
}
IL_00ec:
{
MemberInfo_t * L_42 = V_7;
bool L_43 = MemberInfo_op_Inequality_mAFFDD84E1AF346532192B32FA8787E64072B4F5B(L_42, (MemberInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_43)
{
goto IL_0105;
}
}
{
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_44 = V_6;
int32_t L_45 = V_2;
int32_t L_46 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_45, (int32_t)1));
V_2 = L_46;
MemberInfo_t * L_47 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_48 = ReflectTypeDescriptionProvider_ReflectGetAttributes_mA3DA28648085382DC968178CE6B9D5288DE17739(L_47, /*hidden argument*/NULL);
NullCheck(L_44);
ArrayElementTypeCheck (L_44, L_48);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(L_46), (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)L_48);
}
IL_0105:
{
Type_t * L_49 = V_1;
NullCheck(L_49);
Type_t * L_50 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_49);
V_1 = L_50;
}
IL_010c:
{
Type_t * L_51 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_52 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_51, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_52)
{
goto IL_012a;
}
}
{
Type_t * L_53 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_54 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_55 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_54, /*hidden argument*/NULL);
bool L_56 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_53, L_55, /*hidden argument*/NULL);
if (L_56)
{
goto IL_0093;
}
}
IL_012a:
{
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_57 = V_6;
V_8 = L_57;
V_9 = 0;
goto IL_0205;
}
IL_0136:
{
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_58 = V_8;
int32_t L_59 = V_9;
NullCheck(L_58);
int32_t L_60 = L_59;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_61 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(L_58)->GetAt(static_cast<il2cpp_array_size_t>(L_60));
V_10 = L_61;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_62 = V_10;
if (!L_62)
{
goto IL_01ff;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_63 = V_10;
V_11 = L_63;
V_12 = 0;
goto IL_01f4;
}
IL_0150:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_64 = V_11;
int32_t L_65 = V_12;
NullCheck(L_64);
int32_t L_66 = L_65;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_67 = (L_64)->GetAt(static_cast<il2cpp_array_size_t>(L_66));
V_13 = ((AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068 *)IsInstClass((RuntimeObject*)L_67, AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068_il2cpp_TypeInfo_var));
AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068 * L_68 = V_13;
if (!L_68)
{
goto IL_01ee;
}
}
{
AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068 * L_69 = V_13;
NullCheck(L_69);
String_t* L_70 = AttributeProviderAttribute_get_TypeName_m83FA0949577D518981558E3A01BA14647565A0DC_inline(L_69, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_71 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_70, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
V_14 = L_71;
Type_t * L_72 = V_14;
bool L_73 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_72, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_73)
{
goto IL_01ee;
}
}
{
V_15 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL;
AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068 * L_74 = V_13;
NullCheck(L_74);
String_t* L_75 = AttributeProviderAttribute_get_PropertyName_mC7A169CDA2E8BE87946A71872C41F0C768D1C80B_inline(L_74, /*hidden argument*/NULL);
bool L_76 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_75, /*hidden argument*/NULL);
if (L_76)
{
goto IL_01ba;
}
}
{
Type_t * L_77 = V_14;
AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068 * L_78 = V_13;
NullCheck(L_78);
String_t* L_79 = AttributeProviderAttribute_get_PropertyName_mC7A169CDA2E8BE87946A71872C41F0C768D1C80B_inline(L_78, /*hidden argument*/NULL);
NullCheck(L_77);
MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* L_80 = Type_GetMember_m715D5865845665F5A72E927F52FB5CFA1BB3D800(L_77, L_79, /*hidden argument*/NULL);
V_16 = L_80;
MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* L_81 = V_16;
NullCheck(L_81);
if (!(((RuntimeArray*)L_81)->max_length))
{
goto IL_01c3;
}
}
{
MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* L_82 = V_16;
NullCheck(L_82);
int32_t L_83 = 0;
MemberInfo_t * L_84 = (L_82)->GetAt(static_cast<il2cpp_array_size_t>(L_83));
bool L_85 = MemberInfo_op_Inequality_mAFFDD84E1AF346532192B32FA8787E64072B4F5B(L_84, (MemberInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_85)
{
goto IL_01c3;
}
}
{
MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* L_86 = V_16;
NullCheck(L_86);
int32_t L_87 = 0;
MemberInfo_t * L_88 = (L_86)->GetAt(static_cast<il2cpp_array_size_t>(L_87));
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_89 = ReflectTypeDescriptionProvider_ReflectGetAttributes_mA3DA28648085382DC968178CE6B9D5288DE17739(L_88, /*hidden argument*/NULL);
V_15 = L_89;
goto IL_01c3;
}
IL_01ba:
{
Type_t * L_90 = V_14;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_91 = ReflectTypeDescriptionProvider_ReflectGetAttributes_mA3DA28648085382DC968178CE6B9D5288DE17739(L_90, /*hidden argument*/NULL);
V_15 = L_91;
}
IL_01c3:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_92 = V_15;
if (!L_92)
{
goto IL_01ee;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_93 = V_15;
V_17 = L_93;
V_18 = 0;
goto IL_01e6;
}
IL_01d0:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_94 = V_17;
int32_t L_95 = V_18;
NullCheck(L_94);
int32_t L_96 = L_95;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_97 = (L_94)->GetAt(static_cast<il2cpp_array_size_t>(L_96));
V_19 = L_97;
RuntimeObject* L_98 = ___attributes0;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_99 = V_19;
NullCheck(L_98);
InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_98, L_99);
int32_t L_100 = V_18;
V_18 = ((int32_t)il2cpp_codegen_add((int32_t)L_100, (int32_t)1));
}
IL_01e6:
{
int32_t L_101 = V_18;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_102 = V_17;
NullCheck(L_102);
if ((((int32_t)L_101) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_102)->max_length)))))))
{
goto IL_01d0;
}
}
IL_01ee:
{
int32_t L_103 = V_12;
V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_103, (int32_t)1));
}
IL_01f4:
{
int32_t L_104 = V_12;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_105 = V_11;
NullCheck(L_105);
if ((((int32_t)L_104) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_105)->max_length)))))))
{
goto IL_0150;
}
}
IL_01ff:
{
int32_t L_106 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_106, (int32_t)1));
}
IL_0205:
{
int32_t L_107 = V_9;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_108 = V_8;
NullCheck(L_108);
if ((((int32_t)L_107) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_108)->max_length)))))))
{
goto IL_0136;
}
}
{
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_109 = V_6;
V_8 = L_109;
V_9 = 0;
goto IL_0251;
}
IL_0219:
{
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_110 = V_8;
int32_t L_111 = V_9;
NullCheck(L_110);
int32_t L_112 = L_111;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_113 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(L_110)->GetAt(static_cast<il2cpp_array_size_t>(L_112));
V_20 = L_113;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_114 = V_20;
if (!L_114)
{
goto IL_024b;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_115 = V_20;
V_11 = L_115;
V_12 = 0;
goto IL_0243;
}
IL_022d:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_116 = V_11;
int32_t L_117 = V_12;
NullCheck(L_116);
int32_t L_118 = L_117;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_119 = (L_116)->GetAt(static_cast<il2cpp_array_size_t>(L_118));
V_21 = L_119;
RuntimeObject* L_120 = ___attributes0;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_121 = V_21;
NullCheck(L_120);
InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_120, L_121);
int32_t L_122 = V_12;
V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_122, (int32_t)1));
}
IL_0243:
{
int32_t L_123 = V_12;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_124 = V_11;
NullCheck(L_124);
if ((((int32_t)L_123) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_124)->max_length)))))))
{
goto IL_022d;
}
}
IL_024b:
{
int32_t L_125 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_125, (int32_t)1));
}
IL_0251:
{
int32_t L_126 = V_9;
AttributeU5BU5DU5BU5D_t1FB4E7678C2C1B6E90F557E9732FAFBCE86F7448* L_127 = V_8;
NullCheck(L_127);
if ((((int32_t)L_126) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_127)->max_length)))))))
{
goto IL_0219;
}
}
IL_0259:
{
RuntimeObject* L_128 = ___attributes0;
PropertyDescriptor_FillAttributes_mA3E3A90097B815BD8F7A185036485FF86A03256F(__this, L_128, /*hidden argument*/NULL);
MethodInfo_t * L_129 = ReflectPropertyDescriptor_get_SetMethodValue_m9C7CB91D0400A7450E620516B1A30B2FD37791A5(__this, /*hidden argument*/NULL);
bool L_130 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_129, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_130)
{
goto IL_027a;
}
}
{
RuntimeObject* L_131 = ___attributes0;
IL2CPP_RUNTIME_CLASS_INIT(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var);
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * L_132 = ((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var))->get_Yes_1();
NullCheck(L_131);
InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_131, L_132);
}
IL_027a:
{
return;
}
}
// System.Object System.ComponentModel.ReflectPropertyDescriptor::GetValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectPropertyDescriptor_GetValue_mE3BE8817DAF798E0E09269B39C1650DF4B480688 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_GetValue_mE3BE8817DAF798E0E09269B39C1650DF4B480688_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
Exception_t * V_1 = NULL;
String_t* V_2 = NULL;
RuntimeObject* V_3 = NULL;
String_t* V_4 = NULL;
RuntimeObject* V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
bool L_0 = ReflectPropertyDescriptor_get_IsExtender_mFFEE1C5A723D8A0BBBAC2AFE3DA9B77D7821727A(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_000a;
}
}
{
return NULL;
}
IL_000a:
{
RuntimeObject * L_1 = ___component0;
if (!L_1)
{
goto IL_00bc;
}
}
{
Type_t * L_2 = __this->get_componentClass_32();
RuntimeObject * L_3 = ___component0;
RuntimeObject * L_4 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject * >::Invoke(16 /* System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object) */, __this, L_2, L_3);
___component0 = L_4;
}
IL_001f:
try
{ // begin try (depth: 1)
MethodInfo_t * L_5 = ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618(__this, /*hidden argument*/NULL);
RuntimeObject * L_6 = ___component0;
RuntimeObject * L_7 = SecurityUtils_MethodInfoInvoke_mF5977E97A2A9073E72C098B312789C9949128AF0(L_5, L_6, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
V_0 = L_7;
goto IL_00be;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0032;
throw e;
}
CATCH_0032:
{ // begin catch(System.Exception)
{
V_1 = ((Exception_t *)__exception_local);
V_2 = (String_t*)NULL;
RuntimeObject * L_8 = ___component0;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var));
RuntimeObject* L_9 = V_3;
if (!L_9)
{
goto IL_005c;
}
}
IL_003f:
{
RuntimeObject* L_10 = V_3;
NullCheck(L_10);
RuntimeObject* L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_10);
V_5 = L_11;
RuntimeObject* L_12 = V_5;
if (!L_12)
{
goto IL_005c;
}
}
IL_004b:
{
RuntimeObject* L_13 = V_5;
NullCheck(L_13);
String_t* L_14 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String System.ComponentModel.ISite::get_Name() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_13);
if (!L_14)
{
goto IL_005c;
}
}
IL_0054:
{
RuntimeObject* L_15 = V_5;
NullCheck(L_15);
String_t* L_16 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String System.ComponentModel.ISite::get_Name() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_15);
V_2 = L_16;
}
IL_005c:
{
String_t* L_17 = V_2;
if (L_17)
{
goto IL_006b;
}
}
IL_005f:
{
RuntimeObject * L_18 = ___component0;
NullCheck(L_18);
Type_t * L_19 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_18, /*hidden argument*/NULL);
NullCheck(L_19);
String_t* L_20 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_19);
V_2 = L_20;
}
IL_006b:
{
Exception_t * L_21 = V_1;
if (!((TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 *)IsInstSealed((RuntimeObject*)L_21, TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8_il2cpp_TypeInfo_var)))
{
goto IL_007a;
}
}
IL_0073:
{
Exception_t * L_22 = V_1;
NullCheck(L_22);
Exception_t * L_23 = Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline(L_22, /*hidden argument*/NULL);
V_1 = L_23;
}
IL_007a:
{
Exception_t * L_24 = V_1;
NullCheck(L_24);
String_t* L_25 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_24);
V_4 = L_25;
String_t* L_26 = V_4;
if (L_26)
{
goto IL_0093;
}
}
IL_0086:
{
Exception_t * L_27 = V_1;
NullCheck(L_27);
Type_t * L_28 = Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3(L_27, /*hidden argument*/NULL);
NullCheck(L_28);
String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_28);
V_4 = L_29;
}
IL_0093:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_31 = L_30;
String_t* L_32 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
NullCheck(L_31);
ArrayElementTypeCheck (L_31, L_32);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_32);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = L_31;
String_t* L_34 = V_2;
NullCheck(L_33);
ArrayElementTypeCheck (L_33, L_34);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_34);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = L_33;
String_t* L_36 = V_4;
NullCheck(L_35);
ArrayElementTypeCheck (L_35, L_36);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_36);
String_t* L_37 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral1708ED1EF3F1A4D2BF086D271CAE42596C45D55A, L_35, /*hidden argument*/NULL);
Exception_t * L_38 = V_1;
TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 * L_39 = (TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 *)il2cpp_codegen_object_new(TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8_il2cpp_TypeInfo_var);
TargetInvocationException__ctor_mBCC339AE7AC683564DA27A950A92463915B71F00(L_39, L_37, L_38, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_39, ReflectPropertyDescriptor_GetValue_mE3BE8817DAF798E0E09269B39C1650DF4B480688_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_00bc:
{
return NULL;
}
IL_00be:
{
RuntimeObject * L_40 = V_0;
return L_40;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::OnINotifyPropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_OnINotifyPropertyChanged_mBD589BFB27A3750D64BB9404B282E699BF366739 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject * ___component0, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * ___e1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_OnINotifyPropertyChanged_mBD589BFB27A3750D64BB9404B282E699BF366739_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * L_0 = ___e1;
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(4 /* System.String System.ComponentModel.PropertyChangedEventArgs::get_PropertyName() */, L_0);
bool L_2 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0026;
}
}
{
PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * L_3 = ___e1;
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(4 /* System.String System.ComponentModel.PropertyChangedEventArgs::get_PropertyName() */, L_3);
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
int32_t L_7 = String_Compare_mA1D43767F882FE677F238637A8785FCCEE7173D9(L_4, L_5, (bool)1, L_6, /*hidden argument*/NULL);
if (L_7)
{
goto IL_002e;
}
}
IL_0026:
{
RuntimeObject * L_8 = ___component0;
PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * L_9 = ___e1;
VirtActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(27 /* System.Void System.ComponentModel.PropertyDescriptor::OnValueChanged(System.Object,System.EventArgs) */, __this, L_8, L_9);
}
IL_002e:
{
return;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::OnValueChanged(System.Object,System.EventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_OnValueChanged_mBEFE9C12D39E3C37866E423BB06CB4FB8BDF0C94 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject * ___component0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_OnValueChanged_mBEFE9C12D39E3C37866E423BB06CB4FB8BDF0C94_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_state_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
int32_t L_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitChangedQueried_26();
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0022;
}
}
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_3 = __this->get_realChangedEvent_41();
if (L_3)
{
goto IL_0022;
}
}
{
RuntimeObject * L_4 = ___component0;
EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * L_5 = ___e1;
PropertyDescriptor_OnValueChanged_m78CADBEDC8B71F0BDBA91762452C418391C0B592(__this, L_4, L_5, /*hidden argument*/NULL);
}
IL_0022:
{
return;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::RemoveValueChanged(System.Object,System.EventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_RemoveValueChanged_mEDF7F459C71B83D8DDF666A3BCA4120639048560 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject * ___component0, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___handler1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_RemoveValueChanged_mEDF7F459C71B83D8DDF666A3BCA4120639048560_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * V_0 = NULL;
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * V_1 = NULL;
{
RuntimeObject * L_0 = ___component0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral335C4C1E2F05B5297A56769D8DE75AD9C4874CD3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ReflectPropertyDescriptor_RemoveValueChanged_mEDF7F459C71B83D8DDF666A3BCA4120639048560_RuntimeMethod_var);
}
IL_000e:
{
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_2 = ___handler1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteral31A81EC93DB3740EE3984FC40E34A60B0412643D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ReflectPropertyDescriptor_RemoveValueChanged_mEDF7F459C71B83D8DDF666A3BCA4120639048560_RuntimeMethod_var);
}
IL_001c:
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_4 = ReflectPropertyDescriptor_get_ChangedEventValue_m53318DC3BCA673EA99F7D7B8CA6A5BA314D6D0A8(__this, /*hidden argument*/NULL);
V_0 = L_4;
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_5 = V_0;
if (!L_5)
{
goto IL_003d;
}
}
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_6 = V_0;
NullCheck(L_6);
Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.ComponentModel.EventDescriptor::get_EventType() */, L_6);
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_8 = ___handler1;
NullCheck(L_7);
bool L_9 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(138 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_7, L_8);
if (!L_9)
{
goto IL_003d;
}
}
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_10 = V_0;
RuntimeObject * L_11 = ___component0;
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_12 = ___handler1;
NullCheck(L_10);
VirtActionInvoker2< RuntimeObject *, Delegate_t * >::Invoke(21 /* System.Void System.ComponentModel.EventDescriptor::RemoveEventHandler(System.Object,System.Delegate) */, L_10, L_11, L_12);
return;
}
IL_003d:
{
RuntimeObject * L_13 = ___component0;
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_14 = ___handler1;
PropertyDescriptor_RemoveValueChanged_m198AA1C23F7EB535433044BE34E76F83C0EFB830(__this, L_13, L_14, /*hidden argument*/NULL);
RuntimeObject * L_15 = ___component0;
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_16 = PropertyDescriptor_GetValueChangedHandler_m1574AF743125BF015F9DDB577AE0559684063000(__this, L_15, /*hidden argument*/NULL);
if (L_16)
{
goto IL_006b;
}
}
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_17 = ReflectPropertyDescriptor_get_IPropChangedEventValue_m09F9B4CC2CF462E85042BAAD57FC69A3A84BB73A(__this, /*hidden argument*/NULL);
V_1 = L_17;
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_18 = V_1;
if (!L_18)
{
goto IL_006b;
}
}
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_19 = V_1;
RuntimeObject * L_20 = ___component0;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_21 = (PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 *)il2cpp_codegen_object_new(PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82_il2cpp_TypeInfo_var);
PropertyChangedEventHandler__ctor_mC6EC20F2995A9376A72EB51981850A9E5C8450E7(L_21, __this, (intptr_t)((intptr_t)ReflectPropertyDescriptor_OnINotifyPropertyChanged_mBD589BFB27A3750D64BB9404B282E699BF366739_RuntimeMethod_var), /*hidden argument*/NULL);
NullCheck(L_19);
VirtActionInvoker2< RuntimeObject *, Delegate_t * >::Invoke(21 /* System.Void System.ComponentModel.EventDescriptor::RemoveEventHandler(System.Object,System.Delegate) */, L_19, L_20, L_21);
}
IL_006b:
{
return;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::ResetValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_ResetValue_m0B916789E04B78F99B67E2B67710230B081260DF (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_ResetValue_m0B916789E04B78F99B67E2B67710230B081260DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject * V_3 = NULL;
RuntimeObject * V_4 = NULL;
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Type_t * L_0 = __this->get_componentClass_32();
RuntimeObject * L_1 = ___component0;
RuntimeObject * L_2 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject * >::Invoke(16 /* System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object) */, __this, L_0, L_1);
V_0 = L_2;
RuntimeObject * L_3 = ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
RuntimeObject * L_4 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_noValue_18();
if ((((RuntimeObject*)(RuntimeObject *)L_3) == ((RuntimeObject*)(RuntimeObject *)L_4)))
{
goto IL_0029;
}
}
{
RuntimeObject * L_5 = ___component0;
RuntimeObject * L_6 = ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA(__this, /*hidden argument*/NULL);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.ComponentModel.PropertyDescriptor::SetValue(System.Object,System.Object) */, __this, L_5, L_6);
return;
}
IL_0029:
{
RuntimeObject * L_7 = ReflectPropertyDescriptor_get_AmbientValue_m2FE1E71F14949D9DA86714056C74205C3672D6D3(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
RuntimeObject * L_8 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_noValue_18();
if ((((RuntimeObject*)(RuntimeObject *)L_7) == ((RuntimeObject*)(RuntimeObject *)L_8)))
{
goto IL_0044;
}
}
{
RuntimeObject * L_9 = ___component0;
RuntimeObject * L_10 = ReflectPropertyDescriptor_get_AmbientValue_m2FE1E71F14949D9DA86714056C74205C3672D6D3(__this, /*hidden argument*/NULL);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.ComponentModel.PropertyDescriptor::SetValue(System.Object,System.Object) */, __this, L_9, L_10);
return;
}
IL_0044:
{
MethodInfo_t * L_11 = ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70(__this, /*hidden argument*/NULL);
bool L_12 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_11, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_00dd;
}
}
{
RuntimeObject * L_13 = ___component0;
RuntimeObject* L_14 = MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6(L_13, /*hidden argument*/NULL);
V_1 = L_14;
V_2 = (RuntimeObject*)NULL;
V_3 = NULL;
RuntimeObject* L_15 = V_1;
if (!L_15)
{
goto IL_0079;
}
}
{
RuntimeObject* L_16 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_17, /*hidden argument*/NULL);
NullCheck(L_16);
RuntimeObject * L_19 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_16, L_18);
V_2 = ((RuntimeObject*)Castclass((RuntimeObject*)L_19, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var));
}
IL_0079:
{
RuntimeObject* L_20 = V_2;
if (!L_20)
{
goto IL_00a4;
}
}
{
MethodInfo_t * L_21 = ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618(__this, /*hidden argument*/NULL);
RuntimeObject * L_22 = V_0;
RuntimeObject * L_23 = SecurityUtils_MethodInfoInvoke_mF5977E97A2A9073E72C098B312789C9949128AF0(L_21, L_22, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
V_3 = L_23;
}
IL_008a:
try
{ // begin try (depth: 1)
RuntimeObject* L_24 = V_2;
RuntimeObject * L_25 = ___component0;
NullCheck(L_24);
InterfaceActionInvoker2< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * >::Invoke(1 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanging(System.Object,System.ComponentModel.MemberDescriptor) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_24, L_25, __this);
goto IL_00a4;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0094;
throw e;
}
CATCH_0094:
{ // begin catch(System.ComponentModel.Design.CheckoutException)
{
V_5 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)__exception_local);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_26 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_27 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_StaticFields*)il2cpp_codegen_static_fields_for(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var))->get_Canceled_17();
if ((!(((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_26) == ((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_27))))
{
goto IL_00a1;
}
}
IL_009f:
{
goto IL_00dd;
}
IL_00a1:
{
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_28 = V_5;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ReflectPropertyDescriptor_ResetValue_m0B916789E04B78F99B67E2B67710230B081260DF_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_00a4:
{
MethodInfo_t * L_29 = ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70(__this, /*hidden argument*/NULL);
bool L_30 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_29, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_00dd;
}
}
{
MethodInfo_t * L_31 = ReflectPropertyDescriptor_get_ResetMethodValue_m43B0ED22C929D7F3FA363F32DED5207C9A19CC70(__this, /*hidden argument*/NULL);
RuntimeObject * L_32 = V_0;
SecurityUtils_MethodInfoInvoke_mF5977E97A2A9073E72C098B312789C9949128AF0(L_31, L_32, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
RuntimeObject* L_33 = V_2;
if (!L_33)
{
goto IL_00dd;
}
}
{
MethodInfo_t * L_34 = ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618(__this, /*hidden argument*/NULL);
RuntimeObject * L_35 = V_0;
RuntimeObject * L_36 = SecurityUtils_MethodInfoInvoke_mF5977E97A2A9073E72C098B312789C9949128AF0(L_34, L_35, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
V_4 = L_36;
RuntimeObject* L_37 = V_2;
RuntimeObject * L_38 = ___component0;
RuntimeObject * L_39 = V_3;
RuntimeObject * L_40 = V_4;
NullCheck(L_37);
InterfaceActionInvoker4< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 *, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanged(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_37, L_38, __this, L_39, L_40);
}
IL_00dd:
{
return;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::SetValue(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_SetValue_m0789356EEA5ECB86774764A46A36C3BDBAFAE629 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject * ___component0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_SetValue_m0789356EEA5ECB86774764A46A36C3BDBAFAE629_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
RuntimeObject * V_3 = NULL;
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * V_4 = NULL;
Exception_t * V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject * L_0 = ___component0;
if (!L_0)
{
goto IL_00c4;
}
}
{
RuntimeObject * L_1 = ___component0;
RuntimeObject* L_2 = MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6(L_1, /*hidden argument*/NULL);
V_0 = L_2;
V_1 = (RuntimeObject*)NULL;
V_2 = NULL;
Type_t * L_3 = __this->get_componentClass_32();
RuntimeObject * L_4 = ___component0;
RuntimeObject * L_5 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject * >::Invoke(16 /* System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object) */, __this, L_3, L_4);
V_3 = L_5;
bool L_6 = VirtFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.ComponentModel.PropertyDescriptor::get_IsReadOnly() */, __this);
if (L_6)
{
goto IL_00c4;
}
}
{
RuntimeObject* L_7 = V_0;
if (!L_7)
{
goto IL_0043;
}
}
{
RuntimeObject* L_8 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL);
NullCheck(L_8);
RuntimeObject * L_11 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_8, L_10);
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_11, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var));
}
IL_0043:
{
RuntimeObject* L_12 = V_1;
if (!L_12)
{
goto IL_006e;
}
}
{
MethodInfo_t * L_13 = ReflectPropertyDescriptor_get_GetMethodValue_mCF6EFE5B29B4B46C3F17905646805035D6C63618(__this, /*hidden argument*/NULL);
RuntimeObject * L_14 = V_3;
RuntimeObject * L_15 = SecurityUtils_MethodInfoInvoke_mF5977E97A2A9073E72C098B312789C9949128AF0(L_13, L_14, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
V_2 = L_15;
}
IL_0054:
try
{ // begin try (depth: 1)
RuntimeObject* L_16 = V_1;
RuntimeObject * L_17 = ___component0;
NullCheck(L_16);
InterfaceActionInvoker2< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * >::Invoke(1 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanging(System.Object,System.ComponentModel.MemberDescriptor) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_16, L_17, __this);
goto IL_006e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005e;
throw e;
}
CATCH_005e:
{ // begin catch(System.ComponentModel.Design.CheckoutException)
{
V_4 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)__exception_local);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_18 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var);
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_19 = ((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_StaticFields*)il2cpp_codegen_static_fields_for(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var))->get_Canceled_17();
if ((!(((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_18) == ((RuntimeObject*)(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)L_19))))
{
goto IL_006b;
}
}
IL_0069:
{
goto IL_00c4;
}
IL_006b:
{
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_20 = V_4;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ReflectPropertyDescriptor_SetValue_m0789356EEA5ECB86774764A46A36C3BDBAFAE629_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_006e:
{
}
IL_006f:
try
{ // begin try (depth: 1)
try
{ // begin try (depth: 2)
MethodInfo_t * L_21 = ReflectPropertyDescriptor_get_SetMethodValue_m9C7CB91D0400A7450E620516B1A30B2FD37791A5(__this, /*hidden argument*/NULL);
RuntimeObject * L_22 = V_3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = L_23;
RuntimeObject * L_25 = ___value1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_25);
SecurityUtils_MethodInfoInvoke_mF5977E97A2A9073E72C098B312789C9949128AF0(L_21, L_22, L_24, /*hidden argument*/NULL);
RuntimeObject * L_26 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * L_27 = ((EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields*)il2cpp_codegen_static_fields_for(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var))->get_Empty_0();
VirtActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(27 /* System.Void System.ComponentModel.PropertyDescriptor::OnValueChanged(System.Object,System.EventArgs) */, __this, L_26, L_27);
IL2CPP_LEAVE(0xC4, FINALLY_00b6);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0094;
throw e;
}
CATCH_0094:
{ // begin catch(System.Exception)
{
V_5 = ((Exception_t *)__exception_local);
RuntimeObject * L_28 = V_2;
___value1 = L_28;
Exception_t * L_29 = V_5;
if (!((TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 *)IsInstSealed((RuntimeObject*)L_29, TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8_il2cpp_TypeInfo_var)))
{
goto IL_00b3;
}
}
IL_00a2:
{
Exception_t * L_30 = V_5;
NullCheck(L_30);
Exception_t * L_31 = Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline(L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00b3;
}
}
IL_00ab:
{
Exception_t * L_32 = V_5;
NullCheck(L_32);
Exception_t * L_33 = Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline(L_32, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ReflectPropertyDescriptor_SetValue_m0789356EEA5ECB86774764A46A36C3BDBAFAE629_RuntimeMethod_var);
}
IL_00b3:
{
Exception_t * L_34 = V_5;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ReflectPropertyDescriptor_SetValue_m0789356EEA5ECB86774764A46A36C3BDBAFAE629_RuntimeMethod_var);
}
} // end catch (depth: 2)
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00b6;
}
FINALLY_00b6:
{ // begin finally (depth: 1)
{
RuntimeObject* L_35 = V_1;
if (!L_35)
{
goto IL_00c3;
}
}
IL_00b9:
{
RuntimeObject* L_36 = V_1;
RuntimeObject * L_37 = ___component0;
RuntimeObject * L_38 = V_2;
RuntimeObject * L_39 = ___value1;
NullCheck(L_36);
InterfaceActionInvoker4< RuntimeObject *, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 *, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanged(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object) */, IComponentChangeService_tFA28E5FDF88372CFE0D1673E94CD82FA9A275D86_il2cpp_TypeInfo_var, L_36, L_37, __this, L_38, L_39);
}
IL_00c3:
{
IL2CPP_END_FINALLY(182)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(182)
{
IL2CPP_JUMP_TBL(0xC4, IL_00c4)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00c4:
{
return;
}
}
// System.Boolean System.ComponentModel.ReflectPropertyDescriptor::ShouldSerializeValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectPropertyDescriptor_ShouldSerializeValue_mD8E9C0904036CD32906C82AA06AC1C0E21C901C3 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor_ShouldSerializeValue_mD8E9C0904036CD32906C82AA06AC1C0E21C901C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 4);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Type_t * L_0 = __this->get_componentClass_32();
RuntimeObject * L_1 = ___component0;
RuntimeObject * L_2 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject * >::Invoke(16 /* System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object) */, __this, L_0, L_1);
___component0 = L_2;
bool L_3 = VirtFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.ComponentModel.PropertyDescriptor::get_IsReadOnly() */, __this);
if (!L_3)
{
goto IL_004e;
}
}
{
MethodInfo_t * L_4 = ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B(__this, /*hidden argument*/NULL);
bool L_5 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_4, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_003d;
}
}
IL_0025:
try
{ // begin try (depth: 1)
MethodInfo_t * L_6 = ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B(__this, /*hidden argument*/NULL);
RuntimeObject * L_7 = ___component0;
NullCheck(L_6);
RuntimeObject * L_8 = MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_6, L_7, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
V_0 = ((*(bool*)((bool*)UnBox(L_8, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))));
goto IL_0099;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_003a;
throw e;
}
CATCH_003a:
{ // begin catch(System.Object)
goto IL_003d;
} // end catch (depth: 1)
IL_003d:
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_9 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var);
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * L_10 = ((DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var))->get_Content_0();
NullCheck(L_9);
bool L_11 = AttributeCollection_Contains_m44FEEEE6F4C20AAF6207A09BE38A10EEF6EDE6EF(L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
IL_004e:
{
RuntimeObject * L_12 = ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
RuntimeObject * L_13 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_noValue_18();
if ((!(((RuntimeObject*)(RuntimeObject *)L_12) == ((RuntimeObject*)(RuntimeObject *)L_13))))
{
goto IL_0083;
}
}
{
MethodInfo_t * L_14 = ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B(__this, /*hidden argument*/NULL);
bool L_15 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_14, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0081;
}
}
IL_0069:
try
{ // begin try (depth: 1)
MethodInfo_t * L_16 = ReflectPropertyDescriptor_get_ShouldSerializeMethodValue_m273BC0D7C83C0DF8FA4DC7AD01BEACB9A4A72D5B(__this, /*hidden argument*/NULL);
RuntimeObject * L_17 = ___component0;
NullCheck(L_16);
RuntimeObject * L_18 = MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_16, L_17, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
V_0 = ((*(bool*)((bool*)UnBox(L_18, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))));
goto IL_0099;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_007e;
throw e;
}
CATCH_007e:
{ // begin catch(System.Object)
goto IL_0081;
} // end catch (depth: 1)
IL_0081:
{
return (bool)1;
}
IL_0083:
{
RuntimeObject * L_19 = ReflectPropertyDescriptor_get_DefaultValue_mD4EF78C239C3F90CCEB0E869DB461AF634B288EA(__this, /*hidden argument*/NULL);
RuntimeObject * L_20 = ___component0;
RuntimeObject * L_21 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.ComponentModel.PropertyDescriptor::GetValue(System.Object) */, __this, L_20);
bool L_22 = Object_Equals_mD98CD6D19C28ADC48B8468F78F94D38E203D0521(L_19, L_21, /*hidden argument*/NULL);
return (bool)((((int32_t)L_22) == ((int32_t)0))? 1 : 0);
}
IL_0099:
{
bool L_23 = V_0;
return L_23;
}
}
// System.Boolean System.ComponentModel.ReflectPropertyDescriptor::get_SupportsChangeEvents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectPropertyDescriptor_get_SupportsChangeEvents_m769B205AB5E70922F38BBE1727BB9F60A2789B0E (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_0 = ReflectPropertyDescriptor_get_IPropChangedEventValue_m09F9B4CC2CF462E85042BAAD57FC69A3A84BB73A(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0012;
}
}
{
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_1 = ReflectPropertyDescriptor_get_ChangedEventValue_m53318DC3BCA673EA99F7D7B8CA6A5BA314D6D0A8(__this, /*hidden argument*/NULL);
return (bool)((!(((RuntimeObject*)(EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
IL_0012:
{
return (bool)1;
}
}
// System.Void System.ComponentModel.ReflectPropertyDescriptor::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor__cctor_m63AF69EC4D3FA3894DDDFC6704D71401FE8DF9F3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectPropertyDescriptor__cctor_m63AF69EC4D3FA3894DDDFC6704D71401FE8DF9F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)0);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_argsNone_17(L_0);
RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_1, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_noValue_18(L_1);
TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * L_2 = (TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 *)il2cpp_codegen_object_new(TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8_il2cpp_TypeInfo_var);
TraceSwitch__ctor_mDBA48A8FB03E3CED698799144535B99F84D81008(L_2, _stringLiteral463436EF053720E6820027AC19A91955E21430D5, _stringLiteral22A11CBBFC52FA75AC18728855898EDCDEF239D2, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_PropDescCreateSwitch_19(L_2);
TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * L_3 = (TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 *)il2cpp_codegen_object_new(TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8_il2cpp_TypeInfo_var);
TraceSwitch__ctor_mDBA48A8FB03E3CED698799144535B99F84D81008(L_3, _stringLiteral7F9642E831E1D7887F2F2BE3154F1533B5C390C0, _stringLiteralCC342BE8143233CD53918E1DFEE1DA80BEA484D3, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_PropDescUsageSwitch_20(L_3);
int32_t L_4 = BitVector32_CreateMask_mF40475E10251217A893C1C396B80B4690A6245B2(/*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_BitDefaultValueQueried_21(L_4);
int32_t L_5 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitDefaultValueQueried_21();
int32_t L_6 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_5, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_BitGetQueried_22(L_6);
int32_t L_7 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitGetQueried_22();
int32_t L_8 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_7, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_BitSetQueried_23(L_8);
int32_t L_9 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitSetQueried_23();
int32_t L_10 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_9, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_BitShouldSerializeQueried_24(L_10);
int32_t L_11 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitShouldSerializeQueried_24();
int32_t L_12 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_11, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_BitResetQueried_25(L_12);
int32_t L_13 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitResetQueried_25();
int32_t L_14 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_13, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_BitChangedQueried_26(L_14);
int32_t L_15 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitChangedQueried_26();
int32_t L_16 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_15, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_BitIPropChangedQueried_27(L_16);
int32_t L_17 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitIPropChangedQueried_27();
int32_t L_18 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_17, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_BitReadOnlyChecked_28(L_18);
int32_t L_19 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitReadOnlyChecked_28();
int32_t L_20 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_19, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_BitAmbientValueQueried_29(L_20);
int32_t L_21 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->get_BitAmbientValueQueried_29();
int32_t L_22 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_21, /*hidden argument*/NULL);
((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields*)il2cpp_codegen_static_fields_for(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var))->set_BitSetOnDemand_30(L_22);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Guid System.ComponentModel.ReflectTypeDescriptionProvider::get_ExtenderProviderKey()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t ReflectTypeDescriptionProvider_get_ExtenderProviderKey_m5436EF198F3970CCBCDE4559257D03471691D3EE (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_get_ExtenderProviderKey_m5436EF198F3970CCBCDE4559257D03471691D3EE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Guid_t L_0 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extenderProviderKey_13();
return L_0;
}
}
// System.Void System.ComponentModel.ReflectTypeDescriptionProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectTypeDescriptionProvider__ctor_mE3E181FF24A78513F9E285D485FA292B11708B17 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, const RuntimeMethod* method)
{
{
TypeDescriptionProvider__ctor_m9A35B40DE4D4CCB86B72BD3BABF375982DB32912(__this, /*hidden argument*/NULL);
return;
}
}
// System.Collections.Hashtable System.ComponentModel.ReflectTypeDescriptionProvider::get_IntrinsicTypeConverters()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ReflectTypeDescriptionProvider_get_IntrinsicTypeConverters_m9CC87D07619955CD00731AD91FC7F8323C18AF4F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_get_IntrinsicTypeConverters_m9CC87D07619955CD00731AD91FC7F8323C18AF4F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__intrinsicTypeConverters_5();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_02b2;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_1, /*hidden argument*/NULL);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (BooleanConverter_tD0D177A9F577915FAA9F6749229672CE8EBAA94C_0_0_0_var) };
Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL);
NullCheck(L_2);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_2, L_4, L_6);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = L_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (ByteConverter_t59E5742D740228F5B9AB91169C2EA907A023328A_0_0_0_var) };
Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL);
NullCheck(L_7);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_7, L_9, L_11);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_12 = L_7;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_13 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
Type_t * L_14 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_13, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (SByteConverter_t99F8032C93CF0F34D8C8BB8AA744D39E794AA4B7_0_0_0_var) };
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
NullCheck(L_12);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_12, L_14, L_16);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_17 = L_12;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) };
Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_20 = { reinterpret_cast<intptr_t> (CharConverter_tFD013540F3AFDBF6DB36FEE066025D778FAED95A_0_0_0_var) };
Type_t * L_21 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_20, /*hidden argument*/NULL);
NullCheck(L_17);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_17, L_19, L_21);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_22 = L_17;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) };
Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_23, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_25 = { reinterpret_cast<intptr_t> (DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75_0_0_0_var) };
Type_t * L_26 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_25, /*hidden argument*/NULL);
NullCheck(L_22);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_22, L_24, L_26);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_27 = L_22;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_28 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
Type_t * L_29 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_28, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_30 = { reinterpret_cast<intptr_t> (StringConverter_t054FA0796F4C8E951208AFA052D99BCB8E68BED7_0_0_0_var) };
Type_t * L_31 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_30, /*hidden argument*/NULL);
NullCheck(L_27);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_27, L_29, L_31);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_32 = L_27;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_33 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
Type_t * L_34 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_33, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22_0_0_0_var) };
Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_35, /*hidden argument*/NULL);
NullCheck(L_32);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_32, L_34, L_36);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_37 = L_32;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_38 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
Type_t * L_39 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_38, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_40 = { reinterpret_cast<intptr_t> (Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B_0_0_0_var) };
Type_t * L_41 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_40, /*hidden argument*/NULL);
NullCheck(L_37);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_37, L_39, L_41);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_42 = L_37;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_43 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
Type_t * L_44 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_43, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_45 = { reinterpret_cast<intptr_t> (Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447_0_0_0_var) };
Type_t * L_46 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_45, /*hidden argument*/NULL);
NullCheck(L_42);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_42, L_44, L_46);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_47 = L_42;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_48 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) };
Type_t * L_49 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_48, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_50 = { reinterpret_cast<intptr_t> (SingleConverter_t86A24FBD46D753B99344470E9566584F15538902_0_0_0_var) };
Type_t * L_51 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_50, /*hidden argument*/NULL);
NullCheck(L_47);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_47, L_49, L_51);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_52 = L_47;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_53, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_55 = { reinterpret_cast<intptr_t> (UInt16Converter_t4BC0EAF1F93E418E020D9F6636F89276782C6803_0_0_0_var) };
Type_t * L_56 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_55, /*hidden argument*/NULL);
NullCheck(L_52);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_52, L_54, L_56);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_57 = L_52;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_58 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
Type_t * L_59 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_58, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_60 = { reinterpret_cast<intptr_t> (UInt32Converter_t13F2DD92CDD0CD6A0EFD9D0F45AF88B3893DCA65_0_0_0_var) };
Type_t * L_61 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_60, /*hidden argument*/NULL);
NullCheck(L_57);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_57, L_59, L_61);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_62 = L_57;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_63 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
Type_t * L_64 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_63, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_65 = { reinterpret_cast<intptr_t> (UInt64Converter_t0A91AD27C69DB74D2C09B17006EFE2F873566F6E_0_0_0_var) };
Type_t * L_66 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_65, /*hidden argument*/NULL);
NullCheck(L_62);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_62, L_64, L_66);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_67 = L_62;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_68 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t * L_69 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_68, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_70 = { reinterpret_cast<intptr_t> (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_0_0_0_var) };
Type_t * L_71 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_70, /*hidden argument*/NULL);
NullCheck(L_67);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_67, L_69, L_71);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_72 = L_67;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_73 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) };
Type_t * L_74 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_73, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_75 = { reinterpret_cast<intptr_t> (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_0_0_0_var) };
Type_t * L_76 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_75, /*hidden argument*/NULL);
NullCheck(L_72);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_72, L_74, L_76);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_77 = L_72;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_78 = { reinterpret_cast<intptr_t> (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_0_0_0_var) };
Type_t * L_79 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_78, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_80 = { reinterpret_cast<intptr_t> (CultureInfoConverter_t6BD4316CF7C9163A01C35EC9382BC3D1C01FB6C0_0_0_0_var) };
Type_t * L_81 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_80, /*hidden argument*/NULL);
NullCheck(L_77);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_77, L_79, L_81);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_82 = L_77;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_83 = { reinterpret_cast<intptr_t> (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var) };
Type_t * L_84 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_83, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_85 = { reinterpret_cast<intptr_t> (DateTimeConverter_tE35DE01AAE1A29D50B4B0DC6467C9219CCE04DE1_0_0_0_var) };
Type_t * L_86 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_85, /*hidden argument*/NULL);
NullCheck(L_82);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_82, L_84, L_86);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_87 = L_82;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_88 = { reinterpret_cast<intptr_t> (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_0_0_0_var) };
Type_t * L_89 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_88, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_90 = { reinterpret_cast<intptr_t> (DateTimeOffsetConverter_tD9E7BEFD22CBB5DA01F50C0D51CDD60DF29F1D33_0_0_0_var) };
Type_t * L_91 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_90, /*hidden argument*/NULL);
NullCheck(L_87);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_87, L_89, L_91);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_92 = L_87;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_93 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) };
Type_t * L_94 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_93, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_95 = { reinterpret_cast<intptr_t> (DecimalConverter_t10232B897580B6DE599BB375BE8C0F4E1C30B0C1_0_0_0_var) };
Type_t * L_96 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_95, /*hidden argument*/NULL);
NullCheck(L_92);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_92, L_94, L_96);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_97 = L_92;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_98 = { reinterpret_cast<intptr_t> (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var) };
Type_t * L_99 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_98, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_100 = { reinterpret_cast<intptr_t> (TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7_0_0_0_var) };
Type_t * L_101 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_100, /*hidden argument*/NULL);
NullCheck(L_97);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_97, L_99, L_101);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_102 = L_97;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_103 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
Type_t * L_104 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_103, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_105 = { reinterpret_cast<intptr_t> (GuidConverter_t9207FA129C0A5A7AD84D5FEC9C9F2CA5F3FB9D7D_0_0_0_var) };
Type_t * L_106 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_105, /*hidden argument*/NULL);
NullCheck(L_102);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_102, L_104, L_106);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_107 = L_102;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_108 = { reinterpret_cast<intptr_t> (RuntimeArray_0_0_0_var) };
Type_t * L_109 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_108, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_110 = { reinterpret_cast<intptr_t> (ArrayConverter_tAAD8F39711C6ECD39D31226FA1D140DD38752B57_0_0_0_var) };
Type_t * L_111 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_110, /*hidden argument*/NULL);
NullCheck(L_107);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_107, L_109, L_111);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_112 = L_107;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_113 = { reinterpret_cast<intptr_t> (ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_0_0_0_var) };
Type_t * L_114 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_113, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_115 = { reinterpret_cast<intptr_t> (CollectionConverter_t039E15C433996B0F0F0EB78BEE81F6DE0705F184_0_0_0_var) };
Type_t * L_116 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_115, /*hidden argument*/NULL);
NullCheck(L_112);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_112, L_114, L_116);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_117 = L_112;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_118 = { reinterpret_cast<intptr_t> (Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_0_0_0_var) };
Type_t * L_119 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_118, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_120 = { reinterpret_cast<intptr_t> (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12_0_0_0_var) };
Type_t * L_121 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_120, /*hidden argument*/NULL);
NullCheck(L_117);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_117, L_119, L_121);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_122 = L_117;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_123 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__intrinsicReferenceKey_6();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_124 = { reinterpret_cast<intptr_t> (ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_0_0_0_var) };
Type_t * L_125 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_124, /*hidden argument*/NULL);
NullCheck(L_122);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_122, L_123, L_125);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_126 = L_122;
RuntimeObject * L_127 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__intrinsicNullableKey_7();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_128 = { reinterpret_cast<intptr_t> (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71_0_0_0_var) };
Type_t * L_129 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_128, /*hidden argument*/NULL);
NullCheck(L_126);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_126, L_127, L_129);
il2cpp_codegen_memory_barrier();
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__intrinsicTypeConverters_5(L_126);
}
IL_02b2:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_130 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__intrinsicTypeConverters_5();
il2cpp_codegen_memory_barrier();
return L_130;
}
}
// System.Void System.ComponentModel.ReflectTypeDescriptionProvider::AddEditorTable(System.Type,System.Collections.Hashtable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectTypeDescriptionProvider_AddEditorTable_m990D5117A898C6C261F5195516D1032F04028262 (Type_t * ___editorBaseType0, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___table1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_AddEditorTable_m990D5117A898C6C261F5195516D1032F04028262_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Type_t * L_0 = ___editorBaseType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral183286DAC61719C4FD901D84F84C9E91585B6986, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ReflectTypeDescriptionProvider_AddEditorTable_m990D5117A898C6C261F5195516D1032F04028262_RuntimeMethod_var);
}
IL_0014:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = ___table1;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_4 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_0 = L_4;
V_1 = (bool)0;
}
IL_001e:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_5 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_5, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__editorTables_4();
il2cpp_codegen_memory_barrier();
if (L_6)
{
goto IL_003c;
}
}
IL_002f:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_mAAFFE0698C829CFAFE176BD4A6C5DDA07A8ABDA9(L_7, 4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__editorTables_4(L_7);
}
IL_003c:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_8 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__editorTables_4();
il2cpp_codegen_memory_barrier();
Type_t * L_9 = ___editorBaseType0;
NullCheck(L_8);
bool L_10 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_8, L_9);
if (L_10)
{
goto IL_0059;
}
}
IL_004b:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_11 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__editorTables_4();
il2cpp_codegen_memory_barrier();
Type_t * L_12 = ___editorBaseType0;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_13 = ___table1;
NullCheck(L_11);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_11, L_12, L_13);
}
IL_0059:
{
IL2CPP_LEAVE(0x65, FINALLY_005b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_005b;
}
FINALLY_005b:
{ // begin finally (depth: 1)
{
bool L_14 = V_1;
if (!L_14)
{
goto IL_0064;
}
}
IL_005e:
{
RuntimeObject * L_15 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_15, /*hidden argument*/NULL);
}
IL_0064:
{
IL2CPP_END_FINALLY(91)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(91)
{
IL2CPP_JUMP_TBL(0x65, IL_0065)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0065:
{
return;
}
}
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectTypeDescriptionProvider_CreateInstance_m65E85722552FC495BE764F3AA5C0044C0A0CC398 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject* ___provider0, Type_t * ___objectType1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___argTypes2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_CreateInstance_m65E85722552FC495BE764F3AA5C0044C0A0CC398_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
int32_t V_1 = 0;
{
V_0 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = ___argTypes2;
if (!L_0)
{
goto IL_0017;
}
}
{
Type_t * L_1 = ___objectType1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___argTypes2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___args3;
RuntimeObject * L_4 = SecurityUtils_SecureConstructorInvoke_mE027B99C9C5C9A325AFC67CAC4B4106DBE855585(L_1, L_2, L_3, (bool)1, ((int32_t)65536), /*hidden argument*/NULL);
V_0 = L_4;
goto IL_006b;
}
IL_0017:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___args3;
if (!L_5)
{
goto IL_0058;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___args3;
NullCheck(L_6);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))));
___argTypes2 = L_7;
V_1 = 0;
goto IL_004f;
}
IL_002a:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ___args3;
int32_t L_9 = V_1;
NullCheck(L_8);
int32_t L_10 = L_9;
RuntimeObject * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
if (!L_11)
{
goto IL_003e;
}
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_12 = ___argTypes2;
int32_t L_13 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = ___args3;
int32_t L_15 = V_1;
NullCheck(L_14);
int32_t L_16 = L_15;
RuntimeObject * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
NullCheck(L_17);
Type_t * L_18 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_17, /*hidden argument*/NULL);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_18);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Type_t *)L_18);
goto IL_004b;
}
IL_003e:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_19 = ___argTypes2;
int32_t L_20 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_21, /*hidden argument*/NULL);
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_22);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (Type_t *)L_22);
}
IL_004b:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_004f:
{
int32_t L_24 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = ___args3;
NullCheck(L_25);
if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length)))))))
{
goto IL_002a;
}
}
{
goto IL_0060;
}
IL_0058:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_26 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)0);
___argTypes2 = L_26;
}
IL_0060:
{
Type_t * L_27 = ___objectType1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = ___argTypes2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = ___args3;
RuntimeObject * L_30 = SecurityUtils_SecureConstructorInvoke_m7DA77EA06BECD2F9B36481C8CAD9429674166D27(L_27, L_28, L_29, (bool)1, /*hidden argument*/NULL);
V_0 = L_30;
}
IL_006b:
{
RuntimeObject * L_31 = V_0;
if (L_31)
{
goto IL_0077;
}
}
{
Type_t * L_32 = ___objectType1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = ___args3;
RuntimeObject * L_34 = SecurityUtils_SecureCreateInstance_m291D8D6709E79129FDE3E1EA01D37F1D40E73EA4(L_32, L_33, /*hidden argument*/NULL);
V_0 = L_34;
}
IL_0077:
{
RuntimeObject * L_35 = V_0;
return L_35;
}
}
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::CreateInstance(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectTypeDescriptionProvider_CreateInstance_m1A50E07E2455EA23FDE96B06EFD81DCA451025D4 (Type_t * ___objectType0, Type_t * ___callingType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_CreateInstance_m1A50E07E2455EA23FDE96B06EFD81DCA451025D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
Type_t * L_0 = ___objectType0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__typeConstructor_3();
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
Type_t * L_4 = ___callingType1;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
RuntimeObject * L_5 = SecurityUtils_SecureConstructorInvoke_m7DA77EA06BECD2F9B36481C8CAD9429674166D27(L_0, L_1, L_3, (bool)0, /*hidden argument*/NULL);
V_0 = L_5;
RuntimeObject * L_6 = V_0;
if (L_6)
{
goto IL_0021;
}
}
{
Type_t * L_7 = ___objectType0;
RuntimeObject * L_8 = SecurityUtils_SecureCreateInstance_m00B165286E54C3393CFFE82948E078F96018750A(L_7, /*hidden argument*/NULL);
V_0 = L_8;
}
IL_0021:
{
RuntimeObject * L_9 = V_0;
return L_9;
}
}
// System.ComponentModel.AttributeCollection System.ComponentModel.ReflectTypeDescriptionProvider::GetAttributes(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ReflectTypeDescriptionProvider_GetAttributes_mD827142E84D2111FBD6F88118D1DD0BCF898700C (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_1 = ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4(__this, L_0, (bool)1, /*hidden argument*/NULL);
NullCheck(L_1);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_2 = ReflectedTypeData_GetAttributes_m663A1FD9948A46D290B3D9E033F291B1E535452E(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Collections.IDictionary System.ComponentModel.ReflectTypeDescriptionProvider::GetCache(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReflectTypeDescriptionProvider_GetCache_m90103F5B0B173BA5AA6F8B773FA02EE66FA58D7F (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetCache_m90103F5B0B173BA5AA6F8B773FA02EE66FA58D7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
{
RuntimeObject * L_0 = ___instance0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0058;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_2);
if (!L_3)
{
goto IL_0058;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_4);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
RuntimeObject * L_8 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_5, L_7);
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_il2cpp_TypeInfo_var));
RuntimeObject* L_9 = V_1;
if (!L_9)
{
goto IL_0058;
}
}
{
RuntimeObject* L_10 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_11 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__dictionaryKey_8();
NullCheck(L_10);
RuntimeObject * L_12 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.ComponentModel.Design.IDictionaryService::GetValue(System.Object) */, IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_il2cpp_TypeInfo_var, L_10, L_11);
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_12, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var));
RuntimeObject* L_13 = V_2;
if (L_13)
{
goto IL_0056;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_14 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_14, /*hidden argument*/NULL);
V_2 = L_14;
RuntimeObject* L_15 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_16 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__dictionaryKey_8();
RuntimeObject* L_17 = V_2;
NullCheck(L_15);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.ComponentModel.Design.IDictionaryService::SetValue(System.Object,System.Object) */, IDictionaryService_tC7CEF08BB7C76FFC29208B6D62B5B67D41BD56B0_il2cpp_TypeInfo_var, L_15, L_16, L_17);
}
IL_0056:
{
RuntimeObject* L_18 = V_2;
return L_18;
}
IL_0058:
{
return (RuntimeObject*)NULL;
}
}
// System.String System.ComponentModel.ReflectTypeDescriptionProvider::GetClassName(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectTypeDescriptionProvider_GetClassName_m77A6389AAD0DB919D60969F0C1D6AB3626A1CD72 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_1 = ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4(__this, L_0, (bool)1, /*hidden argument*/NULL);
NullCheck(L_1);
String_t* L_2 = ReflectedTypeData_GetClassName_m4291DAD8939B251B6C5A1AF021708036DF13FF82(L_1, NULL, /*hidden argument*/NULL);
return L_2;
}
}
// System.String System.ComponentModel.ReflectTypeDescriptionProvider::GetComponentName(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectTypeDescriptionProvider_GetComponentName_m2861917411D3CE771C9FD435037B063BC3288183 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_1 = ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4(__this, L_0, (bool)1, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___instance1;
NullCheck(L_1);
String_t* L_3 = ReflectedTypeData_GetComponentName_m688C3E2D5D955FF24A051F1E21FC6ABB1BCDE17A(L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.ComponentModel.TypeConverter System.ComponentModel.ReflectTypeDescriptionProvider::GetConverter(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ReflectTypeDescriptionProvider_GetConverter_mB8782B30A3D40FBDB37A4FD68A635149B0154880 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_1 = ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4(__this, L_0, (bool)1, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___instance1;
NullCheck(L_1);
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_3 = ReflectedTypeData_GetConverter_mD37346D7D19C72DC50CBB82BF4F4F9DF5218D0B6(L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectTypeDescriptionProvider::GetDefaultEvent(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ReflectTypeDescriptionProvider_GetDefaultEvent_mFD531AA46C8C91FD55ABE9617FFDB80FFCAE408B (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_1 = ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4(__this, L_0, (bool)1, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___instance1;
NullCheck(L_1);
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_3 = ReflectedTypeData_GetDefaultEvent_m31A6B84818BEBF7977111E35658D6CFB319F4737(L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ReflectTypeDescriptionProvider::GetDefaultProperty(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ReflectTypeDescriptionProvider_GetDefaultProperty_mB51727128E26FC4F33E9D36FD9ADCE6BC7FC2298 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_1 = ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4(__this, L_0, (bool)1, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___instance1;
NullCheck(L_1);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_3 = ReflectedTypeData_GetDefaultProperty_m6A5070505225614BD439CE0195A5725EFE7BB612(L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::GetEditor(System.Type,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectTypeDescriptionProvider_GetEditor_mCDAAA969738DB6036016AE5846E6BF6F6B051ECC (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, RuntimeObject * ___instance1, Type_t * ___editorBaseType2, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_1 = ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4(__this, L_0, (bool)1, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___instance1;
Type_t * L_3 = ___editorBaseType2;
NullCheck(L_1);
RuntimeObject * L_4 = ReflectedTypeData_GetEditor_m64641DA7947F872252041D99AD2D4FFB346DF531(L_1, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Collections.Hashtable System.ComponentModel.ReflectTypeDescriptionProvider::GetEditorTable(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ReflectTypeDescriptionProvider_GetEditorTable_mA1A47B11840415F81A04510F88B5CB225085ED21 (Type_t * ___editorBaseType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetEditorTable_mA1A47B11840415F81A04510F88B5CB225085ED21_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
bool V_2 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__editorTables_4();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_003b;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_1 = L_1;
V_2 = (bool)0;
}
IL_0011:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__editorTables_4();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_002f;
}
}
IL_0022:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_mAAFFE0698C829CFAFE176BD4A6C5DDA07A8ABDA9(L_4, 4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__editorTables_4(L_4);
}
IL_002f:
{
IL2CPP_LEAVE(0x3B, FINALLY_0031);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0031;
}
FINALLY_0031:
{ // begin finally (depth: 1)
{
bool L_5 = V_2;
if (!L_5)
{
goto IL_003a;
}
}
IL_0034:
{
RuntimeObject * L_6 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_003a:
{
IL2CPP_END_FINALLY(49)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(49)
{
IL2CPP_JUMP_TBL(0x3B, IL_003b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003b:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__editorTables_4();
il2cpp_codegen_memory_barrier();
Type_t * L_8 = ___editorBaseType0;
NullCheck(L_7);
RuntimeObject * L_9 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_8);
V_0 = L_9;
RuntimeObject * L_10 = V_0;
if (L_10)
{
goto IL_00a9;
}
}
{
Type_t * L_11 = ___editorBaseType0;
NullCheck(L_11);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = VirtFuncInvoker0< RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D >::Invoke(28 /* System.RuntimeTypeHandle System.Type::get_TypeHandle() */, L_11);
RuntimeHelpers_RunClassConstructor_m86E0EA587977364E1DA1DE48E43B3D632A51847E(L_12, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_13 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__editorTables_4();
il2cpp_codegen_memory_barrier();
Type_t * L_14 = ___editorBaseType0;
NullCheck(L_13);
RuntimeObject * L_15 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_13, L_14);
V_0 = L_15;
RuntimeObject * L_16 = V_0;
if (L_16)
{
goto IL_00a9;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_17 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_1 = L_17;
V_2 = (bool)0;
}
IL_0070:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_18 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_18, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_19 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__editorTables_4();
il2cpp_codegen_memory_barrier();
Type_t * L_20 = ___editorBaseType0;
NullCheck(L_19);
RuntimeObject * L_21 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_19, L_20);
V_0 = L_21;
RuntimeObject * L_22 = V_0;
if (L_22)
{
goto IL_009d;
}
}
IL_0089:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_23 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__editorTables_4();
il2cpp_codegen_memory_barrier();
Type_t * L_24 = ___editorBaseType0;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_25 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__editorTables_4();
il2cpp_codegen_memory_barrier();
NullCheck(L_23);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_23, L_24, L_25);
}
IL_009d:
{
IL2CPP_LEAVE(0xA9, FINALLY_009f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009f;
}
FINALLY_009f:
{ // begin finally (depth: 1)
{
bool L_26 = V_2;
if (!L_26)
{
goto IL_00a8;
}
}
IL_00a2:
{
RuntimeObject * L_27 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_27, /*hidden argument*/NULL);
}
IL_00a8:
{
IL2CPP_END_FINALLY(159)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(159)
{
IL2CPP_JUMP_TBL(0xA9, IL_00a9)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00a9:
{
RuntimeObject * L_28 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_29 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__editorTables_4();
il2cpp_codegen_memory_barrier();
if ((!(((RuntimeObject*)(RuntimeObject *)L_28) == ((RuntimeObject*)(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)L_29))))
{
goto IL_00b5;
}
}
{
V_0 = NULL;
}
IL_00b5:
{
RuntimeObject * L_30 = V_0;
return ((Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)CastclassClass((RuntimeObject*)L_30, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var));
}
}
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.ReflectTypeDescriptionProvider::GetEvents(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * ReflectTypeDescriptionProvider_GetEvents_m36CDAEAFA4D881B8F579D7E5EBCE29362168C20C (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_1 = ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4(__this, L_0, (bool)1, /*hidden argument*/NULL);
NullCheck(L_1);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_2 = ReflectedTypeData_GetEvents_m1AA3F18FBA9137AD6D28C5FEA2B525641BAFB7D6(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.ComponentModel.AttributeCollection System.ComponentModel.ReflectTypeDescriptionProvider::GetExtendedAttributes(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ReflectTypeDescriptionProvider_GetExtendedAttributes_m27849C4290581FFD9B350AD671E5DE9764531E46 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetExtendedAttributes_m27849C4290581FFD9B350AD671E5DE9764531E46_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = ((AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_StaticFields*)il2cpp_codegen_static_fields_for(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var))->get_Empty_0();
return L_0;
}
}
// System.String System.ComponentModel.ReflectTypeDescriptionProvider::GetExtendedClassName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectTypeDescriptionProvider_GetExtendedClassName_m6E50E04E316701742D2173063BB71B60042160A3 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___instance0;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_0, /*hidden argument*/NULL);
String_t* L_2 = ReflectTypeDescriptionProvider_GetClassName_m77A6389AAD0DB919D60969F0C1D6AB3626A1CD72(__this, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.String System.ComponentModel.ReflectTypeDescriptionProvider::GetExtendedComponentName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectTypeDescriptionProvider_GetExtendedComponentName_m1E9174932816154844DE378459F1AA5B1B90D532 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___instance0;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___instance0;
String_t* L_3 = ReflectTypeDescriptionProvider_GetComponentName_m2861917411D3CE771C9FD435037B063BC3288183(__this, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.ComponentModel.TypeConverter System.ComponentModel.ReflectTypeDescriptionProvider::GetExtendedConverter(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ReflectTypeDescriptionProvider_GetExtendedConverter_m54A3FED3A123C2C0375E2FBCA5C4B29C6220BA2D (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___instance0;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___instance0;
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_3 = ReflectTypeDescriptionProvider_GetConverter_mB8782B30A3D40FBDB37A4FD68A635149B0154880(__this, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectTypeDescriptionProvider::GetExtendedDefaultEvent(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ReflectTypeDescriptionProvider_GetExtendedDefaultEvent_m40C995F2940B4BB844675DDC61C195BAA026E166 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
{
return (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)NULL;
}
}
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ReflectTypeDescriptionProvider::GetExtendedDefaultProperty(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ReflectTypeDescriptionProvider_GetExtendedDefaultProperty_mAF45D405C9A0A7CF596C909B4F92624F7B9B443C (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
{
return (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)NULL;
}
}
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::GetExtendedEditor(System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectTypeDescriptionProvider_GetExtendedEditor_mAEC41CB2339631CCEB75CAE0770CEE6F61547DB4 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, Type_t * ___editorBaseType1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___instance0;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___instance0;
Type_t * L_3 = ___editorBaseType1;
RuntimeObject * L_4 = ReflectTypeDescriptionProvider_GetEditor_mCDAAA969738DB6036016AE5846E6BF6F6B051ECC(__this, L_1, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.ReflectTypeDescriptionProvider::GetExtendedEvents(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * ReflectTypeDescriptionProvider_GetExtendedEvents_m646C13AACBDD5DB676F15F78597C6B3685905A45 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetExtendedEvents_m646C13AACBDD5DB676F15F78597C6B3685905A45_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_0 = ((EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_StaticFields*)il2cpp_codegen_static_fields_for(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var))->get_Empty_7();
return L_0;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ReflectTypeDescriptionProvider::GetExtendedProperties(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ReflectTypeDescriptionProvider_GetExtendedProperties_mFFA65F71DEFE3C3EBEBF8EE010EA69F524AE3D1A (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetExtendedProperties_mFFA65F71DEFE3C3EBEBF8EE010EA69F524AE3D1A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* V_1 = NULL;
RuntimeObject* V_2 = NULL;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * V_3 = NULL;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_4 = NULL;
int32_t V_5 = 0;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_6 = NULL;
int32_t V_7 = 0;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * V_8 = NULL;
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * V_9 = NULL;
Type_t * V_10 = NULL;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_11 = NULL;
{
RuntimeObject * L_0 = ___instance0;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_0, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject * L_2 = ___instance0;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_3 = VirtFuncInvoker1< IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*, RuntimeObject * >::Invoke(7 /* System.ComponentModel.IExtenderProvider[] System.ComponentModel.TypeDescriptionProvider::GetExtenderProviders(System.Object) */, __this, L_2);
V_1 = L_3;
RuntimeObject * L_4 = ___instance0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_5 = TypeDescriptor_GetCache_mC7540D2FBAB562E689ED1BC2399D3F3C31D97145(L_4, /*hidden argument*/NULL);
V_2 = L_5;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_6 = V_1;
NullCheck(L_6);
if ((((RuntimeArray*)L_6)->max_length))
{
goto IL_0020;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_7 = ((PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_StaticFields*)il2cpp_codegen_static_fields_for(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var))->get_Empty_0();
return L_7;
}
IL_0020:
{
V_3 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)NULL;
RuntimeObject* L_8 = V_2;
if (!L_8)
{
goto IL_003b;
}
}
{
RuntimeObject* L_9 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Guid_t L_10 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extenderPropertiesKey_14();
Guid_t L_11 = L_10;
RuntimeObject * L_12 = Box(Guid_t_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_9);
RuntimeObject * L_13 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_9, L_12);
V_3 = ((PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)IsInstClass((RuntimeObject*)L_13, PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var));
}
IL_003b:
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_14 = V_3;
if (!L_14)
{
goto IL_0040;
}
}
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_15 = V_3;
return L_15;
}
IL_0040:
{
V_4 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)NULL;
V_5 = 0;
goto IL_00d1;
}
IL_004b:
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_16 = V_1;
int32_t L_17 = V_5;
NullCheck(L_16);
int32_t L_18 = L_17;
RuntimeObject* L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_20 = ReflectTypeDescriptionProvider_ReflectGetExtendedProperties_m8DF1B37E62CB64A4249355F85F421C57BA1A16F1(L_19, /*hidden argument*/NULL);
V_6 = L_20;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_21 = V_4;
if (L_21)
{
goto IL_0069;
}
}
{
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_22 = V_6;
NullCheck(L_22);
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_23 = V_1;
NullCheck(L_23);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_24 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C(L_24, ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))), /*hidden argument*/NULL);
V_4 = L_24;
}
IL_0069:
{
V_7 = 0;
goto IL_00c3;
}
IL_006e:
{
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_25 = V_6;
int32_t L_26 = V_7;
NullCheck(L_25);
int32_t L_27 = L_26;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
V_8 = L_28;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_29 = V_8;
NullCheck(L_29);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_30 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, L_29);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_31, /*hidden argument*/NULL);
NullCheck(L_30);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_33 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_30, L_32);
V_9 = ((ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 *)IsInstSealed((RuntimeObject*)L_33, ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_il2cpp_TypeInfo_var));
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_34 = V_9;
if (!L_34)
{
goto IL_00bd;
}
}
{
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_35 = V_9;
NullCheck(L_35);
Type_t * L_36 = ExtenderProvidedPropertyAttribute_get_ReceiverType_mE35ED6058DEBE1160D17BF385E2C46E161085E33_inline(L_35, /*hidden argument*/NULL);
V_10 = L_36;
Type_t * L_37 = V_10;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_38 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_37, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_38)
{
goto IL_00bd;
}
}
{
Type_t * L_39 = V_10;
Type_t * L_40 = V_0;
NullCheck(L_39);
bool L_41 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_39, L_40);
if (!L_41)
{
goto IL_00bd;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_42 = V_4;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_43 = V_8;
NullCheck(L_42);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_42, L_43);
}
IL_00bd:
{
int32_t L_44 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
}
IL_00c3:
{
int32_t L_45 = V_7;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_46 = V_6;
NullCheck(L_46);
if ((((int32_t)L_45) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_46)->max_length)))))))
{
goto IL_006e;
}
}
{
int32_t L_47 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1));
}
IL_00d1:
{
int32_t L_48 = V_5;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_49 = V_1;
NullCheck(L_49);
if ((((int32_t)L_48) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length)))))))
{
goto IL_004b;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_50 = V_4;
if (!L_50)
{
goto IL_0102;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_51 = V_4;
NullCheck(L_51);
int32_t L_52 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_51);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_53 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_52);
V_11 = L_53;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_54 = V_4;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_55 = V_11;
NullCheck(L_54);
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_54, (RuntimeArray *)(RuntimeArray *)L_55, 0);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_56 = V_11;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_57 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D(L_57, L_56, (bool)1, /*hidden argument*/NULL);
V_3 = L_57;
goto IL_0108;
}
IL_0102:
{
IL2CPP_RUNTIME_CLASS_INIT(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_58 = ((PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_StaticFields*)il2cpp_codegen_static_fields_for(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var))->get_Empty_0();
V_3 = L_58;
}
IL_0108:
{
RuntimeObject* L_59 = V_2;
if (!L_59)
{
goto IL_011c;
}
}
{
RuntimeObject* L_60 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Guid_t L_61 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extenderPropertiesKey_14();
Guid_t L_62 = L_61;
RuntimeObject * L_63 = Box(Guid_t_il2cpp_TypeInfo_var, &L_62);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_64 = V_3;
NullCheck(L_60);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_60, L_63, L_64);
}
IL_011c:
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_65 = V_3;
return L_65;
}
}
// System.ComponentModel.IExtenderProvider[] System.ComponentModel.ReflectTypeDescriptionProvider::GetExtenderProviders(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* ReflectTypeDescriptionProvider_GetExtenderProviders_mF9938FD27716A116007EF4F9E60B2E4E318D62F6 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetExtenderProviders_mF9938FD27716A116007EF4F9E60B2E4E318D62F6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
{
RuntimeObject * L_0 = ___instance0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ReflectTypeDescriptionProvider_GetExtenderProviders_mF9938FD27716A116007EF4F9E60B2E4E318D62F6_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___instance0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var));
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_0070;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_4);
if (!L_5)
{
goto IL_0070;
}
}
{
RuntimeObject* L_6 = V_0;
NullCheck(L_6);
RuntimeObject* L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_6);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IExtenderListService_t0B2C88F531ED7EB2EE3AF4251D51FA289253434A_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL);
NullCheck(L_7);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_7, L_9);
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IExtenderListService_t0B2C88F531ED7EB2EE3AF4251D51FA289253434A_il2cpp_TypeInfo_var));
RuntimeObject * L_11 = ___instance0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_12 = TypeDescriptor_GetCache_mC7540D2FBAB562E689ED1BC2399D3F3C31D97145(L_11, /*hidden argument*/NULL);
V_2 = L_12;
RuntimeObject* L_13 = V_1;
if (!L_13)
{
goto IL_0053;
}
}
{
RuntimeObject* L_14 = V_1;
NullCheck(L_14);
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_15 = InterfaceFuncInvoker0< IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* >::Invoke(0 /* System.ComponentModel.IExtenderProvider[] System.ComponentModel.Design.IExtenderListService::GetExtenderProviders() */, IExtenderListService_t0B2C88F531ED7EB2EE3AF4251D51FA289253434A_il2cpp_TypeInfo_var, L_14);
RuntimeObject * L_16 = ___instance0;
RuntimeObject* L_17 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_18 = ReflectTypeDescriptionProvider_GetExtenders_m37F9CE244018FF66E847402A2E3F3A0F805D4843((RuntimeObject*)(RuntimeObject*)L_15, L_16, L_17, /*hidden argument*/NULL);
return L_18;
}
IL_0053:
{
RuntimeObject* L_19 = V_0;
NullCheck(L_19);
RuntimeObject* L_20 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_19);
NullCheck(L_20);
RuntimeObject* L_21 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.ComponentModel.IContainer System.ComponentModel.ISite::get_Container() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_20);
V_3 = L_21;
RuntimeObject* L_22 = V_3;
if (!L_22)
{
goto IL_0070;
}
}
{
RuntimeObject* L_23 = V_3;
NullCheck(L_23);
ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895 * L_24 = InterfaceFuncInvoker0< ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895 * >::Invoke(2 /* System.ComponentModel.ComponentCollection System.ComponentModel.IContainer::get_Components() */, IContainer_tA0D1065AEB21197BA9E1F139F6501B8ADCB66077_il2cpp_TypeInfo_var, L_23);
RuntimeObject * L_25 = ___instance0;
RuntimeObject* L_26 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_27 = ReflectTypeDescriptionProvider_GetExtenders_m37F9CE244018FF66E847402A2E3F3A0F805D4843(L_24, L_25, L_26, /*hidden argument*/NULL);
return L_27;
}
IL_0070:
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_28 = (IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*)(IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*)SZArrayNew(IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031_il2cpp_TypeInfo_var, (uint32_t)0);
return L_28;
}
}
// System.ComponentModel.IExtenderProvider[] System.ComponentModel.ReflectTypeDescriptionProvider::GetExtenders(System.Collections.ICollection,System.Object,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* ReflectTypeDescriptionProvider_GetExtenders_m37F9CE244018FF66E847402A2E3F3A0F805D4843 (RuntimeObject* ___components0, RuntimeObject * ___instance1, RuntimeObject* ___cache2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetExtenders_m37F9CE244018FF66E847402A2E3F3A0F805D4843_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* V_2 = NULL;
uint64_t V_3 = 0;
int32_t V_4 = 0;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* V_5 = NULL;
int32_t V_6 = 0;
int32_t V_7 = 0;
RuntimeObject* V_8 = NULL;
RuntimeObject* V_9 = NULL;
RuntimeObject* V_10 = NULL;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* V_11 = NULL;
RuntimeObject* V_12 = NULL;
RuntimeObject* V_13 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (bool)0;
V_1 = 0;
V_2 = (IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*)NULL;
V_3 = (((int64_t)((int64_t)0)));
V_4 = ((int32_t)64);
RuntimeObject* L_0 = ___components0;
V_5 = ((IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*)IsInst((RuntimeObject*)L_0, IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = ___cache2;
if (!L_1)
{
goto IL_002e;
}
}
{
RuntimeObject* L_2 = ___cache2;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Guid_t L_3 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extenderProviderKey_13();
Guid_t L_4 = L_3;
RuntimeObject * L_5 = Box(Guid_t_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_2);
RuntimeObject * L_6 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_2, L_5);
V_2 = ((IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*)IsInst((RuntimeObject*)L_6, IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031_il2cpp_TypeInfo_var));
}
IL_002e:
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_7 = V_2;
if (L_7)
{
goto IL_0033;
}
}
{
V_0 = (bool)1;
}
IL_0033:
{
V_6 = 0;
V_7 = 0;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_8 = V_5;
if (!L_8)
{
goto IL_0090;
}
}
{
V_6 = 0;
goto IL_0086;
}
IL_0042:
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_9 = V_5;
int32_t L_10 = V_6;
NullCheck(L_9);
int32_t L_11 = L_10;
RuntimeObject* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
RuntimeObject * L_13 = ___instance1;
NullCheck(L_12);
bool L_14 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.ComponentModel.IExtenderProvider::CanExtend(System.Object) */, IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var, L_12, L_13);
if (!L_14)
{
goto IL_0080;
}
}
{
int32_t L_15 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
int32_t L_16 = V_6;
int32_t L_17 = V_4;
if ((((int32_t)L_16) >= ((int32_t)L_17)))
{
goto IL_0064;
}
}
{
uint64_t L_18 = V_3;
int32_t L_19 = V_6;
V_3 = ((int64_t)((int64_t)L_18|(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)1)))<<(int32_t)((int32_t)((int32_t)L_19&(int32_t)((int32_t)63)))))));
}
IL_0064:
{
bool L_20 = V_0;
if (L_20)
{
goto IL_0080;
}
}
{
int32_t L_21 = V_7;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_22 = V_2;
NullCheck(L_22);
if ((((int32_t)L_21) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))))))
{
goto IL_007e;
}
}
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_23 = V_5;
int32_t L_24 = V_6;
NullCheck(L_23);
int32_t L_25 = L_24;
RuntimeObject* L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_27 = V_2;
int32_t L_28 = V_7;
int32_t L_29 = L_28;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1));
NullCheck(L_27);
int32_t L_30 = L_29;
RuntimeObject* L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
if ((((RuntimeObject*)(RuntimeObject*)L_26) == ((RuntimeObject*)(RuntimeObject*)L_31)))
{
goto IL_0080;
}
}
IL_007e:
{
V_0 = (bool)1;
}
IL_0080:
{
int32_t L_32 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
}
IL_0086:
{
int32_t L_33 = V_6;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_34 = V_5;
NullCheck(L_34);
if ((((int32_t)L_33) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length)))))))
{
goto IL_0042;
}
}
{
goto IL_010d;
}
IL_0090:
{
RuntimeObject* L_35 = ___components0;
if (!L_35)
{
goto IL_010d;
}
}
{
RuntimeObject* L_36 = ___components0;
NullCheck(L_36);
RuntimeObject* L_37 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_36);
V_8 = L_37;
}
IL_009b:
try
{ // begin try (depth: 1)
{
goto IL_00ed;
}
IL_009d:
{
RuntimeObject* L_38 = V_8;
NullCheck(L_38);
RuntimeObject * L_39 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_38);
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_39, IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var));
RuntimeObject* L_40 = V_9;
if (!L_40)
{
goto IL_00e7;
}
}
IL_00af:
{
RuntimeObject* L_41 = V_9;
RuntimeObject * L_42 = ___instance1;
NullCheck(L_41);
bool L_43 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.ComponentModel.IExtenderProvider::CanExtend(System.Object) */, IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var, L_41, L_42);
if (!L_43)
{
goto IL_00e7;
}
}
IL_00b9:
{
int32_t L_44 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
int32_t L_45 = V_6;
int32_t L_46 = V_4;
if ((((int32_t)L_45) >= ((int32_t)L_46)))
{
goto IL_00ce;
}
}
IL_00c3:
{
uint64_t L_47 = V_3;
int32_t L_48 = V_6;
V_3 = ((int64_t)((int64_t)L_47|(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)1)))<<(int32_t)((int32_t)((int32_t)L_48&(int32_t)((int32_t)63)))))));
}
IL_00ce:
{
bool L_49 = V_0;
if (L_49)
{
goto IL_00e7;
}
}
IL_00d1:
{
int32_t L_50 = V_7;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_51 = V_2;
NullCheck(L_51);
if ((((int32_t)L_50) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length)))))))
{
goto IL_00e5;
}
}
IL_00d8:
{
RuntimeObject* L_52 = V_9;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_53 = V_2;
int32_t L_54 = V_7;
int32_t L_55 = L_54;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1));
NullCheck(L_53);
int32_t L_56 = L_55;
RuntimeObject* L_57 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_56));
if ((((RuntimeObject*)(RuntimeObject*)L_52) == ((RuntimeObject*)(RuntimeObject*)L_57)))
{
goto IL_00e7;
}
}
IL_00e5:
{
V_0 = (bool)1;
}
IL_00e7:
{
int32_t L_58 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)1));
}
IL_00ed:
{
RuntimeObject* L_59 = V_8;
NullCheck(L_59);
bool L_60 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_59);
if (L_60)
{
goto IL_009d;
}
}
IL_00f6:
{
IL2CPP_LEAVE(0x10D, FINALLY_00f8);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00f8;
}
FINALLY_00f8:
{ // begin finally (depth: 1)
{
RuntimeObject* L_61 = V_8;
V_10 = ((RuntimeObject*)IsInst((RuntimeObject*)L_61, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_62 = V_10;
if (!L_62)
{
goto IL_010c;
}
}
IL_0105:
{
RuntimeObject* L_63 = V_10;
NullCheck(L_63);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_63);
}
IL_010c:
{
IL2CPP_END_FINALLY(248)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(248)
{
IL2CPP_JUMP_TBL(0x10D, IL_010d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_010d:
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_64 = V_2;
if (!L_64)
{
goto IL_0118;
}
}
{
int32_t L_65 = V_1;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_66 = V_2;
NullCheck(L_66);
if ((((int32_t)L_65) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_66)->max_length)))))))
{
goto IL_0118;
}
}
{
V_0 = (bool)1;
}
IL_0118:
{
bool L_67 = V_0;
if (!L_67)
{
goto IL_0210;
}
}
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_68 = V_5;
if (!L_68)
{
goto IL_012c;
}
}
{
int32_t L_69 = V_1;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_70 = V_5;
NullCheck(L_70);
if ((((int32_t)L_69) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length)))))))
{
goto IL_01e9;
}
}
IL_012c:
{
int32_t L_71 = V_1;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_72 = (IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*)(IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*)SZArrayNew(IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031_il2cpp_TypeInfo_var, (uint32_t)L_71);
V_11 = L_72;
V_6 = 0;
V_7 = 0;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_73 = V_5;
if (!L_73)
{
goto IL_0188;
}
}
{
int32_t L_74 = V_1;
if ((((int32_t)L_74) <= ((int32_t)0)))
{
goto IL_0188;
}
}
{
goto IL_017e;
}
IL_0144:
{
int32_t L_75 = V_6;
int32_t L_76 = V_4;
if ((((int32_t)L_75) >= ((int32_t)L_76)))
{
goto IL_0156;
}
}
{
uint64_t L_77 = V_3;
int32_t L_78 = V_6;
if (((int64_t)((int64_t)L_77&(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)1)))<<(int32_t)((int32_t)((int32_t)L_78&(int32_t)((int32_t)63))))))))
{
goto IL_0169;
}
}
IL_0156:
{
int32_t L_79 = V_6;
int32_t L_80 = V_4;
if ((((int32_t)L_79) < ((int32_t)L_80)))
{
goto IL_0178;
}
}
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_81 = V_5;
int32_t L_82 = V_6;
NullCheck(L_81);
int32_t L_83 = L_82;
RuntimeObject* L_84 = (L_81)->GetAt(static_cast<il2cpp_array_size_t>(L_83));
RuntimeObject * L_85 = ___instance1;
NullCheck(L_84);
bool L_86 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.ComponentModel.IExtenderProvider::CanExtend(System.Object) */, IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var, L_84, L_85);
if (!L_86)
{
goto IL_0178;
}
}
IL_0169:
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_87 = V_11;
int32_t L_88 = V_7;
int32_t L_89 = L_88;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)1));
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_90 = V_5;
int32_t L_91 = V_6;
NullCheck(L_90);
int32_t L_92 = L_91;
RuntimeObject* L_93 = (L_90)->GetAt(static_cast<il2cpp_array_size_t>(L_92));
NullCheck(L_87);
ArrayElementTypeCheck (L_87, L_93);
(L_87)->SetAt(static_cast<il2cpp_array_size_t>(L_89), (RuntimeObject*)L_93);
}
IL_0178:
{
int32_t L_94 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_94, (int32_t)1));
}
IL_017e:
{
int32_t L_95 = V_6;
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_96 = V_5;
NullCheck(L_96);
if ((((int32_t)L_95) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_96)->max_length)))))))
{
goto IL_0144;
}
}
{
goto IL_01e5;
}
IL_0188:
{
int32_t L_97 = V_1;
if ((((int32_t)L_97) <= ((int32_t)0)))
{
goto IL_01e5;
}
}
{
RuntimeObject* L_98 = ___components0;
NullCheck(L_98);
RuntimeObject* L_99 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_98);
V_12 = L_99;
goto IL_01dc;
}
IL_0196:
{
RuntimeObject* L_100 = V_12;
NullCheck(L_100);
RuntimeObject * L_101 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_100);
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_101, IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var));
RuntimeObject* L_102 = V_13;
if (!L_102)
{
goto IL_01d6;
}
}
{
int32_t L_103 = V_6;
int32_t L_104 = V_4;
if ((((int32_t)L_103) >= ((int32_t)L_104)))
{
goto IL_01ba;
}
}
{
uint64_t L_105 = V_3;
int32_t L_106 = V_6;
if (((int64_t)((int64_t)L_105&(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)1)))<<(int32_t)((int32_t)((int32_t)L_106&(int32_t)((int32_t)63))))))))
{
goto IL_01ca;
}
}
IL_01ba:
{
int32_t L_107 = V_6;
int32_t L_108 = V_4;
if ((((int32_t)L_107) < ((int32_t)L_108)))
{
goto IL_01d6;
}
}
{
RuntimeObject* L_109 = V_13;
RuntimeObject * L_110 = ___instance1;
NullCheck(L_109);
bool L_111 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.ComponentModel.IExtenderProvider::CanExtend(System.Object) */, IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7_il2cpp_TypeInfo_var, L_109, L_110);
if (!L_111)
{
goto IL_01d6;
}
}
IL_01ca:
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_112 = V_11;
int32_t L_113 = V_7;
int32_t L_114 = L_113;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_114, (int32_t)1));
RuntimeObject* L_115 = V_13;
NullCheck(L_112);
ArrayElementTypeCheck (L_112, L_115);
(L_112)->SetAt(static_cast<il2cpp_array_size_t>(L_114), (RuntimeObject*)L_115);
}
IL_01d6:
{
int32_t L_116 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_116, (int32_t)1));
}
IL_01dc:
{
RuntimeObject* L_117 = V_12;
NullCheck(L_117);
bool L_118 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_117);
if (L_118)
{
goto IL_0196;
}
}
IL_01e5:
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_119 = V_11;
V_5 = L_119;
}
IL_01e9:
{
RuntimeObject* L_120 = ___cache2;
if (!L_120)
{
goto IL_0213;
}
}
{
RuntimeObject* L_121 = ___cache2;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Guid_t L_122 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extenderProviderKey_13();
Guid_t L_123 = L_122;
RuntimeObject * L_124 = Box(Guid_t_il2cpp_TypeInfo_var, &L_123);
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_125 = V_5;
NullCheck(L_121);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_121, L_124, (RuntimeObject *)(RuntimeObject *)L_125);
RuntimeObject* L_126 = ___cache2;
Guid_t L_127 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extenderPropertiesKey_14();
Guid_t L_128 = L_127;
RuntimeObject * L_129 = Box(Guid_t_il2cpp_TypeInfo_var, &L_128);
NullCheck(L_126);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(10 /* System.Void System.Collections.IDictionary::Remove(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_126, L_129);
goto IL_0213;
}
IL_0210:
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_130 = V_2;
V_5 = L_130;
}
IL_0213:
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_131 = V_5;
return L_131;
}
}
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::GetExtendedPropertyOwner(System.Object,System.ComponentModel.PropertyDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectTypeDescriptionProvider_GetExtendedPropertyOwner_mB2A35CD73BBB7941257EA40720C03A8A43260A93 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___pd1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___instance0;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___instance0;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_3 = ___pd1;
RuntimeObject * L_4 = ReflectTypeDescriptionProvider_GetPropertyOwner_m1F756D26F3F69E8C5574225867C90D3793E0FCE2(__this, L_1, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.ReflectTypeDescriptionProvider::GetExtendedTypeDescriptor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReflectTypeDescriptionProvider_GetExtendedTypeDescriptor_mE33F57B6C037B34BACC549681047C513D9C6934F (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
{
return (RuntimeObject*)NULL;
}
}
// System.String System.ComponentModel.ReflectTypeDescriptionProvider::GetFullComponentName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectTypeDescriptionProvider_GetFullComponentName_mF8D268EC8D8E8587153C420BBA6F167DD2889471 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetFullComponentName_mF8D268EC8D8E8587153C420BBA6F167DD2889471_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
RuntimeObject * L_0 = ___component0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0020;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_2);
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, INestedSite_t9A84D4AF79B470FD45AF5F23123DAB2C923DD6A3_il2cpp_TypeInfo_var));
RuntimeObject* L_4 = V_1;
if (!L_4)
{
goto IL_0020;
}
}
{
RuntimeObject* L_5 = V_1;
NullCheck(L_5);
String_t* L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.ComponentModel.INestedSite::get_FullName() */, INestedSite_t9A84D4AF79B470FD45AF5F23123DAB2C923DD6A3_il2cpp_TypeInfo_var, L_5);
return L_6;
}
IL_0020:
{
RuntimeObject * L_7 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
String_t* L_8 = TypeDescriptor_GetComponentName_m459C41F0CF27D483E7285912BA6936553D90688B(L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.Type[] System.ComponentModel.ReflectTypeDescriptionProvider::GetPopulatedTypes(System.Reflection.Module)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ReflectTypeDescriptionProvider_GetPopulatedTypes_mC33B39A2E560A2A7137D85F6A93ECE1F5B269D3B (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * ___module0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetPopulatedTypes_mC33B39A2E560A2A7137D85F6A93ECE1F5B269D3B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_2;
memset((&V_2), 0, sizeof(V_2));
Type_t * V_3 = NULL;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * V_4 = NULL;
RuntimeObject* V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_0, /*hidden argument*/NULL);
V_0 = L_0;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get__typeData_2();
NullCheck(L_1);
RuntimeObject* L_2 = VirtFuncInvoker0< RuntimeObject* >::Invoke(31 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_1);
V_1 = L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_005a;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck(L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_3);
V_2 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_4, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
RuntimeObject * L_5 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_2), /*hidden argument*/NULL);
V_3 = ((Type_t *)CastclassClass((RuntimeObject*)L_5, Type_t_il2cpp_TypeInfo_var));
RuntimeObject * L_6 = DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_2), /*hidden argument*/NULL);
V_4 = ((ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 *)CastclassClass((RuntimeObject*)L_6, ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96_il2cpp_TypeInfo_var));
Type_t * L_7 = V_3;
NullCheck(L_7);
Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * L_8 = VirtFuncInvoker0< Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * >::Invoke(15 /* System.Reflection.Module System.Reflection.MemberInfo::get_Module() */, L_7);
Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * L_9 = ___module0;
IL2CPP_RUNTIME_CLASS_INIT(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_il2cpp_TypeInfo_var);
bool L_10 = Module_op_Equality_m3AEF6BCA2C1DA42DEF271D9C168AD6F5DFFA497A(L_8, L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_005a;
}
}
IL_0049:
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_11 = V_4;
NullCheck(L_11);
bool L_12 = ReflectedTypeData_get_IsPopulated_m0BE08AAC57F2AA79A21B33C3A4A3FC7EECE35549(L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_005a;
}
}
IL_0052:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_13 = V_0;
Type_t * L_14 = V_3;
NullCheck(L_13);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_13, L_14);
}
IL_005a:
{
RuntimeObject* L_15 = V_1;
NullCheck(L_15);
bool L_16 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_15);
if (L_16)
{
goto IL_0014;
}
}
IL_0062:
{
IL2CPP_LEAVE(0x78, FINALLY_0064);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0064;
}
FINALLY_0064:
{ // begin finally (depth: 1)
{
RuntimeObject* L_17 = V_1;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_17, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_18 = V_5;
if (!L_18)
{
goto IL_0077;
}
}
IL_0070:
{
RuntimeObject* L_19 = V_5;
NullCheck(L_19);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_19);
}
IL_0077:
{
IL2CPP_END_FINALLY(100)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(100)
{
IL2CPP_JUMP_TBL(0x78, IL_0078)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0078:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_20 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_21, /*hidden argument*/NULL);
NullCheck(L_20);
RuntimeArray * L_23 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(47 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_20, L_22);
return ((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)Castclass((RuntimeObject*)L_23, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var));
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ReflectTypeDescriptionProvider::GetProperties(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ReflectTypeDescriptionProvider_GetProperties_m198ED05393452A6A44A4F073C6B6EA08F4C62C09 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_1 = ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4(__this, L_0, (bool)1, /*hidden argument*/NULL);
NullCheck(L_1);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_2 = ReflectedTypeData_GetProperties_mEDCD21FF9DB7D27C3EF7ACC291E12B348AEC7CF5(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::GetPropertyOwner(System.Type,System.Object,System.ComponentModel.PropertyDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectTypeDescriptionProvider_GetPropertyOwner_m1F756D26F3F69E8C5574225867C90D3793E0FCE2 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, RuntimeObject * ___instance1, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___pd2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetPropertyOwner_m1F756D26F3F69E8C5574225867C90D3793E0FCE2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
RuntimeObject * L_1 = ___instance1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject * L_2 = TypeDescriptor_GetAssociation_m45465AA1409C932535F021345F71CFF99CBC4D98(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Type System.ComponentModel.ReflectTypeDescriptionProvider::GetReflectionType(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectTypeDescriptionProvider_GetReflectionType_mF229DC91D51765143C01388F689FAA98EB4EC658 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___objectType0;
return L_0;
}
}
// System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData System.ComponentModel.ReflectTypeDescriptionProvider::GetTypeData(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, bool ___createIfNeeded1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * V_0 = NULL;
RuntimeObject * V_1 = NULL;
bool V_2 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 *)NULL;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__typeData_2();
if (!L_0)
{
goto IL_0021;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get__typeData_2();
Type_t * L_2 = ___type0;
NullCheck(L_1);
RuntimeObject * L_3 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_2);
V_0 = ((ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 *)CastclassClass((RuntimeObject*)L_3, ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96_il2cpp_TypeInfo_var));
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_4 = V_0;
if (!L_4)
{
goto IL_0021;
}
}
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_5 = V_0;
return L_5;
}
IL_0021:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_6 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_1 = L_6;
V_2 = (bool)0;
}
IL_0029:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_7 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_7, (bool*)(&V_2), /*hidden argument*/NULL);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_8 = __this->get__typeData_2();
if (!L_8)
{
goto IL_004b;
}
}
IL_0039:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_9 = __this->get__typeData_2();
Type_t * L_10 = ___type0;
NullCheck(L_9);
RuntimeObject * L_11 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_9, L_10);
V_0 = ((ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 *)CastclassClass((RuntimeObject*)L_11, ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96_il2cpp_TypeInfo_var));
}
IL_004b:
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_12 = V_0;
bool L_13 = ___createIfNeeded1;
if (!((int32_t)((int32_t)((((RuntimeObject*)(ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 *)L_12) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)&(int32_t)L_13)))
{
goto IL_007a;
}
}
IL_0053:
{
Type_t * L_14 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_15 = (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 *)il2cpp_codegen_object_new(ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96_il2cpp_TypeInfo_var);
ReflectedTypeData__ctor_mA8A7CF229ABE16D20515D5A827382370C78151AA(L_15, L_14, /*hidden argument*/NULL);
V_0 = L_15;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_16 = __this->get__typeData_2();
if (L_16)
{
goto IL_006d;
}
}
IL_0062:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_17 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_17, /*hidden argument*/NULL);
__this->set__typeData_2(L_17);
}
IL_006d:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_18 = __this->get__typeData_2();
Type_t * L_19 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_20 = V_0;
NullCheck(L_18);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_18, L_19, L_20);
}
IL_007a:
{
IL2CPP_LEAVE(0x86, FINALLY_007c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_007c;
}
FINALLY_007c:
{ // begin finally (depth: 1)
{
bool L_21 = V_2;
if (!L_21)
{
goto IL_0085;
}
}
IL_007f:
{
RuntimeObject * L_22 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_22, /*hidden argument*/NULL);
}
IL_0085:
{
IL2CPP_END_FINALLY(124)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(124)
{
IL2CPP_JUMP_TBL(0x86, IL_0086)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0086:
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_23 = V_0;
return L_23;
}
}
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.ReflectTypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReflectTypeDescriptionProvider_GetTypeDescriptor_m99EE1E613367E54A6132ADD94E0D34772BBEB67C (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
{
return (RuntimeObject*)NULL;
}
}
// System.Type System.ComponentModel.ReflectTypeDescriptionProvider::GetTypeFromName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectTypeDescriptionProvider_GetTypeFromName_mAAEB4488DDC97DDC4780EC28C8CF4BD27BB9E9EC (String_t* ___typeName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_GetTypeFromName_mAAEB4488DDC97DDC4780EC28C8CF4BD27BB9E9EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
int32_t V_1 = 0;
{
String_t* L_0 = ___typeName0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_0, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
V_0 = L_1;
Type_t * L_2 = V_0;
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_002b;
}
}
{
String_t* L_4 = ___typeName0;
NullCheck(L_4);
int32_t L_5 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_4, ((int32_t)44), /*hidden argument*/NULL);
V_1 = L_5;
int32_t L_6 = V_1;
if ((((int32_t)L_6) == ((int32_t)(-1))))
{
goto IL_002b;
}
}
{
String_t* L_7 = ___typeName0;
int32_t L_8 = V_1;
NullCheck(L_7);
String_t* L_9 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_7, 0, L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_10 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_9, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
V_0 = L_10;
}
IL_002b:
{
Type_t * L_11 = V_0;
return L_11;
}
}
// System.Boolean System.ComponentModel.ReflectTypeDescriptionProvider::IsPopulated(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectTypeDescriptionProvider_IsPopulated_mDA141741A260991A87C6B4C7EE84FAB26220A534 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * V_0 = NULL;
{
Type_t * L_0 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_1 = ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4(__this, L_0, (bool)0, /*hidden argument*/NULL);
V_0 = L_1;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_2 = V_0;
if (!L_2)
{
goto IL_0013;
}
}
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_3 = V_0;
NullCheck(L_3);
bool L_4 = ReflectedTypeData_get_IsPopulated_m0BE08AAC57F2AA79A21B33C3A4A3FC7EECE35549(L_3, /*hidden argument*/NULL);
return L_4;
}
IL_0013:
{
return (bool)0;
}
}
// System.Attribute[] System.ComponentModel.ReflectTypeDescriptionProvider::ReflectGetAttributes(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ReflectTypeDescriptionProvider_ReflectGetAttributes_m378C9A3D2CB09CE7EBA76BCF431A99F6C2EF67DD (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_ReflectGetAttributes_m378C9A3D2CB09CE7EBA76BCF431A99F6C2EF67DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_0 = NULL;
RuntimeObject * V_1 = NULL;
bool V_2 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__attributeCache_11();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_003a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_1 = L_1;
V_2 = (bool)0;
}
IL_0011:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__attributeCache_11();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_002e;
}
}
IL_0022:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__attributeCache_11(L_4);
}
IL_002e:
{
IL2CPP_LEAVE(0x3A, FINALLY_0030);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0030;
}
FINALLY_0030:
{ // begin finally (depth: 1)
{
bool L_5 = V_2;
if (!L_5)
{
goto IL_0039;
}
}
IL_0033:
{
RuntimeObject * L_6 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_0039:
{
IL2CPP_END_FINALLY(48)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(48)
{
IL2CPP_JUMP_TBL(0x3A, IL_003a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003a:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__attributeCache_11();
il2cpp_codegen_memory_barrier();
Type_t * L_8 = ___type0;
NullCheck(L_7);
RuntimeObject * L_9 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_8);
V_0 = ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)Castclass((RuntimeObject*)L_9, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var));
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_10 = V_0;
if (!L_10)
{
goto IL_0052;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_11 = V_0;
return L_11;
}
IL_0052:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_12 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_1 = L_12;
V_2 = (bool)0;
}
IL_005a:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_13 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_13, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_14 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__attributeCache_11();
il2cpp_codegen_memory_barrier();
Type_t * L_15 = ___type0;
NullCheck(L_14);
RuntimeObject * L_16 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_14, L_15);
V_0 = ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)Castclass((RuntimeObject*)L_16, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var));
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_17 = V_0;
if (L_17)
{
goto IL_00a7;
}
}
IL_0078:
{
Type_t * L_18 = ___type0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL);
NullCheck(L_18);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_18, L_20, (bool)0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = L_21;
NullCheck(L_22);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_23 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))));
V_0 = L_23;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_24 = V_0;
NullCheck((RuntimeArray *)(RuntimeArray *)L_22);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_22, (RuntimeArray *)(RuntimeArray *)L_24, 0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_25 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__attributeCache_11();
il2cpp_codegen_memory_barrier();
Type_t * L_26 = ___type0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_27 = V_0;
NullCheck(L_25);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_25, L_26, (RuntimeObject *)(RuntimeObject *)L_27);
}
IL_00a7:
{
IL2CPP_LEAVE(0xB3, FINALLY_00a9);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00a9;
}
FINALLY_00a9:
{ // begin finally (depth: 1)
{
bool L_28 = V_2;
if (!L_28)
{
goto IL_00b2;
}
}
IL_00ac:
{
RuntimeObject * L_29 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_29, /*hidden argument*/NULL);
}
IL_00b2:
{
IL2CPP_END_FINALLY(169)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(169)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_30 = V_0;
return L_30;
}
}
// System.Attribute[] System.ComponentModel.ReflectTypeDescriptionProvider::ReflectGetAttributes(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ReflectTypeDescriptionProvider_ReflectGetAttributes_mA3DA28648085382DC968178CE6B9D5288DE17739 (MemberInfo_t * ___member0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_ReflectGetAttributes_mA3DA28648085382DC968178CE6B9D5288DE17739_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_0 = NULL;
RuntimeObject * V_1 = NULL;
bool V_2 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__attributeCache_11();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_003a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_1 = L_1;
V_2 = (bool)0;
}
IL_0011:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__attributeCache_11();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_002e;
}
}
IL_0022:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__attributeCache_11(L_4);
}
IL_002e:
{
IL2CPP_LEAVE(0x3A, FINALLY_0030);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0030;
}
FINALLY_0030:
{ // begin finally (depth: 1)
{
bool L_5 = V_2;
if (!L_5)
{
goto IL_0039;
}
}
IL_0033:
{
RuntimeObject * L_6 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_0039:
{
IL2CPP_END_FINALLY(48)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(48)
{
IL2CPP_JUMP_TBL(0x3A, IL_003a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003a:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__attributeCache_11();
il2cpp_codegen_memory_barrier();
MemberInfo_t * L_8 = ___member0;
NullCheck(L_7);
RuntimeObject * L_9 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_8);
V_0 = ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)Castclass((RuntimeObject*)L_9, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var));
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_10 = V_0;
if (!L_10)
{
goto IL_0052;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_11 = V_0;
return L_11;
}
IL_0052:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_12 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_1 = L_12;
V_2 = (bool)0;
}
IL_005a:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_13 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_13, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_14 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__attributeCache_11();
il2cpp_codegen_memory_barrier();
MemberInfo_t * L_15 = ___member0;
NullCheck(L_14);
RuntimeObject * L_16 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_14, L_15);
V_0 = ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)Castclass((RuntimeObject*)L_16, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var));
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_17 = V_0;
if (L_17)
{
goto IL_00a7;
}
}
IL_0078:
{
MemberInfo_t * L_18 = ___member0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL);
NullCheck(L_18);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_18, L_20, (bool)0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = L_21;
NullCheck(L_22);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_23 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))));
V_0 = L_23;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_24 = V_0;
NullCheck((RuntimeArray *)(RuntimeArray *)L_22);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_22, (RuntimeArray *)(RuntimeArray *)L_24, 0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_25 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__attributeCache_11();
il2cpp_codegen_memory_barrier();
MemberInfo_t * L_26 = ___member0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_27 = V_0;
NullCheck(L_25);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_25, L_26, (RuntimeObject *)(RuntimeObject *)L_27);
}
IL_00a7:
{
IL2CPP_LEAVE(0xB3, FINALLY_00a9);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00a9;
}
FINALLY_00a9:
{ // begin finally (depth: 1)
{
bool L_28 = V_2;
if (!L_28)
{
goto IL_00b2;
}
}
IL_00ac:
{
RuntimeObject * L_29 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_29, /*hidden argument*/NULL);
}
IL_00b2:
{
IL2CPP_END_FINALLY(169)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(169)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_30 = V_0;
return L_30;
}
}
// System.ComponentModel.EventDescriptor[] System.ComponentModel.ReflectTypeDescriptionProvider::ReflectGetEvents(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ReflectTypeDescriptionProvider_ReflectGetEvents_m450768FFE6CB456734C6C9C01FAF08EB80BC67D0 (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_ReflectGetEvents_m450768FFE6CB456734C6C9C01FAF08EB80BC67D0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* V_0 = NULL;
RuntimeObject * V_1 = NULL;
bool V_2 = false;
int32_t V_3 = 0;
EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C* V_4 = NULL;
int32_t V_5 = 0;
int32_t V_6 = 0;
EventInfo_t * V_7 = NULL;
MethodInfo_t * V_8 = NULL;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* V_9 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__eventCache_10();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_003a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_1 = L_1;
V_2 = (bool)0;
}
IL_0011:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__eventCache_10();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_002e;
}
}
IL_0022:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__eventCache_10(L_4);
}
IL_002e:
{
IL2CPP_LEAVE(0x3A, FINALLY_0030);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0030;
}
FINALLY_0030:
{ // begin finally (depth: 1)
{
bool L_5 = V_2;
if (!L_5)
{
goto IL_0039;
}
}
IL_0033:
{
RuntimeObject * L_6 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_0039:
{
IL2CPP_END_FINALLY(48)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(48)
{
IL2CPP_JUMP_TBL(0x3A, IL_003a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003a:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__eventCache_10();
il2cpp_codegen_memory_barrier();
Type_t * L_8 = ___type0;
NullCheck(L_7);
RuntimeObject * L_9 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_8);
V_0 = ((EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)Castclass((RuntimeObject*)L_9, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var));
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_10 = V_0;
if (!L_10)
{
goto IL_0052;
}
}
{
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_11 = V_0;
return L_11;
}
IL_0052:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_12 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_1 = L_12;
V_2 = (bool)0;
}
IL_005a:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_13 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_13, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_14 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__eventCache_10();
il2cpp_codegen_memory_barrier();
Type_t * L_15 = ___type0;
NullCheck(L_14);
RuntimeObject * L_16 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_14, L_15);
V_0 = ((EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)Castclass((RuntimeObject*)L_16, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var));
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_17 = V_0;
if (L_17)
{
goto IL_014f;
}
}
IL_007b:
{
V_3 = ((int32_t)22);
Type_t * L_18 = ___type0;
int32_t L_19 = V_3;
NullCheck(L_18);
EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C* L_20 = VirtFuncInvoker1< EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C*, int32_t >::Invoke(58 /* System.Reflection.EventInfo[] System.Type::GetEvents(System.Reflection.BindingFlags) */, L_18, L_19);
V_4 = L_20;
EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C* L_21 = V_4;
NullCheck(L_21);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_22 = (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)SZArrayNew(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))));
V_0 = L_22;
V_5 = 0;
V_6 = 0;
goto IL_0117;
}
IL_0099:
{
EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C* L_23 = V_4;
int32_t L_24 = V_6;
NullCheck(L_23);
int32_t L_25 = L_24;
EventInfo_t * L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
V_7 = L_26;
EventInfo_t * L_27 = V_7;
NullCheck(L_27);
Type_t * L_28 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_27);
NullCheck(L_28);
bool L_29 = Type_get_IsPublic_mC1B34517A62C56867856DFFE5C7797E7B6CF536C(L_28, /*hidden argument*/NULL);
if (L_29)
{
goto IL_00de;
}
}
IL_00ae:
{
EventInfo_t * L_30 = V_7;
NullCheck(L_30);
Type_t * L_31 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_30);
NullCheck(L_31);
bool L_32 = Type_get_IsNestedPublic_m214CC3E241549EDCA1B438E5A66E4B3C66EA5C14(L_31, /*hidden argument*/NULL);
if (L_32)
{
goto IL_00de;
}
}
IL_00bc:
{
EventInfo_t * L_33 = V_7;
NullCheck(L_33);
Type_t * L_34 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_33);
NullCheck(L_34);
Assembly_t * L_35 = VirtFuncInvoker0< Assembly_t * >::Invoke(27 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_34);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_36 = { reinterpret_cast<intptr_t> (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_37 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_36, /*hidden argument*/NULL);
NullCheck(L_37);
Assembly_t * L_38 = VirtFuncInvoker0< Assembly_t * >::Invoke(27 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_37);
bool L_39 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_35, L_38, /*hidden argument*/NULL);
if (L_39)
{
goto IL_0111;
}
}
IL_00de:
{
EventInfo_t * L_40 = V_7;
NullCheck(L_40);
MethodInfo_t * L_41 = EventInfo_GetAddMethod_mCA36A5E78615F6777817A647355C2BAF49154619(L_40, /*hidden argument*/NULL);
EventInfo_t * L_42 = V_7;
NullCheck(L_42);
MethodInfo_t * L_43 = EventInfo_GetRemoveMethod_m18316DA28217AC9BED8EEB585BCDAA452B963132(L_42, /*hidden argument*/NULL);
V_8 = L_43;
bool L_44 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_41, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_44)
{
goto IL_0111;
}
}
IL_00f6:
{
MethodInfo_t * L_45 = V_8;
bool L_46 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_45, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_46)
{
goto IL_0111;
}
}
IL_0100:
{
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_47 = V_0;
int32_t L_48 = V_5;
int32_t L_49 = L_48;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1));
Type_t * L_50 = ___type0;
EventInfo_t * L_51 = V_7;
ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * L_52 = (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 *)il2cpp_codegen_object_new(ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360_il2cpp_TypeInfo_var);
ReflectEventDescriptor__ctor_m148E8EA0618ACD1C6E5C671B38BDFE3BE048FD12(L_52, L_50, L_51, /*hidden argument*/NULL);
NullCheck(L_47);
ArrayElementTypeCheck (L_47, L_52);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(L_49), (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)L_52);
}
IL_0111:
{
int32_t L_53 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1));
}
IL_0117:
{
int32_t L_54 = V_6;
EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C* L_55 = V_4;
NullCheck(L_55);
if ((((int32_t)L_54) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_55)->max_length)))))))
{
goto IL_0099;
}
}
IL_0122:
{
int32_t L_56 = V_5;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_57 = V_0;
NullCheck(L_57);
if ((((int32_t)L_56) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_57)->max_length)))))))
{
goto IL_0141;
}
}
IL_0129:
{
int32_t L_58 = V_5;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_59 = (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)SZArrayNew(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var, (uint32_t)L_58);
V_9 = L_59;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_60 = V_0;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_61 = V_9;
int32_t L_62 = V_5;
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_60, 0, (RuntimeArray *)(RuntimeArray *)L_61, 0, L_62, /*hidden argument*/NULL);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_63 = V_9;
V_0 = L_63;
}
IL_0141:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_64 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__eventCache_10();
il2cpp_codegen_memory_barrier();
Type_t * L_65 = ___type0;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_66 = V_0;
NullCheck(L_64);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_64, L_65, (RuntimeObject *)(RuntimeObject *)L_66);
}
IL_014f:
{
IL2CPP_LEAVE(0x15B, FINALLY_0151);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0151;
}
FINALLY_0151:
{ // begin finally (depth: 1)
{
bool L_67 = V_2;
if (!L_67)
{
goto IL_015a;
}
}
IL_0154:
{
RuntimeObject * L_68 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_68, /*hidden argument*/NULL);
}
IL_015a:
{
IL2CPP_END_FINALLY(337)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(337)
{
IL2CPP_JUMP_TBL(0x15B, IL_015b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_015b:
{
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_69 = V_0;
return L_69;
}
}
// System.ComponentModel.PropertyDescriptor[] System.ComponentModel.ReflectTypeDescriptionProvider::ReflectGetExtendedProperties(System.ComponentModel.IExtenderProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ReflectTypeDescriptionProvider_ReflectGetExtendedProperties_m8DF1B37E62CB64A4249355F85F421C57BA1A16F1 (RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_ReflectGetExtendedProperties_m8DF1B37E62CB64A4249355F85F421C57BA1A16F1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_1 = NULL;
Type_t * V_2 = NULL;
ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24* V_3 = NULL;
RuntimeObject * V_4 = NULL;
bool V_5 = false;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_6 = NULL;
RuntimeObject* V_7 = NULL;
ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * V_8 = NULL;
Type_t * V_9 = NULL;
MethodInfo_t * V_10 = NULL;
MethodInfo_t * V_11 = NULL;
RuntimeObject* V_12 = NULL;
int32_t V_13 = 0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_14 = NULL;
RuntimeObject* V_15 = NULL;
ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * V_16 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___provider0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_1 = TypeDescriptor_GetCache_mC7540D2FBAB562E689ED1BC2399D3F3C31D97145(L_0, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0025;
}
}
{
RuntimeObject* L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Guid_t L_4 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extenderProviderPropertiesKey_15();
Guid_t L_5 = L_4;
RuntimeObject * L_6 = Box(Guid_t_il2cpp_TypeInfo_var, &L_5);
NullCheck(L_3);
RuntimeObject * L_7 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_3, L_6);
V_1 = ((PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)IsInst((RuntimeObject*)L_7, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var));
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_8 = V_1;
if (!L_8)
{
goto IL_0025;
}
}
{
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_9 = V_1;
return L_9;
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_10 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extendedPropertyCache_12();
il2cpp_codegen_memory_barrier();
if (L_10)
{
goto IL_0064;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_11 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_4 = L_11;
V_5 = (bool)0;
}
IL_0038:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_12 = V_4;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_12, (bool*)(&V_5), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_13 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extendedPropertyCache_12();
il2cpp_codegen_memory_barrier();
if (L_13)
{
goto IL_0056;
}
}
IL_004a:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_14 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_14, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__extendedPropertyCache_12(L_14);
}
IL_0056:
{
IL2CPP_LEAVE(0x64, FINALLY_0058);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0058;
}
FINALLY_0058:
{ // begin finally (depth: 1)
{
bool L_15 = V_5;
if (!L_15)
{
goto IL_0063;
}
}
IL_005c:
{
RuntimeObject * L_16 = V_4;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_16, /*hidden argument*/NULL);
}
IL_0063:
{
IL2CPP_END_FINALLY(88)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(88)
{
IL2CPP_JUMP_TBL(0x64, IL_0064)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0064:
{
RuntimeObject* L_17 = ___provider0;
NullCheck(L_17);
Type_t * L_18 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_17, /*hidden argument*/NULL);
V_2 = L_18;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_19 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extendedPropertyCache_12();
il2cpp_codegen_memory_barrier();
Type_t * L_20 = V_2;
NullCheck(L_19);
RuntimeObject * L_21 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_19, L_20);
V_3 = ((ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24*)Castclass((RuntimeObject*)L_21, ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24_il2cpp_TypeInfo_var));
ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24* L_22 = V_3;
if (L_22)
{
goto IL_020c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_23 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_4 = L_23;
V_5 = (bool)0;
}
IL_008e:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_24 = V_4;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_24, (bool*)(&V_5), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_25 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extendedPropertyCache_12();
il2cpp_codegen_memory_barrier();
Type_t * L_26 = V_2;
NullCheck(L_25);
RuntimeObject * L_27 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_25, L_26);
V_3 = ((ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24*)Castclass((RuntimeObject*)L_27, ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24_il2cpp_TypeInfo_var));
ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24* L_28 = V_3;
if (L_28)
{
goto IL_01fe;
}
}
IL_00b0:
{
Type_t * L_29 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_30 = TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B(L_29, /*hidden argument*/NULL);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_31 = L_30;
NullCheck(L_31);
int32_t L_32 = AttributeCollection_get_Count_m18B4E5D1755D27754C9B3C7C89B4BD91B1458EC4(L_31, /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_33 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C(L_33, L_32, /*hidden argument*/NULL);
V_6 = L_33;
NullCheck(L_31);
RuntimeObject* L_34 = AttributeCollection_GetEnumerator_m0A6B7803DAA1D559DF91BB18D0230F449A036DCB(L_31, /*hidden argument*/NULL);
V_7 = L_34;
}
IL_00ca:
try
{ // begin try (depth: 2)
{
goto IL_01b7;
}
IL_00cf:
{
RuntimeObject* L_35 = V_7;
NullCheck(L_35);
RuntimeObject * L_36 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_35);
V_8 = ((ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 *)IsInstSealed((RuntimeObject*)((Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)CastclassClass((RuntimeObject*)L_36, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_il2cpp_TypeInfo_var)), ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3_il2cpp_TypeInfo_var));
ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * L_37 = V_8;
if (!L_37)
{
goto IL_01b7;
}
}
IL_00e9:
{
ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * L_38 = V_8;
NullCheck(L_38);
String_t* L_39 = ProvidePropertyAttribute_get_ReceiverTypeName_m66AECE2E8CB9069B1A1EC02C17BE84B4D176BB82_inline(L_38, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Type_t * L_40 = ReflectTypeDescriptionProvider_GetTypeFromName_mAAEB4488DDC97DDC4780EC28C8CF4BD27BB9E9EC(L_39, /*hidden argument*/NULL);
V_9 = L_40;
Type_t * L_41 = V_9;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_42 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_41, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_42)
{
goto IL_01b7;
}
}
IL_0104:
{
Type_t * L_43 = V_2;
ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * L_44 = V_8;
NullCheck(L_44);
String_t* L_45 = ProvidePropertyAttribute_get_PropertyName_mCFB6B8ECE17E7FFD9FA7D5EE4FB0FACEDE552AEC_inline(L_44, /*hidden argument*/NULL);
String_t* L_46 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralBFFFD736CDDD08A4EEE689949C3399CB61DA773B, L_45, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_47 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_48 = L_47;
Type_t * L_49 = V_9;
NullCheck(L_48);
ArrayElementTypeCheck (L_48, L_49);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_49);
NullCheck(L_43);
MethodInfo_t * L_50 = Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5(L_43, L_46, L_48, /*hidden argument*/NULL);
V_10 = L_50;
MethodInfo_t * L_51 = V_10;
bool L_52 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_51, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_52)
{
goto IL_01b7;
}
}
IL_0135:
{
MethodInfo_t * L_53 = V_10;
NullCheck(L_53);
bool L_54 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_53, /*hidden argument*/NULL);
if (L_54)
{
goto IL_01b7;
}
}
IL_013e:
{
MethodInfo_t * L_55 = V_10;
NullCheck(L_55);
bool L_56 = MethodBase_get_IsPublic_m9DCA641DBE6F06D0DC4A4B2828641A6DEA97F88B(L_55, /*hidden argument*/NULL);
if (!L_56)
{
goto IL_01b7;
}
}
IL_0147:
{
Type_t * L_57 = V_2;
ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * L_58 = V_8;
NullCheck(L_58);
String_t* L_59 = ProvidePropertyAttribute_get_PropertyName_mCFB6B8ECE17E7FFD9FA7D5EE4FB0FACEDE552AEC_inline(L_58, /*hidden argument*/NULL);
String_t* L_60 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral448AB73BA1C21E671E218FB91F2644C834F0C16F, L_59, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_61 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_62 = L_61;
Type_t * L_63 = V_9;
NullCheck(L_62);
ArrayElementTypeCheck (L_62, L_63);
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_63);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_64 = L_62;
MethodInfo_t * L_65 = V_10;
NullCheck(L_65);
Type_t * L_66 = VirtFuncInvoker0< Type_t * >::Invoke(38 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_65);
NullCheck(L_64);
ArrayElementTypeCheck (L_64, L_66);
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_66);
NullCheck(L_57);
MethodInfo_t * L_67 = Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5(L_57, L_60, L_64, /*hidden argument*/NULL);
V_11 = L_67;
MethodInfo_t * L_68 = V_11;
bool L_69 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_68, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_69)
{
goto IL_0194;
}
}
IL_017f:
{
MethodInfo_t * L_70 = V_11;
NullCheck(L_70);
bool L_71 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_70, /*hidden argument*/NULL);
if (L_71)
{
goto IL_0191;
}
}
IL_0188:
{
MethodInfo_t * L_72 = V_11;
NullCheck(L_72);
bool L_73 = MethodBase_get_IsPublic_m9DCA641DBE6F06D0DC4A4B2828641A6DEA97F88B(L_72, /*hidden argument*/NULL);
if (L_73)
{
goto IL_0194;
}
}
IL_0191:
{
V_11 = (MethodInfo_t *)NULL;
}
IL_0194:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_74 = V_6;
Type_t * L_75 = V_2;
ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * L_76 = V_8;
NullCheck(L_76);
String_t* L_77 = ProvidePropertyAttribute_get_PropertyName_mCFB6B8ECE17E7FFD9FA7D5EE4FB0FACEDE552AEC_inline(L_76, /*hidden argument*/NULL);
MethodInfo_t * L_78 = V_10;
NullCheck(L_78);
Type_t * L_79 = VirtFuncInvoker0< Type_t * >::Invoke(38 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_78);
Type_t * L_80 = V_9;
MethodInfo_t * L_81 = V_10;
MethodInfo_t * L_82 = V_11;
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_83 = (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E *)il2cpp_codegen_object_new(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
ReflectPropertyDescriptor__ctor_mED173B591B660C3642C4F39591EF6A2CBBA13C5F(L_83, L_75, L_77, L_79, L_80, L_81, L_82, (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL, /*hidden argument*/NULL);
NullCheck(L_74);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_74, L_83);
}
IL_01b7:
{
RuntimeObject* L_84 = V_7;
NullCheck(L_84);
bool L_85 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_84);
if (L_85)
{
goto IL_00cf;
}
}
IL_01c3:
{
IL2CPP_LEAVE(0x1DA, FINALLY_01c5);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_01c5;
}
FINALLY_01c5:
{ // begin finally (depth: 2)
{
RuntimeObject* L_86 = V_7;
V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_86, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_87 = V_12;
if (!L_87)
{
goto IL_01d9;
}
}
IL_01d2:
{
RuntimeObject* L_88 = V_12;
NullCheck(L_88);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_88);
}
IL_01d9:
{
IL2CPP_END_FINALLY(453)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(453)
{
IL2CPP_JUMP_TBL(0x1DA, IL_01da)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01da:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_89 = V_6;
NullCheck(L_89);
int32_t L_90 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_89);
ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24* L_91 = (ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24*)(ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24*)SZArrayNew(ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24_il2cpp_TypeInfo_var, (uint32_t)L_90);
V_3 = L_91;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_92 = V_6;
ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24* L_93 = V_3;
NullCheck(L_92);
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_92, (RuntimeArray *)(RuntimeArray *)L_93, 0);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_94 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extendedPropertyCache_12();
il2cpp_codegen_memory_barrier();
Type_t * L_95 = V_2;
ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24* L_96 = V_3;
NullCheck(L_94);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_94, L_95, (RuntimeObject *)(RuntimeObject *)L_96);
}
IL_01fe:
{
IL2CPP_LEAVE(0x20C, FINALLY_0200);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0200;
}
FINALLY_0200:
{ // begin finally (depth: 1)
{
bool L_97 = V_5;
if (!L_97)
{
goto IL_020b;
}
}
IL_0204:
{
RuntimeObject * L_98 = V_4;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_98, /*hidden argument*/NULL);
}
IL_020b:
{
IL2CPP_END_FINALLY(512)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(512)
{
IL2CPP_JUMP_TBL(0x20C, IL_020c)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_020c:
{
ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24* L_99 = V_3;
NullCheck(L_99);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_100 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_99)->max_length)))));
V_1 = L_100;
V_13 = 0;
goto IL_0262;
}
IL_021a:
{
V_14 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL;
RuntimeObject* L_101 = ___provider0;
V_15 = ((RuntimeObject*)IsInst((RuntimeObject*)L_101, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var));
RuntimeObject* L_102 = V_15;
if (!L_102)
{
goto IL_0232;
}
}
{
RuntimeObject* L_103 = V_15;
NullCheck(L_103);
RuntimeObject* L_104 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_103);
if (L_104)
{
goto IL_0242;
}
}
IL_0232:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_105 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)1);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_106 = L_105;
IL2CPP_RUNTIME_CLASS_INIT(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var);
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * L_107 = ((DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields*)il2cpp_codegen_static_fields_for(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var))->get_Yes_1();
NullCheck(L_106);
ArrayElementTypeCheck (L_106, L_107);
(L_106)->SetAt(static_cast<il2cpp_array_size_t>(0), (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)L_107);
V_14 = L_106;
}
IL_0242:
{
ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24* L_108 = V_3;
int32_t L_109 = V_13;
NullCheck(L_108);
int32_t L_110 = L_109;
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_111 = (L_108)->GetAt(static_cast<il2cpp_array_size_t>(L_110));
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_112 = L_111;
NullCheck(L_112);
Type_t * L_113 = ReflectPropertyDescriptor_ExtenderGetReceiverType_mEACD75A498F4FEA40302981092B93DBBC95EB1FA_inline(L_112, /*hidden argument*/NULL);
RuntimeObject* L_114 = ___provider0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_115 = V_14;
ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * L_116 = (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 *)il2cpp_codegen_object_new(ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6_il2cpp_TypeInfo_var);
ExtendedPropertyDescriptor__ctor_mC8CA04D11B52520D581769FB316244C9EA5F7420(L_116, L_112, L_113, L_114, L_115, /*hidden argument*/NULL);
V_16 = L_116;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_117 = V_1;
int32_t L_118 = V_13;
ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * L_119 = V_16;
NullCheck(L_117);
ArrayElementTypeCheck (L_117, L_119);
(L_117)->SetAt(static_cast<il2cpp_array_size_t>(L_118), (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)L_119);
int32_t L_120 = V_13;
V_13 = ((int32_t)il2cpp_codegen_add((int32_t)L_120, (int32_t)1));
}
IL_0262:
{
int32_t L_121 = V_13;
ReflectPropertyDescriptorU5BU5D_tF024087CC36059BE1E997369D3BAB8B284379E24* L_122 = V_3;
NullCheck(L_122);
if ((((int32_t)L_121) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_122)->max_length)))))))
{
goto IL_021a;
}
}
{
RuntimeObject* L_123 = V_0;
if (!L_123)
{
goto IL_027d;
}
}
{
RuntimeObject* L_124 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Guid_t L_125 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__extenderProviderPropertiesKey_15();
Guid_t L_126 = L_125;
RuntimeObject * L_127 = Box(Guid_t_il2cpp_TypeInfo_var, &L_126);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_128 = V_1;
NullCheck(L_124);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_124, L_127, (RuntimeObject *)(RuntimeObject *)L_128);
}
IL_027d:
{
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_129 = V_1;
return L_129;
}
}
// System.ComponentModel.PropertyDescriptor[] System.ComponentModel.ReflectTypeDescriptionProvider::ReflectGetProperties(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ReflectTypeDescriptionProvider_ReflectGetProperties_m0F7F5B7591FEC0B4F26419E559C20E3134F522B6 (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_ReflectGetProperties_m0F7F5B7591FEC0B4F26419E559C20E3134F522B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_0 = NULL;
RuntimeObject * V_1 = NULL;
bool V_2 = false;
int32_t V_3 = 0;
PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* V_4 = NULL;
int32_t V_5 = 0;
int32_t V_6 = 0;
PropertyInfo_t * V_7 = NULL;
MethodInfo_t * V_8 = NULL;
MethodInfo_t * V_9 = NULL;
String_t* V_10 = NULL;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_11 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__propertyCache_9();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_003a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_1 = L_1;
V_2 = (bool)0;
}
IL_0011:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__propertyCache_9();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_002e;
}
}
IL_0022:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__propertyCache_9(L_4);
}
IL_002e:
{
IL2CPP_LEAVE(0x3A, FINALLY_0030);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0030;
}
FINALLY_0030:
{ // begin finally (depth: 1)
{
bool L_5 = V_2;
if (!L_5)
{
goto IL_0039;
}
}
IL_0033:
{
RuntimeObject * L_6 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_0039:
{
IL2CPP_END_FINALLY(48)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(48)
{
IL2CPP_JUMP_TBL(0x3A, IL_003a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003a:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__propertyCache_9();
il2cpp_codegen_memory_barrier();
Type_t * L_8 = ___type0;
NullCheck(L_7);
RuntimeObject * L_9 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_8);
V_0 = ((PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)Castclass((RuntimeObject*)L_9, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var));
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_10 = V_0;
if (!L_10)
{
goto IL_0052;
}
}
{
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_11 = V_0;
return L_11;
}
IL_0052:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_12 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__internalSyncObject_17();
V_1 = L_12;
V_2 = (bool)0;
}
IL_005a:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_13 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_13, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_14 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__propertyCache_9();
il2cpp_codegen_memory_barrier();
Type_t * L_15 = ___type0;
NullCheck(L_14);
RuntimeObject * L_16 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_14, L_15);
V_0 = ((PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)Castclass((RuntimeObject*)L_16, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var));
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_17 = V_0;
if (L_17)
{
goto IL_0129;
}
}
IL_007b:
{
V_3 = ((int32_t)22);
Type_t * L_18 = ___type0;
int32_t L_19 = V_3;
NullCheck(L_18);
PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* L_20 = VirtFuncInvoker1< PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E*, int32_t >::Invoke(67 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, L_18, L_19);
V_4 = L_20;
PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* L_21 = V_4;
NullCheck(L_21);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_22 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))));
V_0 = L_22;
V_5 = 0;
V_6 = 0;
goto IL_00f4;
}
IL_0099:
{
PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* L_23 = V_4;
int32_t L_24 = V_6;
NullCheck(L_23);
int32_t L_25 = L_24;
PropertyInfo_t * L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
V_7 = L_26;
PropertyInfo_t * L_27 = V_7;
NullCheck(L_27);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_28 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(23 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_27);
NullCheck(L_28);
if ((((RuntimeArray*)L_28)->max_length))
{
goto IL_00ee;
}
}
IL_00aa:
{
PropertyInfo_t * L_29 = V_7;
NullCheck(L_29);
MethodInfo_t * L_30 = PropertyInfo_GetGetMethod_m90BA90BA1CAFEE1CC273BB8B3BD289890373CB8A(L_29, /*hidden argument*/NULL);
V_8 = L_30;
PropertyInfo_t * L_31 = V_7;
NullCheck(L_31);
MethodInfo_t * L_32 = PropertyInfo_GetSetMethod_m275171F734C49C398DC9E9F3970AA798725C7CA9(L_31, /*hidden argument*/NULL);
V_9 = L_32;
PropertyInfo_t * L_33 = V_7;
NullCheck(L_33);
String_t* L_34 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_33);
V_10 = L_34;
MethodInfo_t * L_35 = V_8;
bool L_36 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_35, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_36)
{
goto IL_00ee;
}
}
IL_00cf:
{
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_37 = V_0;
int32_t L_38 = V_5;
int32_t L_39 = L_38;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1));
Type_t * L_40 = ___type0;
String_t* L_41 = V_10;
PropertyInfo_t * L_42 = V_7;
NullCheck(L_42);
Type_t * L_43 = VirtFuncInvoker0< Type_t * >::Invoke(19 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_42);
PropertyInfo_t * L_44 = V_7;
MethodInfo_t * L_45 = V_8;
MethodInfo_t * L_46 = V_9;
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_47 = (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E *)il2cpp_codegen_object_new(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
ReflectPropertyDescriptor__ctor_m81658E6FF4EDE19BDC21661F2AD7F1D428DE2D90(L_47, L_40, L_41, L_43, L_44, L_45, L_46, (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL, /*hidden argument*/NULL);
NullCheck(L_37);
ArrayElementTypeCheck (L_37, L_47);
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_39), (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)L_47);
}
IL_00ee:
{
int32_t L_48 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1));
}
IL_00f4:
{
int32_t L_49 = V_6;
PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* L_50 = V_4;
NullCheck(L_50);
if ((((int32_t)L_49) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_50)->max_length)))))))
{
goto IL_0099;
}
}
IL_00fc:
{
int32_t L_51 = V_5;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_52 = V_0;
NullCheck(L_52);
if ((((int32_t)L_51) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_52)->max_length)))))))
{
goto IL_011b;
}
}
IL_0103:
{
int32_t L_53 = V_5;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_54 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_53);
V_11 = L_54;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_55 = V_0;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_56 = V_11;
int32_t L_57 = V_5;
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_55, 0, (RuntimeArray *)(RuntimeArray *)L_56, 0, L_57, /*hidden argument*/NULL);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_58 = V_11;
V_0 = L_58;
}
IL_011b:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_59 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__propertyCache_9();
il2cpp_codegen_memory_barrier();
Type_t * L_60 = ___type0;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_61 = V_0;
NullCheck(L_59);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_59, L_60, (RuntimeObject *)(RuntimeObject *)L_61);
}
IL_0129:
{
IL2CPP_LEAVE(0x135, FINALLY_012b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_012b;
}
FINALLY_012b:
{ // begin finally (depth: 1)
{
bool L_62 = V_2;
if (!L_62)
{
goto IL_0134;
}
}
IL_012e:
{
RuntimeObject * L_63 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_63, /*hidden argument*/NULL);
}
IL_0134:
{
IL2CPP_END_FINALLY(299)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(299)
{
IL2CPP_JUMP_TBL(0x135, IL_0135)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0135:
{
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_64 = V_0;
return L_64;
}
}
// System.Void System.ComponentModel.ReflectTypeDescriptionProvider::Refresh(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectTypeDescriptionProvider_Refresh_m6C8F1779B16BB22FAAABA8E16E5DB5AB1025DF89 (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * V_0 = NULL;
{
Type_t * L_0 = ___type0;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_1 = ReflectTypeDescriptionProvider_GetTypeData_m297505206CB7033A420244CD3962881B3FAA55E4(__this, L_0, (bool)0, /*hidden argument*/NULL);
V_0 = L_1;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_2 = V_0;
if (!L_2)
{
goto IL_0012;
}
}
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_3 = V_0;
NullCheck(L_3);
ReflectedTypeData_Refresh_mA966D08F6AC6693D49DCB60CE3BF23ADBF4DE7BA(L_3, /*hidden argument*/NULL);
}
IL_0012:
{
return;
}
}
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider::SearchIntrinsicTable(System.Collections.Hashtable,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectTypeDescriptionProvider_SearchIntrinsicTable_mD70A9E795A2A1411479E8BB0ACE34604726C9D82 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___table0, Type_t * ___callingType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider_SearchIntrinsicTable_mD70A9E795A2A1411479E8BB0ACE34604726C9D82_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_1 = NULL;
bool V_2 = false;
Type_t * V_3 = NULL;
Type_t * V_4 = NULL;
String_t* V_5 = NULL;
RuntimeObject* V_6 = NULL;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_7;
memset((&V_7), 0, sizeof(V_7));
Type_t * V_8 = NULL;
String_t* V_9 = NULL;
RuntimeObject* V_10 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = NULL;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ___table0;
V_1 = L_0;
V_2 = (bool)0;
}
IL_0006:
try
{ // begin try (depth: 1)
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_2), /*hidden argument*/NULL);
Type_t * L_2 = ___callingType1;
V_3 = L_2;
goto IL_0043;
}
IL_0012:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = ___table0;
Type_t * L_4 = V_3;
NullCheck(L_3);
RuntimeObject * L_5 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_3, L_4);
V_0 = L_5;
RuntimeObject * L_6 = V_0;
V_5 = ((String_t*)IsInstSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var));
String_t* L_7 = V_5;
if (!L_7)
{
goto IL_0039;
}
}
IL_0026:
{
String_t* L_8 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_9 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_8, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
V_0 = L_9;
RuntimeObject * L_10 = V_0;
if (!L_10)
{
goto IL_0039;
}
}
IL_0031:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_11 = ___table0;
Type_t * L_12 = V_3;
RuntimeObject * L_13 = V_0;
NullCheck(L_11);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_11, L_12, L_13);
}
IL_0039:
{
RuntimeObject * L_14 = V_0;
if (L_14)
{
goto IL_005e;
}
}
IL_003c:
{
Type_t * L_15 = V_3;
NullCheck(L_15);
Type_t * L_16 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_15);
V_3 = L_16;
}
IL_0043:
{
Type_t * L_17 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_18 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_17, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_005e;
}
}
IL_004c:
{
Type_t * L_19 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_20 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_21 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_20, /*hidden argument*/NULL);
bool L_22 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_19, L_21, /*hidden argument*/NULL);
if (L_22)
{
goto IL_0012;
}
}
IL_005e:
{
RuntimeObject * L_23 = V_0;
if (L_23)
{
goto IL_00f3;
}
}
IL_0064:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_24 = ___table0;
NullCheck(L_24);
RuntimeObject* L_25 = VirtFuncInvoker0< RuntimeObject* >::Invoke(31 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_24);
V_6 = L_25;
}
IL_006c:
try
{ // begin try (depth: 2)
{
goto IL_00d3;
}
IL_006e:
{
RuntimeObject* L_26 = V_6;
NullCheck(L_26);
RuntimeObject * L_27 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_26);
V_7 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_27, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
RuntimeObject * L_28 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_7), /*hidden argument*/NULL);
V_8 = ((Type_t *)IsInstClass((RuntimeObject*)L_28, Type_t_il2cpp_TypeInfo_var));
Type_t * L_29 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_30 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_29, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_00d3;
}
}
IL_0094:
{
Type_t * L_31 = V_8;
NullCheck(L_31);
bool L_32 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_31, /*hidden argument*/NULL);
if (!L_32)
{
goto IL_00d3;
}
}
IL_009d:
{
Type_t * L_33 = V_8;
Type_t * L_34 = ___callingType1;
NullCheck(L_33);
bool L_35 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_33, L_34);
if (!L_35)
{
goto IL_00d3;
}
}
IL_00a7:
{
RuntimeObject * L_36 = DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_7), /*hidden argument*/NULL);
V_0 = L_36;
RuntimeObject * L_37 = V_0;
V_9 = ((String_t*)IsInstSealed((RuntimeObject*)L_37, String_t_il2cpp_TypeInfo_var));
String_t* L_38 = V_9;
if (!L_38)
{
goto IL_00ce;
}
}
IL_00bb:
{
String_t* L_39 = V_9;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_40 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_39, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
V_0 = L_40;
RuntimeObject * L_41 = V_0;
if (!L_41)
{
goto IL_00ce;
}
}
IL_00c6:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_42 = ___table0;
Type_t * L_43 = ___callingType1;
RuntimeObject * L_44 = V_0;
NullCheck(L_42);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_42, L_43, L_44);
}
IL_00ce:
{
RuntimeObject * L_45 = V_0;
if (!L_45)
{
goto IL_00d3;
}
}
IL_00d1:
{
IL2CPP_LEAVE(0xF3, FINALLY_00de);
}
IL_00d3:
{
RuntimeObject* L_46 = V_6;
NullCheck(L_46);
bool L_47 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_46);
if (L_47)
{
goto IL_006e;
}
}
IL_00dc:
{
IL2CPP_LEAVE(0xF3, FINALLY_00de);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00de;
}
FINALLY_00de:
{ // begin finally (depth: 2)
{
RuntimeObject* L_48 = V_6;
V_10 = ((RuntimeObject*)IsInst((RuntimeObject*)L_48, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_49 = V_10;
if (!L_49)
{
goto IL_00f2;
}
}
IL_00eb:
{
RuntimeObject* L_50 = V_10;
NullCheck(L_50);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_50);
}
IL_00f2:
{
IL2CPP_END_FINALLY(222)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(222)
{
IL2CPP_JUMP_TBL(0xF3, IL_00f3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00f3:
{
RuntimeObject * L_51 = V_0;
if (L_51)
{
goto IL_0137;
}
}
IL_00f6:
{
Type_t * L_52 = ___callingType1;
NullCheck(L_52);
bool L_53 = VirtFuncInvoker0< bool >::Invoke(104 /* System.Boolean System.Type::get_IsGenericType() */, L_52);
if (!L_53)
{
goto IL_0123;
}
}
IL_00fe:
{
Type_t * L_54 = ___callingType1;
NullCheck(L_54);
Type_t * L_55 = VirtFuncInvoker0< Type_t * >::Invoke(129 /* System.Type System.Type::GetGenericTypeDefinition() */, L_54);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_56 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_57 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_56, /*hidden argument*/NULL);
bool L_58 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_55, L_57, /*hidden argument*/NULL);
if (!L_58)
{
goto IL_0123;
}
}
IL_0115:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_59 = ___table0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_60 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__intrinsicNullableKey_7();
NullCheck(L_59);
RuntimeObject * L_61 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_59, L_60);
V_0 = L_61;
goto IL_0137;
}
IL_0123:
{
Type_t * L_62 = ___callingType1;
NullCheck(L_62);
bool L_63 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_62, /*hidden argument*/NULL);
if (!L_63)
{
goto IL_0137;
}
}
IL_012b:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_64 = ___table0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_65 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__intrinsicReferenceKey_6();
NullCheck(L_64);
RuntimeObject * L_66 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_64, L_65);
V_0 = L_66;
}
IL_0137:
{
RuntimeObject * L_67 = V_0;
if (L_67)
{
goto IL_014b;
}
}
IL_013a:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_68 = ___table0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_69 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_70 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_69, /*hidden argument*/NULL);
NullCheck(L_68);
RuntimeObject * L_71 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_68, L_70);
V_0 = L_71;
}
IL_014b:
{
RuntimeObject * L_72 = V_0;
V_4 = ((Type_t *)IsInstClass((RuntimeObject*)L_72, Type_t_il2cpp_TypeInfo_var));
Type_t * L_73 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_74 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_73, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_74)
{
goto IL_0182;
}
}
IL_015d:
{
Type_t * L_75 = V_4;
Type_t * L_76 = ___callingType1;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_77 = ReflectTypeDescriptionProvider_CreateInstance_m1A50E07E2455EA23FDE96B06EFD81DCA451025D4(L_75, L_76, /*hidden argument*/NULL);
V_0 = L_77;
Type_t * L_78 = V_4;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_79 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__typeConstructor_3();
NullCheck(L_78);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_80 = Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA(L_78, L_79, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_il2cpp_TypeInfo_var);
bool L_81 = ConstructorInfo_op_Equality_mB609E9EE55A0CFDE49239997394F2E458DBF8B53(L_80, (ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)NULL, /*hidden argument*/NULL);
if (!L_81)
{
goto IL_0182;
}
}
IL_017a:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_82 = ___table0;
Type_t * L_83 = ___callingType1;
RuntimeObject * L_84 = V_0;
NullCheck(L_82);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_82, L_83, L_84);
}
IL_0182:
{
IL2CPP_LEAVE(0x18E, FINALLY_0184);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0184;
}
FINALLY_0184:
{ // begin finally (depth: 1)
{
bool L_85 = V_2;
if (!L_85)
{
goto IL_018d;
}
}
IL_0187:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_86 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_86, /*hidden argument*/NULL);
}
IL_018d:
{
IL2CPP_END_FINALLY(388)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(388)
{
IL2CPP_JUMP_TBL(0x18E, IL_018e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_018e:
{
RuntimeObject * L_87 = V_0;
return L_87;
}
}
// System.Void System.ComponentModel.ReflectTypeDescriptionProvider::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectTypeDescriptionProvider__cctor_mB9C7F73E1722134C687B3BB8E0F484EF2F30FEA5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectTypeDescriptionProvider__cctor_mB9C7F73E1722134C687B3BB8E0F484EF2F30FEA5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = L_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_3);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_3);
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__typeConstructor_3(L_1);
RuntimeObject * L_4 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_4, /*hidden argument*/NULL);
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__intrinsicReferenceKey_6(L_4);
RuntimeObject * L_5 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_5, /*hidden argument*/NULL);
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__intrinsicNullableKey_7(L_5);
RuntimeObject * L_6 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_6, /*hidden argument*/NULL);
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__dictionaryKey_8(L_6);
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_7 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__extenderProviderKey_13(L_7);
Guid_t L_8 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__extenderPropertiesKey_14(L_8);
Guid_t L_9 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__extenderProviderPropertiesKey_15(L_9);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)3);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = L_10;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (GuidAttribute_t12D6C9EA1C65F4B67401C657AB97CD253FC09D34_0_0_0_var) };
Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_13);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = L_11;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (ComVisibleAttribute_t3815D768D1DE3E84BAF7FC90E9F2F283FB1C74B3_0_0_0_var) };
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_16);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = L_14;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (InterfaceTypeAttribute_t4FD9BC97FD0CCFF82FA0562D6F897A54C00F9BEF_0_0_0_var) };
Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_19);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(2), (Type_t *)L_19);
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__skipInterfaceAttributeList_16(L_17);
RuntimeObject * L_20 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_20, /*hidden argument*/NULL);
((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->set__internalSyncObject_17(L_20);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectedTypeData__ctor_mA8A7CF229ABE16D20515D5A827382370C78151AA (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___type0;
__this->set__type_0(L_0);
return;
}
}
// System.Boolean System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::get_IsPopulated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectedTypeData_get_IsPopulated_m0BE08AAC57F2AA79A21B33C3A4A3FC7EECE35549 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, const RuntimeMethod* method)
{
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = __this->get__attributes_1();
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_1 = __this->get__events_2();
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_2 = __this->get__properties_3();
return (bool)((int32_t)((int32_t)((int32_t)((int32_t)((!(((RuntimeObject*)(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)|(int32_t)((!(((RuntimeObject*)(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)))|(int32_t)((!(((RuntimeObject*)(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)L_2) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)));
}
}
// System.ComponentModel.AttributeCollection System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::GetAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ReflectedTypeData_GetAttributes_m663A1FD9948A46D290B3D9E033F291B1E535452E (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectedTypeData_GetAttributes_m663A1FD9948A46D290B3D9E033F291B1E535452E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_0 = NULL;
Type_t * V_1 = NULL;
int32_t V_2 = 0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_3 = NULL;
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * V_4 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_5 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_6 = NULL;
int32_t V_7 = 0;
Type_t * V_8 = NULL;
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * V_9 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_10 = NULL;
int32_t V_11 = 0;
bool V_12 = false;
int32_t V_13 = 0;
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = __this->get__attributes_1();
if (L_0)
{
goto IL_0196;
}
}
{
Type_t * L_1 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_2 = ReflectTypeDescriptionProvider_ReflectGetAttributes_m378C9A3D2CB09CE7EBA76BCF431A99F6C2EF67DD(L_1, /*hidden argument*/NULL);
V_0 = L_2;
Type_t * L_3 = __this->get__type_0();
NullCheck(L_3);
Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_3);
V_1 = L_4;
goto IL_0064;
}
IL_0025:
{
Type_t * L_5 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_6 = ReflectTypeDescriptionProvider_ReflectGetAttributes_m378C9A3D2CB09CE7EBA76BCF431A99F6C2EF67DD(L_5, /*hidden argument*/NULL);
V_5 = L_6;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_7 = V_0;
NullCheck(L_7);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_8 = V_5;
NullCheck(L_8);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_9 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))));
V_6 = L_9;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_10 = V_0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_11 = V_6;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_12 = V_0;
NullCheck(L_12);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_10, 0, (RuntimeArray *)(RuntimeArray *)L_11, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))), /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_13 = V_5;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_14 = V_6;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_15 = V_0;
NullCheck(L_15);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_16 = V_5;
NullCheck(L_16);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_13, 0, (RuntimeArray *)(RuntimeArray *)L_14, (((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))), (((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))), /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_17 = V_6;
V_0 = L_17;
Type_t * L_18 = V_1;
NullCheck(L_18);
Type_t * L_19 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_18);
V_1 = L_19;
}
IL_0064:
{
Type_t * L_20 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_21 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_20, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_007f;
}
}
{
Type_t * L_22 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_23, /*hidden argument*/NULL);
bool L_25 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_22, L_24, /*hidden argument*/NULL);
if (L_25)
{
goto IL_0025;
}
}
IL_007f:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_26 = V_0;
NullCheck(L_26);
V_2 = (((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))));
Type_t * L_27 = __this->get__type_0();
NullCheck(L_27);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(54 /* System.Type[] System.Type::GetInterfaces() */, L_27);
V_3 = L_28;
V_7 = 0;
goto IL_00ec;
}
IL_0094:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_29 = V_3;
int32_t L_30 = V_7;
NullCheck(L_29);
int32_t L_31 = L_30;
Type_t * L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_8 = L_32;
Type_t * L_33 = V_8;
NullCheck(L_33);
int32_t L_34 = Type_get_Attributes_m8B229CC7A4DDE25E0EEB1A9F09FC61C499A72163(L_33, /*hidden argument*/NULL);
if (!((int32_t)((int32_t)L_34&(int32_t)3)))
{
goto IL_00e6;
}
}
{
Type_t * L_35 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_36 = TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B(L_35, /*hidden argument*/NULL);
V_9 = L_36;
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_37 = V_9;
NullCheck(L_37);
int32_t L_38 = AttributeCollection_get_Count_m18B4E5D1755D27754C9B3C7C89B4BD91B1458EC4(L_37, /*hidden argument*/NULL);
if ((((int32_t)L_38) <= ((int32_t)0)))
{
goto IL_00e6;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_39 = V_0;
NullCheck(L_39);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_40 = V_9;
NullCheck(L_40);
int32_t L_41 = AttributeCollection_get_Count_m18B4E5D1755D27754C9B3C7C89B4BD91B1458EC4(L_40, /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_42 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_39)->max_length)))), (int32_t)L_41)));
V_10 = L_42;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_43 = V_0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_44 = V_10;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_45 = V_0;
NullCheck(L_45);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_43, 0, (RuntimeArray *)(RuntimeArray *)L_44, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))), /*hidden argument*/NULL);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_46 = V_9;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_47 = V_10;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_48 = V_0;
NullCheck(L_48);
NullCheck(L_46);
AttributeCollection_CopyTo_mAE40D3E0FE070974B37F9BA5F4600E622E6F621F(L_46, (RuntimeArray *)(RuntimeArray *)L_47, (((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))), /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_49 = V_10;
V_0 = L_49;
}
IL_00e6:
{
int32_t L_50 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1));
}
IL_00ec:
{
int32_t L_51 = V_7;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_52 = V_3;
NullCheck(L_52);
if ((((int32_t)L_51) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_52)->max_length)))))))
{
goto IL_0094;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_53 = V_0;
NullCheck(L_53);
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_54 = (OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D *)il2cpp_codegen_object_new(OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D_il2cpp_TypeInfo_var);
OrderedDictionary__ctor_m278F36318DAF73A39FB15CF0ED1439C36237C175(L_54, (((int32_t)((int32_t)(((RuntimeArray*)L_53)->max_length)))), /*hidden argument*/NULL);
V_4 = L_54;
V_11 = 0;
goto IL_0168;
}
IL_0102:
{
V_12 = (bool)1;
int32_t L_55 = V_11;
int32_t L_56 = V_2;
if ((((int32_t)L_55) < ((int32_t)L_56)))
{
goto IL_0138;
}
}
{
V_13 = 0;
goto IL_012d;
}
IL_010f:
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_57 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__skipInterfaceAttributeList_16();
int32_t L_58 = V_13;
NullCheck(L_57);
int32_t L_59 = L_58;
Type_t * L_60 = (L_57)->GetAt(static_cast<il2cpp_array_size_t>(L_59));
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_61 = V_0;
int32_t L_62 = V_11;
NullCheck(L_61);
int32_t L_63 = L_62;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_64 = (L_61)->GetAt(static_cast<il2cpp_array_size_t>(L_63));
NullCheck(L_60);
bool L_65 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(138 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_60, L_64);
if (!L_65)
{
goto IL_0127;
}
}
{
V_12 = (bool)0;
goto IL_0138;
}
IL_0127:
{
int32_t L_66 = V_13;
V_13 = ((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1));
}
IL_012d:
{
int32_t L_67 = V_13;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_68 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_StaticFields*)il2cpp_codegen_static_fields_for(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var))->get__skipInterfaceAttributeList_16();
NullCheck(L_68);
if ((((int32_t)L_67) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_68)->max_length)))))))
{
goto IL_010f;
}
}
IL_0138:
{
bool L_69 = V_12;
if (!L_69)
{
goto IL_0162;
}
}
{
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_70 = V_4;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_71 = V_0;
int32_t L_72 = V_11;
NullCheck(L_71);
int32_t L_73 = L_72;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_74 = (L_71)->GetAt(static_cast<il2cpp_array_size_t>(L_73));
NullCheck(L_74);
RuntimeObject * L_75 = VirtFuncInvoker0< RuntimeObject * >::Invoke(4 /* System.Object System.Attribute::get_TypeId() */, L_74);
NullCheck(L_70);
bool L_76 = OrderedDictionary_Contains_m957B6F29E97A93AB5A0AF9272ED0AB65E4401EF1(L_70, L_75, /*hidden argument*/NULL);
if (L_76)
{
goto IL_0162;
}
}
{
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_77 = V_4;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_78 = V_0;
int32_t L_79 = V_11;
NullCheck(L_78);
int32_t L_80 = L_79;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_81 = (L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_80));
NullCheck(L_81);
RuntimeObject * L_82 = VirtFuncInvoker0< RuntimeObject * >::Invoke(4 /* System.Object System.Attribute::get_TypeId() */, L_81);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_83 = V_0;
int32_t L_84 = V_11;
NullCheck(L_83);
int32_t L_85 = L_84;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_86 = (L_83)->GetAt(static_cast<il2cpp_array_size_t>(L_85));
NullCheck(L_77);
OrderedDictionary_set_Item_mA8C71C7FD9354ABDCB0DBFB1977459680BD748BB(L_77, L_82, L_86, /*hidden argument*/NULL);
}
IL_0162:
{
int32_t L_87 = V_11;
V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_87, (int32_t)1));
}
IL_0168:
{
int32_t L_88 = V_11;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_89 = V_0;
NullCheck(L_89);
if ((((int32_t)L_88) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_89)->max_length)))))))
{
goto IL_0102;
}
}
{
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_90 = V_4;
NullCheck(L_90);
int32_t L_91 = OrderedDictionary_get_Count_m55F1F94E727BA49C8D94E7A7088D4C2E4B33605C(L_90, /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_92 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_91);
V_0 = L_92;
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_93 = V_4;
NullCheck(L_93);
RuntimeObject* L_94 = OrderedDictionary_get_Values_mF389293625F26A739573D543FB5E21FEC6BDAE13(L_93, /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_95 = V_0;
NullCheck(L_94);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_94, (RuntimeArray *)(RuntimeArray *)L_95, 0);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_96 = V_0;
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_97 = (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)il2cpp_codegen_object_new(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var);
AttributeCollection__ctor_m1EBB330147608510FB1B60549BA95812EA2A1190(L_97, L_96, /*hidden argument*/NULL);
__this->set__attributes_1(L_97);
}
IL_0196:
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_98 = __this->get__attributes_1();
return L_98;
}
}
// System.String System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::GetClassName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectedTypeData_GetClassName_m4291DAD8939B251B6C5A1AF021708036DF13FF82 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get__type_0();
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_0);
return L_1;
}
}
// System.String System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::GetComponentName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectedTypeData_GetComponentName_m688C3E2D5D955FF24A051F1E21FC6ABB1BCDE17A (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectedTypeData_GetComponentName_m688C3E2D5D955FF24A051F1E21FC6ABB1BCDE17A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
{
RuntimeObject * L_0 = ___instance0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_002c;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_2);
V_1 = L_3;
RuntimeObject* L_4 = V_1;
if (!L_4)
{
goto IL_002c;
}
}
{
RuntimeObject* L_5 = V_1;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, INestedSite_t9A84D4AF79B470FD45AF5F23123DAB2C923DD6A3_il2cpp_TypeInfo_var));
RuntimeObject* L_6 = V_2;
if (!L_6)
{
goto IL_0025;
}
}
{
RuntimeObject* L_7 = V_2;
NullCheck(L_7);
String_t* L_8 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.ComponentModel.INestedSite::get_FullName() */, INestedSite_t9A84D4AF79B470FD45AF5F23123DAB2C923DD6A3_il2cpp_TypeInfo_var, L_7);
return L_8;
}
IL_0025:
{
RuntimeObject* L_9 = V_1;
NullCheck(L_9);
String_t* L_10 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String System.ComponentModel.ISite::get_Name() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_9);
return L_10;
}
IL_002c:
{
return (String_t*)NULL;
}
}
// System.ComponentModel.TypeConverter System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::GetConverter(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ReflectedTypeData_GetConverter_mD37346D7D19C72DC50CBB82BF4F4F9DF5218D0B6 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectedTypeData_GetConverter_mD37346D7D19C72DC50CBB82BF4F4F9DF5218D0B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * V_0 = NULL;
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * V_1 = NULL;
Type_t * V_2 = NULL;
Type_t * V_3 = NULL;
{
V_0 = (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 *)NULL;
RuntimeObject * L_0 = ___instance0;
if (!L_0)
{
goto IL_007e;
}
}
{
Type_t * L_1 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_2 = TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B(L_1, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_5 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_2, L_4);
V_0 = ((TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 *)CastclassSealed((RuntimeObject*)L_5, TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var));
RuntimeObject * L_6 = ___instance0;
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_7 = TypeDescriptor_GetAttributes_m0325F763D0AA6354E3F7859E15FF7BE3A8D5F3D3(L_6, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_0_0_0_var) };
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL);
NullCheck(L_7);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_10 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_7, L_9);
V_1 = ((TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 *)CastclassSealed((RuntimeObject*)L_10, TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var));
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_11 = V_0;
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_12 = V_1;
if ((((RuntimeObject*)(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 *)L_11) == ((RuntimeObject*)(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 *)L_12)))
{
goto IL_007e;
}
}
{
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_13 = V_1;
NullCheck(L_13);
String_t* L_14 = TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8_inline(L_13, /*hidden argument*/NULL);
Type_t * L_15 = ReflectedTypeData_GetTypeFromName_m9E59CF61CA7CAC4E47B9736F36891FCB2E325D27(__this, L_14, /*hidden argument*/NULL);
V_2 = L_15;
Type_t * L_16 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_17 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_16, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_007e;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL);
Type_t * L_20 = V_2;
NullCheck(L_19);
bool L_21 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_19, L_20);
if (!L_21)
{
goto IL_007e;
}
}
{
Type_t * L_22 = V_2;
Type_t * L_23 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_24 = ReflectTypeDescriptionProvider_CreateInstance_m1A50E07E2455EA23FDE96B06EFD81DCA451025D4(L_22, L_23, /*hidden argument*/NULL);
return ((TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB *)CastclassClass((RuntimeObject*)L_24, TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var));
}
IL_007e:
{
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_25 = __this->get__converter_4();
if (L_25)
{
goto IL_0111;
}
}
{
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_26 = V_0;
if (L_26)
{
goto IL_00ac;
}
}
{
Type_t * L_27 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_28 = TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B(L_27, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_29, /*hidden argument*/NULL);
NullCheck(L_28);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_31 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_28, L_30);
V_0 = ((TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 *)CastclassSealed((RuntimeObject*)L_31, TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var));
}
IL_00ac:
{
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_32 = V_0;
if (!L_32)
{
goto IL_00ee;
}
}
{
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_33 = V_0;
NullCheck(L_33);
String_t* L_34 = TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8_inline(L_33, /*hidden argument*/NULL);
Type_t * L_35 = ReflectedTypeData_GetTypeFromName_m9E59CF61CA7CAC4E47B9736F36891FCB2E325D27(__this, L_34, /*hidden argument*/NULL);
V_3 = L_35;
Type_t * L_36 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_37 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_36, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_37)
{
goto IL_00ee;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_38 = { reinterpret_cast<intptr_t> (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_39 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_38, /*hidden argument*/NULL);
Type_t * L_40 = V_3;
NullCheck(L_39);
bool L_41 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_39, L_40);
if (!L_41)
{
goto IL_00ee;
}
}
{
Type_t * L_42 = V_3;
Type_t * L_43 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_44 = ReflectTypeDescriptionProvider_CreateInstance_m1A50E07E2455EA23FDE96B06EFD81DCA451025D4(L_42, L_43, /*hidden argument*/NULL);
__this->set__converter_4(((TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB *)CastclassClass((RuntimeObject*)L_44, TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var)));
}
IL_00ee:
{
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_45 = __this->get__converter_4();
if (L_45)
{
goto IL_0111;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_46 = ReflectTypeDescriptionProvider_get_IntrinsicTypeConverters_m9CC87D07619955CD00731AD91FC7F8323C18AF4F(/*hidden argument*/NULL);
Type_t * L_47 = __this->get__type_0();
RuntimeObject * L_48 = ReflectTypeDescriptionProvider_SearchIntrinsicTable_mD70A9E795A2A1411479E8BB0ACE34604726C9D82(L_46, L_47, /*hidden argument*/NULL);
__this->set__converter_4(((TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB *)CastclassClass((RuntimeObject*)L_48, TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var)));
}
IL_0111:
{
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_49 = __this->get__converter_4();
return L_49;
}
}
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::GetDefaultEvent(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ReflectedTypeData_GetDefaultEvent_m31A6B84818BEBF7977111E35658D6CFB319F4737 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectedTypeData_GetDefaultEvent_m31A6B84818BEBF7977111E35658D6CFB319F4737_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * V_0 = NULL;
DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 * V_1 = NULL;
{
RuntimeObject * L_0 = ___instance0;
if (!L_0)
{
goto IL_000c;
}
}
{
RuntimeObject * L_1 = ___instance0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_2 = TypeDescriptor_GetAttributes_m0325F763D0AA6354E3F7859E15FF7BE3A8D5F3D3(L_1, /*hidden argument*/NULL);
V_0 = L_2;
goto IL_0018;
}
IL_000c:
{
Type_t * L_3 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_4 = TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B(L_3, /*hidden argument*/NULL);
V_0 = L_4;
}
IL_0018:
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_5 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_8 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_5, L_7);
V_1 = ((DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 *)CastclassSealed((RuntimeObject*)L_8, DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846_il2cpp_TypeInfo_var));
DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 * L_9 = V_1;
if (!L_9)
{
goto IL_0065;
}
}
{
DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 * L_10 = V_1;
NullCheck(L_10);
String_t* L_11 = DefaultEventAttribute_get_Name_m1134D3145164417819FEABD3FB749DB89E09A098_inline(L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0065;
}
}
{
RuntimeObject * L_12 = ___instance0;
if (!L_12)
{
goto IL_004e;
}
}
{
RuntimeObject * L_13 = ___instance0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_14 = TypeDescriptor_GetEvents_mA157A3DD309A7F9B964A9C1CD8942ED3B395439D(L_13, /*hidden argument*/NULL);
DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 * L_15 = V_1;
NullCheck(L_15);
String_t* L_16 = DefaultEventAttribute_get_Name_m1134D3145164417819FEABD3FB749DB89E09A098_inline(L_15, /*hidden argument*/NULL);
NullCheck(L_14);
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_17 = VirtFuncInvoker1< EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *, String_t* >::Invoke(21 /* System.ComponentModel.EventDescriptor System.ComponentModel.EventDescriptorCollection::get_Item(System.String) */, L_14, L_16);
return L_17;
}
IL_004e:
{
Type_t * L_18 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_19 = TypeDescriptor_GetEvents_mEB93FB58F539D9302E2ACAA823DABB199DFB9944(L_18, /*hidden argument*/NULL);
DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 * L_20 = V_1;
NullCheck(L_20);
String_t* L_21 = DefaultEventAttribute_get_Name_m1134D3145164417819FEABD3FB749DB89E09A098_inline(L_20, /*hidden argument*/NULL);
NullCheck(L_19);
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_22 = VirtFuncInvoker1< EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *, String_t* >::Invoke(21 /* System.ComponentModel.EventDescriptor System.ComponentModel.EventDescriptorCollection::get_Item(System.String) */, L_19, L_21);
return L_22;
}
IL_0065:
{
return (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)NULL;
}
}
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::GetDefaultProperty(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ReflectedTypeData_GetDefaultProperty_m6A5070505225614BD439CE0195A5725EFE7BB612 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectedTypeData_GetDefaultProperty_m6A5070505225614BD439CE0195A5725EFE7BB612_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * V_0 = NULL;
DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 * V_1 = NULL;
{
RuntimeObject * L_0 = ___instance0;
if (!L_0)
{
goto IL_000c;
}
}
{
RuntimeObject * L_1 = ___instance0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_2 = TypeDescriptor_GetAttributes_m0325F763D0AA6354E3F7859E15FF7BE3A8D5F3D3(L_1, /*hidden argument*/NULL);
V_0 = L_2;
goto IL_0018;
}
IL_000c:
{
Type_t * L_3 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_4 = TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B(L_3, /*hidden argument*/NULL);
V_0 = L_4;
}
IL_0018:
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_5 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_8 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_5, L_7);
V_1 = ((DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 *)CastclassSealed((RuntimeObject*)L_8, DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7_il2cpp_TypeInfo_var));
DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 * L_9 = V_1;
if (!L_9)
{
goto IL_0065;
}
}
{
DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 * L_10 = V_1;
NullCheck(L_10);
String_t* L_11 = DefaultPropertyAttribute_get_Name_mE3DA224DF16CD92E047FF0CD3DAC7157300B82EB_inline(L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0065;
}
}
{
RuntimeObject * L_12 = ___instance0;
if (!L_12)
{
goto IL_004e;
}
}
{
RuntimeObject * L_13 = ___instance0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_14 = TypeDescriptor_GetProperties_mADA58F0BAD4560D62BF7ADB7186B990D11780B0C(L_13, /*hidden argument*/NULL);
DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 * L_15 = V_1;
NullCheck(L_15);
String_t* L_16 = DefaultPropertyAttribute_get_Name_mE3DA224DF16CD92E047FF0CD3DAC7157300B82EB_inline(L_15, /*hidden argument*/NULL);
NullCheck(L_14);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_17 = VirtFuncInvoker1< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, String_t* >::Invoke(32 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.String) */, L_14, L_16);
return L_17;
}
IL_004e:
{
Type_t * L_18 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_19 = TypeDescriptor_GetProperties_m0398CE2B5F7971982337E934990B8A2128675024(L_18, /*hidden argument*/NULL);
DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 * L_20 = V_1;
NullCheck(L_20);
String_t* L_21 = DefaultPropertyAttribute_get_Name_mE3DA224DF16CD92E047FF0CD3DAC7157300B82EB_inline(L_20, /*hidden argument*/NULL);
NullCheck(L_19);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_22 = VirtFuncInvoker1< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, String_t* >::Invoke(32 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.String) */, L_19, L_21);
return L_22;
}
IL_0065:
{
return (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)NULL;
}
}
// System.Object System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::GetEditor(System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectedTypeData_GetEditor_m64641DA7947F872252041D99AD2D4FFB346DF531 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, RuntimeObject * ___instance0, Type_t * ___editorBaseType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectedTypeData_GetEditor_m64641DA7947F872252041D99AD2D4FFB346DF531_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * V_0 = NULL;
RuntimeObject * V_1 = NULL;
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * V_2 = NULL;
Type_t * V_3 = NULL;
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * V_4 = NULL;
bool V_5 = false;
int32_t V_6 = 0;
RuntimeObject * V_7 = NULL;
Type_t * V_8 = NULL;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_9 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_10 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_11 = NULL;
int32_t V_12 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
int32_t G_B32_0 = 0;
{
RuntimeObject * L_0 = ___instance0;
if (!L_0)
{
goto IL_0052;
}
}
{
Type_t * L_1 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_2 = TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B(L_1, /*hidden argument*/NULL);
Type_t * L_3 = ___editorBaseType1;
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_4 = ReflectedTypeData_GetEditorAttribute_m0E1FCE2A7D4A6FF4E6B129F6D938A31DCC475E7A(L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
RuntimeObject * L_5 = ___instance0;
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_6 = TypeDescriptor_GetAttributes_m0325F763D0AA6354E3F7859E15FF7BE3A8D5F3D3(L_5, /*hidden argument*/NULL);
Type_t * L_7 = ___editorBaseType1;
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_8 = ReflectedTypeData_GetEditorAttribute_m0E1FCE2A7D4A6FF4E6B129F6D938A31DCC475E7A(L_6, L_7, /*hidden argument*/NULL);
V_2 = L_8;
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_9 = V_0;
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_10 = V_2;
if ((((RuntimeObject*)(EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 *)L_9) == ((RuntimeObject*)(EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 *)L_10)))
{
goto IL_0052;
}
}
{
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_11 = V_2;
NullCheck(L_11);
String_t* L_12 = EditorAttribute_get_EditorTypeName_m0C6CD2A9C2905C7E774825F77B26BF6D842C6090_inline(L_11, /*hidden argument*/NULL);
Type_t * L_13 = ReflectedTypeData_GetTypeFromName_m9E59CF61CA7CAC4E47B9736F36891FCB2E325D27(__this, L_12, /*hidden argument*/NULL);
V_3 = L_13;
Type_t * L_14 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_15 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_14, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0052;
}
}
{
Type_t * L_16 = ___editorBaseType1;
Type_t * L_17 = V_3;
NullCheck(L_16);
bool L_18 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_16, L_17);
if (!L_18)
{
goto IL_0052;
}
}
{
Type_t * L_19 = V_3;
Type_t * L_20 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_21 = ReflectTypeDescriptionProvider_CreateInstance_m1A50E07E2455EA23FDE96B06EFD81DCA451025D4(L_19, L_20, /*hidden argument*/NULL);
return L_21;
}
IL_0052:
{
V_4 = __this;
V_5 = (bool)0;
}
IL_0058:
try
{ // begin try (depth: 1)
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_22 = V_4;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_22, (bool*)(&V_5), /*hidden argument*/NULL);
V_6 = 0;
goto IL_008d;
}
IL_0066:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = __this->get__editorTypes_6();
int32_t L_24 = V_6;
NullCheck(L_23);
int32_t L_25 = L_24;
Type_t * L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
Type_t * L_27 = ___editorBaseType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_28 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_26, L_27, /*hidden argument*/NULL);
if (!L_28)
{
goto IL_0087;
}
}
IL_0077:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = __this->get__editors_5();
int32_t L_30 = V_6;
NullCheck(L_29);
int32_t L_31 = L_30;
RuntimeObject * L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_7 = L_32;
IL2CPP_LEAVE(0x1D9, FINALLY_0099);
}
IL_0087:
{
int32_t L_33 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
}
IL_008d:
{
int32_t L_34 = V_6;
int32_t L_35 = __this->get__editorCount_7();
if ((((int32_t)L_34) < ((int32_t)L_35)))
{
goto IL_0066;
}
}
IL_0097:
{
IL2CPP_LEAVE(0xA5, FINALLY_0099);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0099;
}
FINALLY_0099:
{ // begin finally (depth: 1)
{
bool L_36 = V_5;
if (!L_36)
{
goto IL_00a4;
}
}
IL_009d:
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_37 = V_4;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_37, /*hidden argument*/NULL);
}
IL_00a4:
{
IL2CPP_END_FINALLY(153)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(153)
{
IL2CPP_JUMP_TBL(0x1D9, IL_01d9)
IL2CPP_JUMP_TBL(0xA5, IL_00a5)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00a5:
{
V_1 = NULL;
Type_t * L_38 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_39 = TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B(L_38, /*hidden argument*/NULL);
Type_t * L_40 = ___editorBaseType1;
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_41 = ReflectedTypeData_GetEditorAttribute_m0E1FCE2A7D4A6FF4E6B129F6D938A31DCC475E7A(L_39, L_40, /*hidden argument*/NULL);
V_0 = L_41;
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_42 = V_0;
if (!L_42)
{
goto IL_00ec;
}
}
{
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_43 = V_0;
NullCheck(L_43);
String_t* L_44 = EditorAttribute_get_EditorTypeName_m0C6CD2A9C2905C7E774825F77B26BF6D842C6090_inline(L_43, /*hidden argument*/NULL);
Type_t * L_45 = ReflectedTypeData_GetTypeFromName_m9E59CF61CA7CAC4E47B9736F36891FCB2E325D27(__this, L_44, /*hidden argument*/NULL);
V_8 = L_45;
Type_t * L_46 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_47 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_46, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_47)
{
goto IL_00ec;
}
}
{
Type_t * L_48 = ___editorBaseType1;
Type_t * L_49 = V_8;
NullCheck(L_48);
bool L_50 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_48, L_49);
if (!L_50)
{
goto IL_00ec;
}
}
{
Type_t * L_51 = V_8;
Type_t * L_52 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_53 = ReflectTypeDescriptionProvider_CreateInstance_m1A50E07E2455EA23FDE96B06EFD81DCA451025D4(L_51, L_52, /*hidden argument*/NULL);
V_1 = L_53;
}
IL_00ec:
{
RuntimeObject * L_54 = V_1;
if (L_54)
{
goto IL_0117;
}
}
{
Type_t * L_55 = ___editorBaseType1;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_56 = ReflectTypeDescriptionProvider_GetEditorTable_mA1A47B11840415F81A04510F88B5CB225085ED21(L_55, /*hidden argument*/NULL);
V_9 = L_56;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_57 = V_9;
if (!L_57)
{
goto IL_0109;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_58 = V_9;
Type_t * L_59 = __this->get__type_0();
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
RuntimeObject * L_60 = ReflectTypeDescriptionProvider_SearchIntrinsicTable_mD70A9E795A2A1411479E8BB0ACE34604726C9D82(L_58, L_59, /*hidden argument*/NULL);
V_1 = L_60;
}
IL_0109:
{
RuntimeObject * L_61 = V_1;
if (!L_61)
{
goto IL_0117;
}
}
{
Type_t * L_62 = ___editorBaseType1;
RuntimeObject * L_63 = V_1;
NullCheck(L_62);
bool L_64 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(138 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_62, L_63);
if (L_64)
{
goto IL_0117;
}
}
{
V_1 = NULL;
}
IL_0117:
{
RuntimeObject * L_65 = V_1;
if (!L_65)
{
goto IL_01d7;
}
}
{
V_4 = __this;
V_5 = (bool)0;
}
IL_0123:
try
{ // begin try (depth: 1)
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_66 = V_4;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_66, (bool*)(&V_5), /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_67 = __this->get__editorTypes_6();
if (!L_67)
{
goto IL_0147;
}
}
IL_0134:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_68 = __this->get__editorTypes_6();
NullCheck(L_68);
int32_t L_69 = __this->get__editorCount_7();
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_68)->max_length))))) == ((uint32_t)L_69))))
{
goto IL_01c9;
}
}
IL_0147:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_70 = __this->get__editorTypes_6();
if (!L_70)
{
goto IL_015b;
}
}
IL_014f:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_71 = __this->get__editorTypes_6();
NullCheck(L_71);
G_B32_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_71)->max_length)))), (int32_t)2));
goto IL_015c;
}
IL_015b:
{
G_B32_0 = 4;
}
IL_015c:
{
int32_t L_72 = G_B32_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_73 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)L_72);
V_10 = L_73;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_74 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_72);
V_11 = L_74;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_75 = __this->get__editorTypes_6();
if (!L_75)
{
goto IL_018f;
}
}
IL_0173:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_76 = __this->get__editorTypes_6();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_77 = V_10;
NullCheck((RuntimeArray *)(RuntimeArray *)L_76);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_76, (RuntimeArray *)(RuntimeArray *)L_77, 0, /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_78 = __this->get__editors_5();
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_79 = V_11;
NullCheck((RuntimeArray *)(RuntimeArray *)L_78);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_78, (RuntimeArray *)(RuntimeArray *)L_79, 0, /*hidden argument*/NULL);
}
IL_018f:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_80 = V_10;
__this->set__editorTypes_6(L_80);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_81 = V_11;
__this->set__editors_5(L_81);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_82 = __this->get__editorTypes_6();
int32_t L_83 = __this->get__editorCount_7();
Type_t * L_84 = ___editorBaseType1;
NullCheck(L_82);
ArrayElementTypeCheck (L_82, L_84);
(L_82)->SetAt(static_cast<il2cpp_array_size_t>(L_83), (Type_t *)L_84);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_85 = __this->get__editors_5();
int32_t L_86 = __this->get__editorCount_7();
V_12 = L_86;
int32_t L_87 = V_12;
__this->set__editorCount_7(((int32_t)il2cpp_codegen_add((int32_t)L_87, (int32_t)1)));
int32_t L_88 = V_12;
RuntimeObject * L_89 = V_1;
NullCheck(L_85);
ArrayElementTypeCheck (L_85, L_89);
(L_85)->SetAt(static_cast<il2cpp_array_size_t>(L_88), (RuntimeObject *)L_89);
}
IL_01c9:
{
IL2CPP_LEAVE(0x1D7, FINALLY_01cb);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_01cb;
}
FINALLY_01cb:
{ // begin finally (depth: 1)
{
bool L_90 = V_5;
if (!L_90)
{
goto IL_01d6;
}
}
IL_01cf:
{
ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * L_91 = V_4;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_91, /*hidden argument*/NULL);
}
IL_01d6:
{
IL2CPP_END_FINALLY(459)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(459)
{
IL2CPP_JUMP_TBL(0x1D7, IL_01d7)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01d7:
{
RuntimeObject * L_92 = V_1;
return L_92;
}
IL_01d9:
{
RuntimeObject * L_93 = V_7;
return L_93;
}
}
// System.ComponentModel.EditorAttribute System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::GetEditorAttribute(System.ComponentModel.AttributeCollection,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * ReflectedTypeData_GetEditorAttribute_m0E1FCE2A7D4A6FF4E6B129F6D938A31DCC475E7A (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___attributes0, Type_t * ___editorBaseType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectedTypeData_GetEditorAttribute_m0E1FCE2A7D4A6FF4E6B129F6D938A31DCC475E7A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * V_1 = NULL;
Type_t * V_2 = NULL;
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * V_3 = NULL;
RuntimeObject* V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = ___attributes0;
NullCheck(L_0);
RuntimeObject* L_1 = AttributeCollection_GetEnumerator_m0A6B7803DAA1D559DF91BB18D0230F449A036DCB(L_0, /*hidden argument*/NULL);
V_0 = L_1;
}
IL_0007:
try
{ // begin try (depth: 1)
{
goto IL_003f;
}
IL_0009:
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_2);
V_1 = ((EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 *)IsInstSealed((RuntimeObject*)((Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)CastclassClass((RuntimeObject*)L_3, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_il2cpp_TypeInfo_var)), EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5_il2cpp_TypeInfo_var));
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_4 = V_1;
if (!L_4)
{
goto IL_003f;
}
}
IL_001d:
{
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_5 = V_1;
NullCheck(L_5);
String_t* L_6 = EditorAttribute_get_EditorBaseTypeName_m41C1E4DD17CF8A2C14A8C8A8E783687FF2C241D1_inline(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_6, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
V_2 = L_7;
Type_t * L_8 = V_2;
bool L_9 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_8, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_003f;
}
}
IL_0032:
{
Type_t * L_10 = V_2;
Type_t * L_11 = ___editorBaseType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_12 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_10, L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_003f;
}
}
IL_003b:
{
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_13 = V_1;
V_3 = L_13;
IL2CPP_LEAVE(0x5F, FINALLY_0049);
}
IL_003f:
{
RuntimeObject* L_14 = V_0;
NullCheck(L_14);
bool L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_14);
if (L_15)
{
goto IL_0009;
}
}
IL_0047:
{
IL2CPP_LEAVE(0x5D, FINALLY_0049);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0049;
}
FINALLY_0049:
{ // begin finally (depth: 1)
{
RuntimeObject* L_16 = V_0;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_17 = V_4;
if (!L_17)
{
goto IL_005c;
}
}
IL_0055:
{
RuntimeObject* L_18 = V_4;
NullCheck(L_18);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_18);
}
IL_005c:
{
IL2CPP_END_FINALLY(73)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(73)
{
IL2CPP_JUMP_TBL(0x5F, IL_005f)
IL2CPP_JUMP_TBL(0x5D, IL_005d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_005d:
{
return (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 *)NULL;
}
IL_005f:
{
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_19 = V_3;
return L_19;
}
}
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::GetEvents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * ReflectedTypeData_GetEvents_m1AA3F18FBA9137AD6D28C5FEA2B525641BAFB7D6 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectedTypeData_GetEvents_m1AA3F18FBA9137AD6D28C5FEA2B525641BAFB7D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* V_0 = NULL;
Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * V_1 = NULL;
Type_t * V_2 = NULL;
Type_t * V_3 = NULL;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* V_4 = NULL;
int32_t V_5 = 0;
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * V_6 = NULL;
{
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_0 = __this->get__events_2();
if (L_0)
{
goto IL_00a6;
}
}
{
Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * L_1 = (Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 *)il2cpp_codegen_object_new(Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m677E022065BF1E72B83C3FE0E35860BEE9D6A845(L_1, ((int32_t)16), /*hidden argument*/Dictionary_2__ctor_m677E022065BF1E72B83C3FE0E35860BEE9D6A845_RuntimeMethod_var);
V_1 = L_1;
Type_t * L_2 = __this->get__type_0();
V_2 = L_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
V_3 = L_4;
}
IL_0025:
{
Type_t * L_5 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_6 = ReflectTypeDescriptionProvider_ReflectGetEvents_m450768FFE6CB456734C6C9C01FAF08EB80BC67D0(L_5, /*hidden argument*/NULL);
V_0 = L_6;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_7 = V_0;
V_4 = L_7;
V_5 = 0;
goto IL_005f;
}
IL_0034:
{
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_8 = V_4;
int32_t L_9 = V_5;
NullCheck(L_8);
int32_t L_10 = L_9;
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
V_6 = L_11;
Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * L_12 = V_1;
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_13 = V_6;
NullCheck(L_13);
String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_13);
NullCheck(L_12);
bool L_15 = Dictionary_2_ContainsKey_m884FAA4910F04B198C6B0BD971350142CF9B7321(L_12, L_14, /*hidden argument*/Dictionary_2_ContainsKey_m884FAA4910F04B198C6B0BD971350142CF9B7321_RuntimeMethod_var);
if (L_15)
{
goto IL_0059;
}
}
{
Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * L_16 = V_1;
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_17 = V_6;
NullCheck(L_17);
String_t* L_18 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_17);
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_19 = V_6;
NullCheck(L_16);
Dictionary_2_Add_m54593B30AF9AE0DF167A91C9EB0DE2EBF0585CA8(L_16, L_18, L_19, /*hidden argument*/Dictionary_2_Add_m54593B30AF9AE0DF167A91C9EB0DE2EBF0585CA8_RuntimeMethod_var);
}
IL_0059:
{
int32_t L_20 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_005f:
{
int32_t L_21 = V_5;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_22 = V_4;
NullCheck(L_22);
if ((((int32_t)L_21) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))))))
{
goto IL_0034;
}
}
{
Type_t * L_23 = V_2;
NullCheck(L_23);
Type_t * L_24 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_23);
V_2 = L_24;
Type_t * L_25 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_26 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_25, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_0080;
}
}
{
Type_t * L_27 = V_2;
Type_t * L_28 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_29 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_27, L_28, /*hidden argument*/NULL);
if (L_29)
{
goto IL_0025;
}
}
IL_0080:
{
Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * L_30 = V_1;
NullCheck(L_30);
int32_t L_31 = Dictionary_2_get_Count_mD459DDC86CEE637B693CF8D067475A1C0BABAC6B(L_30, /*hidden argument*/Dictionary_2_get_Count_mD459DDC86CEE637B693CF8D067475A1C0BABAC6B_RuntimeMethod_var);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_32 = (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)SZArrayNew(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var, (uint32_t)L_31);
V_0 = L_32;
Dictionary_2_tD09B984B5C8F262FC12567CCCF74302B66E16298 * L_33 = V_1;
NullCheck(L_33);
ValueCollection_t976B237C223290DF35F51921D2DE6CF3371B584E * L_34 = Dictionary_2_get_Values_m83EF51F934DEF17DEEB16AE63C4C9E89DE5850AC(L_33, /*hidden argument*/Dictionary_2_get_Values_m83EF51F934DEF17DEEB16AE63C4C9E89DE5850AC_RuntimeMethod_var);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_35 = V_0;
NullCheck(L_34);
ValueCollection_CopyTo_m93F5F0418A24D3024919B502958D9A8F3941D196(L_34, L_35, 0, /*hidden argument*/ValueCollection_CopyTo_m93F5F0418A24D3024919B502958D9A8F3941D196_RuntimeMethod_var);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_36 = V_0;
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_37 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5(L_37, L_36, (bool)1, /*hidden argument*/NULL);
__this->set__events_2(L_37);
}
IL_00a6:
{
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_38 = __this->get__events_2();
return L_38;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::GetProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ReflectedTypeData_GetProperties_mEDCD21FF9DB7D27C3EF7ACC291E12B348AEC7CF5 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectedTypeData_GetProperties_mEDCD21FF9DB7D27C3EF7ACC291E12B348AEC7CF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_0 = NULL;
Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * V_1 = NULL;
Type_t * V_2 = NULL;
Type_t * V_3 = NULL;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_4 = NULL;
int32_t V_5 = 0;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * V_6 = NULL;
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_0 = __this->get__properties_3();
if (L_0)
{
goto IL_00a6;
}
}
{
Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * L_1 = (Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 *)il2cpp_codegen_object_new(Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m24D3A769E17A29BB0F5DDFA3EB5B814D2EE4FEFC(L_1, ((int32_t)10), /*hidden argument*/Dictionary_2__ctor_m24D3A769E17A29BB0F5DDFA3EB5B814D2EE4FEFC_RuntimeMethod_var);
V_1 = L_1;
Type_t * L_2 = __this->get__type_0();
V_2 = L_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
V_3 = L_4;
}
IL_0025:
{
Type_t * L_5 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_6 = ReflectTypeDescriptionProvider_ReflectGetProperties_m0F7F5B7591FEC0B4F26419E559C20E3134F522B6(L_5, /*hidden argument*/NULL);
V_0 = L_6;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_7 = V_0;
V_4 = L_7;
V_5 = 0;
goto IL_005f;
}
IL_0034:
{
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_8 = V_4;
int32_t L_9 = V_5;
NullCheck(L_8);
int32_t L_10 = L_9;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
V_6 = L_11;
Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * L_12 = V_1;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_13 = V_6;
NullCheck(L_13);
String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_13);
NullCheck(L_12);
bool L_15 = Dictionary_2_ContainsKey_m8EE2B265525E3930B7BC2B503CE232A26A4108CD(L_12, L_14, /*hidden argument*/Dictionary_2_ContainsKey_m8EE2B265525E3930B7BC2B503CE232A26A4108CD_RuntimeMethod_var);
if (L_15)
{
goto IL_0059;
}
}
{
Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * L_16 = V_1;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_17 = V_6;
NullCheck(L_17);
String_t* L_18 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_17);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_19 = V_6;
NullCheck(L_16);
Dictionary_2_Add_m8CA97D8A79287AD4B0BA6D9C175DFAA86CBFE699(L_16, L_18, L_19, /*hidden argument*/Dictionary_2_Add_m8CA97D8A79287AD4B0BA6D9C175DFAA86CBFE699_RuntimeMethod_var);
}
IL_0059:
{
int32_t L_20 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_005f:
{
int32_t L_21 = V_5;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_22 = V_4;
NullCheck(L_22);
if ((((int32_t)L_21) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))))))
{
goto IL_0034;
}
}
{
Type_t * L_23 = V_2;
NullCheck(L_23);
Type_t * L_24 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_23);
V_2 = L_24;
Type_t * L_25 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_26 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_25, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_0080;
}
}
{
Type_t * L_27 = V_2;
Type_t * L_28 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_29 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_27, L_28, /*hidden argument*/NULL);
if (L_29)
{
goto IL_0025;
}
}
IL_0080:
{
Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * L_30 = V_1;
NullCheck(L_30);
int32_t L_31 = Dictionary_2_get_Count_mE835AEFCCB352A3F1B68D9900793B66C3E5EAD97(L_30, /*hidden argument*/Dictionary_2_get_Count_mE835AEFCCB352A3F1B68D9900793B66C3E5EAD97_RuntimeMethod_var);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_32 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_31);
V_0 = L_32;
Dictionary_2_t8457086604685AE537D188F769B0D0B76DA337C0 * L_33 = V_1;
NullCheck(L_33);
ValueCollection_t17B58D5C79F5F9EDCB0EDDD82D287A0890B1398C * L_34 = Dictionary_2_get_Values_m8F0EB76F42A5C202CFB98B83BF9FED0CA858572B(L_33, /*hidden argument*/Dictionary_2_get_Values_m8F0EB76F42A5C202CFB98B83BF9FED0CA858572B_RuntimeMethod_var);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_35 = V_0;
NullCheck(L_34);
ValueCollection_CopyTo_mA9C03E1628819B8A1A9D16D0BA29BCD78E252873(L_34, L_35, 0, /*hidden argument*/ValueCollection_CopyTo_mA9C03E1628819B8A1A9D16D0BA29BCD78E252873_RuntimeMethod_var);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_36 = V_0;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_37 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D(L_37, L_36, (bool)1, /*hidden argument*/NULL);
__this->set__properties_3(L_37);
}
IL_00a6:
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_38 = __this->get__properties_3();
return L_38;
}
}
// System.Type System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::GetTypeFromName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectedTypeData_GetTypeFromName_m9E59CF61CA7CAC4E47B9736F36891FCB2E325D27 (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, String_t* ___typeName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReflectedTypeData_GetTypeFromName_m9E59CF61CA7CAC4E47B9736F36891FCB2E325D27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Type_t * V_1 = NULL;
{
String_t* L_0 = ___typeName0;
if (!L_0)
{
goto IL_000b;
}
}
{
String_t* L_1 = ___typeName0;
NullCheck(L_1);
int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_000d;
}
}
IL_000b:
{
return (Type_t *)NULL;
}
IL_000d:
{
String_t* L_3 = ___typeName0;
NullCheck(L_3);
int32_t L_4 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_3, ((int32_t)44), /*hidden argument*/NULL);
V_0 = L_4;
V_1 = (Type_t *)NULL;
int32_t L_5 = V_0;
if ((!(((uint32_t)L_5) == ((uint32_t)(-1)))))
{
goto IL_002e;
}
}
{
Type_t * L_6 = __this->get__type_0();
NullCheck(L_6);
Assembly_t * L_7 = VirtFuncInvoker0< Assembly_t * >::Invoke(27 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_6);
String_t* L_8 = ___typeName0;
NullCheck(L_7);
Type_t * L_9 = VirtFuncInvoker1< Type_t *, String_t* >::Invoke(18 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_7, L_8);
V_1 = L_9;
}
IL_002e:
{
Type_t * L_10 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_11 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_10, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_003e;
}
}
{
String_t* L_12 = ___typeName0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_12, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
V_1 = L_13;
}
IL_003e:
{
Type_t * L_14 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_15 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_14, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0059;
}
}
{
int32_t L_16 = V_0;
if ((((int32_t)L_16) == ((int32_t)(-1))))
{
goto IL_0059;
}
}
{
String_t* L_17 = ___typeName0;
int32_t L_18 = V_0;
NullCheck(L_17);
String_t* L_19 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_17, 0, L_18, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_19, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
V_1 = L_20;
}
IL_0059:
{
Type_t * L_21 = V_1;
return L_21;
}
}
// System.Void System.ComponentModel.ReflectTypeDescriptionProvider_ReflectedTypeData::Refresh()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectedTypeData_Refresh_mA966D08F6AC6693D49DCB60CE3BF23ADBF4DE7BA (ReflectedTypeData_t71CC6CDF94E72051C2A9A5CA4052C16DF8EE0A96 * __this, const RuntimeMethod* method)
{
{
__this->set__attributes_1((AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)NULL);
__this->set__events_2((EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)NULL);
__this->set__properties_3((PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)NULL);
__this->set__converter_4((TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB *)NULL);
__this->set__editors_5((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL);
__this->set__editorTypes_6((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)NULL);
__this->set__editorCount_7(0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.RefreshEventArgs::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefreshEventArgs__ctor_mE6F6B0E8B783784BF676F37DCB9C196E5064928D (RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * __this, RuntimeObject * ___componentChanged0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RefreshEventArgs__ctor_mE6F6B0E8B783784BF676F37DCB9C196E5064928D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___componentChanged0;
__this->set_componentChanged_1(L_0);
RuntimeObject * L_1 = ___componentChanged0;
NullCheck(L_1);
Type_t * L_2 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_1, /*hidden argument*/NULL);
__this->set_typeChanged_2(L_2);
return;
}
}
// System.Void System.ComponentModel.RefreshEventArgs::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefreshEventArgs__ctor_mEC162508026E43A0B4E193163E6ED7D6B682D342 (RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * __this, Type_t * ___typeChanged0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RefreshEventArgs__ctor_mEC162508026E43A0B4E193163E6ED7D6B682D342_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___typeChanged0;
__this->set_typeChanged_2(L_0);
return;
}
}
// System.Object System.ComponentModel.RefreshEventArgs::get_ComponentChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RefreshEventArgs_get_ComponentChanged_m9A8197C60E1A815316C6DA99D6687B61C6F5180D (RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_componentChanged_1();
return L_0;
}
}
// System.Type System.ComponentModel.RefreshEventArgs::get_TypeChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * RefreshEventArgs_get_TypeChanged_m7403379E7C546D6D54A04D99748632C6D9337EEB (RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_typeChanged_2();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.RefreshEventHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefreshEventHandler__ctor_m37CAC58BA1E426C888118B568F540D5FA6E4E9CC (RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.ComponentModel.RefreshEventHandler::Invoke(System.ComponentModel.RefreshEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefreshEventHandler_Invoke_mF3ADA58FAFE8E56B53F99B9717A4D3E252575FF5 (RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * __this, RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * ___e0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___e0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___e0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker0::Invoke(targetMethod, ___e0);
else
GenericVirtActionInvoker0::Invoke(targetMethod, ___e0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___e0);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___e0);
}
}
else
{
typedef void (*FunctionPointerType) (RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___e0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * >::Invoke(targetMethod, targetThis, ___e0);
else
GenericVirtActionInvoker1< RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * >::Invoke(targetMethod, targetThis, ___e0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___e0);
else
VirtActionInvoker1< RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___e0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___e0) - 1), targetMethod);
}
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___e0, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___e0, targetMethod);
}
}
}
}
}
// System.IAsyncResult System.ComponentModel.RefreshEventHandler::BeginInvoke(System.ComponentModel.RefreshEventArgs,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RefreshEventHandler_BeginInvoke_m21258C5F768FBD9949B49F95A574B80981515AFF (RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * __this, RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * ___e0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___e0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.ComponentModel.RefreshEventHandler::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefreshEventHandler_EndInvoke_mAF60D2A0CC7D45F8AFD1C1135EA3DF225545C030 (RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.RefreshPropertiesAttribute::.ctor(System.ComponentModel.RefreshProperties)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefreshPropertiesAttribute__ctor_mB8898704CFA83ADA63413C57A6705F4A96E096BA (RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * __this, int32_t ___refresh0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___refresh0;
__this->set_refresh_3(L_0);
return;
}
}
// System.ComponentModel.RefreshProperties System.ComponentModel.RefreshPropertiesAttribute::get_RefreshProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RefreshPropertiesAttribute_get_RefreshProperties_m032066929987C4135416100E001053C6E2EC76A6 (RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_refresh_3();
return L_0;
}
}
// System.Boolean System.ComponentModel.RefreshPropertiesAttribute::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RefreshPropertiesAttribute_Equals_mD4A517842BBDF8790433BB98C874C7CA6F6229B2 (RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RefreshPropertiesAttribute_Equals_mD4A517842BBDF8790433BB98C874C7CA6F6229B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (!((RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 *)IsInstSealed((RuntimeObject*)L_0, RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var)))
{
goto IL_001c;
}
}
{
RuntimeObject * L_1 = ___value0;
NullCheck(((RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 *)CastclassSealed((RuntimeObject*)L_1, RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var)));
int32_t L_2 = RefreshPropertiesAttribute_get_RefreshProperties_m032066929987C4135416100E001053C6E2EC76A6_inline(((RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 *)CastclassSealed((RuntimeObject*)L_1, RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
int32_t L_3 = __this->get_refresh_3();
return (bool)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0);
}
IL_001c:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.RefreshPropertiesAttribute::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RefreshPropertiesAttribute_GetHashCode_mA1990A0FB1BA84FC64070C9265D8F5531EB90154 (RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean System.ComponentModel.RefreshPropertiesAttribute::IsDefaultAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RefreshPropertiesAttribute_IsDefaultAttribute_mB541CF71C997B4F977BC4E3FDFD590852D6A21DF (RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RefreshPropertiesAttribute_IsDefaultAttribute_mB541CF71C997B4F977BC4E3FDFD590852D6A21DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var);
RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * L_0 = ((RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_StaticFields*)il2cpp_codegen_static_fields_for(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var))->get_Default_2();
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
return L_1;
}
}
// System.Void System.ComponentModel.RefreshPropertiesAttribute::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefreshPropertiesAttribute__cctor_mEE041F46103289862182B245DE9BFC8FF634D5DE (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RefreshPropertiesAttribute__cctor_mEE041F46103289862182B245DE9BFC8FF634D5DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * L_0 = (RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 *)il2cpp_codegen_object_new(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var);
RefreshPropertiesAttribute__ctor_mB8898704CFA83ADA63413C57A6705F4A96E096BA(L_0, 1, /*hidden argument*/NULL);
((RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_StaticFields*)il2cpp_codegen_static_fields_for(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var))->set_All_0(L_0);
RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * L_1 = (RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 *)il2cpp_codegen_object_new(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var);
RefreshPropertiesAttribute__ctor_mB8898704CFA83ADA63413C57A6705F4A96E096BA(L_1, 2, /*hidden argument*/NULL);
((RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_StaticFields*)il2cpp_codegen_static_fields_for(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var))->set_Repaint_1(L_1);
RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * L_2 = (RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 *)il2cpp_codegen_object_new(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var);
RefreshPropertiesAttribute__ctor_mB8898704CFA83ADA63413C57A6705F4A96E096BA(L_2, 0, /*hidden argument*/NULL);
((RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_StaticFields*)il2cpp_codegen_static_fields_for(RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1_il2cpp_TypeInfo_var))->set_Default_2(L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.RunInstallerAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RunInstallerAttribute__ctor_m41778ECD6304CBF0F34B09816CFA283A7B1E48F2 (RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * __this, bool ___runInstaller0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
bool L_0 = ___runInstaller0;
__this->set_runInstaller_0(L_0);
return;
}
}
// System.Boolean System.ComponentModel.RunInstallerAttribute::get_RunInstaller()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RunInstallerAttribute_get_RunInstaller_m29805E321147B984D5A79337CEE0882E99706EF9 (RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_runInstaller_0();
return L_0;
}
}
// System.Boolean System.ComponentModel.RunInstallerAttribute::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RunInstallerAttribute_Equals_m0711E9CBFD9720377364CC0E0CB932A20AF9A894 (RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RunInstallerAttribute_Equals_m0711E9CBFD9720377364CC0E0CB932A20AF9A894_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 *)__this))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 *)IsInstClass((RuntimeObject*)L_1, RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_il2cpp_TypeInfo_var));
RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * L_2 = V_0;
if (!L_2)
{
goto IL_001f;
}
}
{
RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * L_3 = V_0;
NullCheck(L_3);
bool L_4 = RunInstallerAttribute_get_RunInstaller_m29805E321147B984D5A79337CEE0882E99706EF9_inline(L_3, /*hidden argument*/NULL);
bool L_5 = __this->get_runInstaller_0();
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
}
IL_001f:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.RunInstallerAttribute::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RunInstallerAttribute_GetHashCode_m8390F9B9591087F9CA3180075B65403A62B1327F (RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean System.ComponentModel.RunInstallerAttribute::IsDefaultAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RunInstallerAttribute_IsDefaultAttribute_mA14418E89F9E93128E5C4C0D70D80A238362563A (RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RunInstallerAttribute_IsDefaultAttribute_mA14418E89F9E93128E5C4C0D70D80A238362563A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_il2cpp_TypeInfo_var);
RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * L_0 = ((RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_StaticFields*)il2cpp_codegen_static_fields_for(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_il2cpp_TypeInfo_var))->get_Default_3();
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
return L_1;
}
}
// System.Void System.ComponentModel.RunInstallerAttribute::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RunInstallerAttribute__cctor_m470CB7AD2244C5652D63B03A7A8939EE1326AAD6 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RunInstallerAttribute__cctor_m470CB7AD2244C5652D63B03A7A8939EE1326AAD6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * L_0 = (RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 *)il2cpp_codegen_object_new(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_il2cpp_TypeInfo_var);
RunInstallerAttribute__ctor_m41778ECD6304CBF0F34B09816CFA283A7B1E48F2(L_0, (bool)1, /*hidden argument*/NULL);
((RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_StaticFields*)il2cpp_codegen_static_fields_for(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_il2cpp_TypeInfo_var))->set_Yes_1(L_0);
RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * L_1 = (RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 *)il2cpp_codegen_object_new(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_il2cpp_TypeInfo_var);
RunInstallerAttribute__ctor_m41778ECD6304CBF0F34B09816CFA283A7B1E48F2(L_1, (bool)0, /*hidden argument*/NULL);
((RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_StaticFields*)il2cpp_codegen_static_fields_for(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_il2cpp_TypeInfo_var))->set_No_2(L_1);
RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * L_2 = ((RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_StaticFields*)il2cpp_codegen_static_fields_for(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_il2cpp_TypeInfo_var))->get_No_2();
((RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_StaticFields*)il2cpp_codegen_static_fields_for(RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3_il2cpp_TypeInfo_var))->set_Default_3(L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.RunWorkerCompletedEventArgs::.ctor(System.Object,System.Exception,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RunWorkerCompletedEventArgs__ctor_m047A43C3DA850114782D2924E20C6D934E76D475 (RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * __this, RuntimeObject * ___result0, Exception_t * ___error1, bool ___cancelled2, const RuntimeMethod* method)
{
{
Exception_t * L_0 = ___error1;
bool L_1 = ___cancelled2;
AsyncCompletedEventArgs__ctor_mD64D20EE7FE25F4DC11F08465BADD6803074DAF0(__this, L_0, L_1, NULL, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___result0;
__this->set_result_4(L_2);
return;
}
}
// System.Object System.ComponentModel.RunWorkerCompletedEventArgs::get_Result()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RunWorkerCompletedEventArgs_get_Result_m51FED0F830AB3C88EC3DA67C370ED349DBC21481 (RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * __this, const RuntimeMethod* method)
{
{
AsyncCompletedEventArgs_RaiseExceptionIfNecessary_mC030DA14DA50122BAB8A7BEBFE6507C42A15121E(__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = __this->get_result_4();
return L_0;
}
}
// System.Object System.ComponentModel.RunWorkerCompletedEventArgs::get_UserState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RunWorkerCompletedEventArgs_get_UserState_m702F7ABDEBDB0804D19EDA9AEAA27B6E56110610 (RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = AsyncCompletedEventArgs_get_UserState_mD4969188EBD6FB528946BA46B875A0CD619FC240_inline(__this, /*hidden argument*/NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.RunWorkerCompletedEventHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RunWorkerCompletedEventHandler__ctor_m9664F470737B330C0375F1B21FC0FE5A004CB93A (RunWorkerCompletedEventHandler_t8E766853412F70C3B8826718D59377F7F464BCAB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.ComponentModel.RunWorkerCompletedEventHandler::Invoke(System.Object,System.ComponentModel.RunWorkerCompletedEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RunWorkerCompletedEventHandler_Invoke_m6552D1B77B4E418ADDED315E431FB2E7A1965FEC (RunWorkerCompletedEventHandler_t8E766853412F70C3B8826718D59377F7F464BCAB * __this, RuntimeObject * ___sender0, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * ___e1, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 2)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * >::Invoke(targetMethod, ___sender0, ___e1);
else
GenericVirtActionInvoker1< RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * >::Invoke(targetMethod, ___sender0, ___e1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1);
else
VirtActionInvoker1< RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___e1) - 1), targetMethod);
}
typedef void (*FunctionPointerType) (RuntimeObject *, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
else
GenericVirtActionInvoker2< RuntimeObject *, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1);
else
VirtActionInvoker2< RuntimeObject *, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___sender0) - 1), ___e1, targetMethod);
}
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
}
}
}
}
}
// System.IAsyncResult System.ComponentModel.RunWorkerCompletedEventHandler::BeginInvoke(System.Object,System.ComponentModel.RunWorkerCompletedEventArgs,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RunWorkerCompletedEventHandler_BeginInvoke_m4C675BB80927FD9BA51A1CDB53437A3964F0B441 (RunWorkerCompletedEventHandler_t8E766853412F70C3B8826718D59377F7F464BCAB * __this, RuntimeObject * ___sender0, RunWorkerCompletedEventArgs_tFAFA9B2ED339BE1F33AF8845D46A251EB5C6950D * ___e1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___sender0;
__d_args[1] = ___e1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void System.ComponentModel.RunWorkerCompletedEventHandler::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RunWorkerCompletedEventHandler_EndInvoke_m166F83DD37FD1466310F641DA972AC6A7AF7FE52 (RunWorkerCompletedEventHandler_t8E766853412F70C3B8826718D59377F7F464BCAB * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type System.ComponentModel.SByteConverter::get_TargetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * SByteConverter_get_TargetType_m034BBA889EAAC775483117120F159E328D1260D6 (SByteConverter_t99F8032C93CF0F34D8C8BB8AA744D39E794AA4B7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SByteConverter_get_TargetType_m034BBA889EAAC775483117120F159E328D1260D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Object System.ComponentModel.SByteConverter::FromString(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SByteConverter_FromString_m0AE243DE3D62BE5B4D6B5902412E59B6F2B4C6B4 (SByteConverter_t99F8032C93CF0F34D8C8BB8AA744D39E794AA4B7 * __this, String_t* ___value0, int32_t ___radix1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SByteConverter_FromString_m0AE243DE3D62BE5B4D6B5902412E59B6F2B4C6B4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
int32_t L_1 = ___radix1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int8_t L_2 = Convert_ToSByte_m0A9377CF6805CB69E383B55AE48ECBA8FCA52A57(L_0, L_1, /*hidden argument*/NULL);
int8_t L_3 = L_2;
RuntimeObject * L_4 = Box(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var, &L_3);
return L_4;
}
}
// System.Object System.ComponentModel.SByteConverter::FromString(System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SByteConverter_FromString_mE18AD8A52E1E48B186DE67EAE676B20B29C69DD3 (SByteConverter_t99F8032C93CF0F34D8C8BB8AA744D39E794AA4B7 * __this, String_t* ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SByteConverter_FromString_mE18AD8A52E1E48B186DE67EAE676B20B29C69DD3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
int8_t L_2 = SByte_Parse_m3CCD04AED0DC62F729DFA2FF45DA1E4C8BACDD60(L_0, 7, L_1, /*hidden argument*/NULL);
int8_t L_3 = L_2;
RuntimeObject * L_4 = Box(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var, &L_3);
return L_4;
}
}
// System.Object System.ComponentModel.SByteConverter::FromString(System.String,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SByteConverter_FromString_m7B5EE08AE984C1211B9647C245A9DB220C867467 (SByteConverter_t99F8032C93CF0F34D8C8BB8AA744D39E794AA4B7 * __this, String_t* ___value0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SByteConverter_FromString_m7B5EE08AE984C1211B9647C245A9DB220C867467_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___culture1;
int8_t L_2 = SByte_Parse_m463EDECF23E836076D4EAD9C267759FCED4E9A9A(L_0, L_1, /*hidden argument*/NULL);
int8_t L_3 = L_2;
RuntimeObject * L_4 = Box(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var, &L_3);
return L_4;
}
}
// System.String System.ComponentModel.SByteConverter::ToString(System.Object,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SByteConverter_ToString_m7DFD79BF472530D27DE2EFA08023C39AEF3EE048 (SByteConverter_t99F8032C93CF0F34D8C8BB8AA744D39E794AA4B7 * __this, RuntimeObject * ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SByteConverter_ToString_m7DFD79BF472530D27DE2EFA08023C39AEF3EE048_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int8_t V_0 = 0x0;
{
RuntimeObject * L_0 = ___value0;
V_0 = ((*(int8_t*)((int8_t*)UnBox(L_0, SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var))));
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
String_t* L_2 = SByte_ToString_mAD063E83F82B38DAAA379DF61C14D563588034D1((int8_t*)(&V_0), _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void System.ComponentModel.SByteConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteConverter__ctor_mA13FB10F00F75128F2A56113A5AEDEA2EDFB0826 (SByteConverter_t99F8032C93CF0F34D8C8BB8AA744D39E794AA4B7 * __this, const RuntimeMethod* method)
{
{
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.SRCategoryAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SRCategoryAttribute__ctor_mABBAFE0492B21EE3B7229C798F7BEA64B3ECBC91 (SRCategoryAttribute_t1C136A51E836D96E811610B3BB0ADFE784A7CF65 * __this, String_t* ___category0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___category0;
CategoryAttribute__ctor_mB1EB6F11D7491FD35988FEEA176310D268DF9398(__this, L_0, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.SettingsBindableAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SettingsBindableAttribute__ctor_m575E03D8661163D53C56D20F5EC65157305929AF (SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * __this, bool ___bindable0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
bool L_0 = ___bindable0;
__this->set__bindable_2(L_0);
return;
}
}
// System.Boolean System.ComponentModel.SettingsBindableAttribute::get_Bindable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SettingsBindableAttribute_get_Bindable_m5BAAD91FCA8DE2EF3ACCEBB8B7C1419A1A4F820D (SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__bindable_2();
return L_0;
}
}
// System.Boolean System.ComponentModel.SettingsBindableAttribute::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SettingsBindableAttribute_Equals_m9E8FB04B837842F0EBC1AF051523DBB710DEB085 (SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SettingsBindableAttribute_Equals_m9E8FB04B837842F0EBC1AF051523DBB710DEB085_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 *)__this))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject * L_1 = ___obj0;
if (!L_1)
{
goto IL_0025;
}
}
{
RuntimeObject * L_2 = ___obj0;
if (!((SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 *)IsInstSealed((RuntimeObject*)L_2, SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_il2cpp_TypeInfo_var)))
{
goto IL_0025;
}
}
{
RuntimeObject * L_3 = ___obj0;
NullCheck(((SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 *)CastclassSealed((RuntimeObject*)L_3, SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_il2cpp_TypeInfo_var)));
bool L_4 = SettingsBindableAttribute_get_Bindable_m5BAAD91FCA8DE2EF3ACCEBB8B7C1419A1A4F820D_inline(((SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 *)CastclassSealed((RuntimeObject*)L_3, SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
bool L_5 = __this->get__bindable_2();
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
}
IL_0025:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.SettingsBindableAttribute::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SettingsBindableAttribute_GetHashCode_m37797359DB640298C7C8944FAB0B8C3A74F6E86C (SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * __this, const RuntimeMethod* method)
{
{
bool* L_0 = __this->get_address_of__bindable_2();
int32_t L_1 = Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737((bool*)L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void System.ComponentModel.SettingsBindableAttribute::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SettingsBindableAttribute__cctor_m0778E972EB351189AF9CF1D74B712DD257AD885F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SettingsBindableAttribute__cctor_m0778E972EB351189AF9CF1D74B712DD257AD885F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * L_0 = (SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 *)il2cpp_codegen_object_new(SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_il2cpp_TypeInfo_var);
SettingsBindableAttribute__ctor_m575E03D8661163D53C56D20F5EC65157305929AF(L_0, (bool)1, /*hidden argument*/NULL);
((SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_StaticFields*)il2cpp_codegen_static_fields_for(SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_il2cpp_TypeInfo_var))->set_Yes_0(L_0);
SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * L_1 = (SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 *)il2cpp_codegen_object_new(SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_il2cpp_TypeInfo_var);
SettingsBindableAttribute__ctor_m575E03D8661163D53C56D20F5EC65157305929AF(L_1, (bool)0, /*hidden argument*/NULL);
((SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_StaticFields*)il2cpp_codegen_static_fields_for(SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664_il2cpp_TypeInfo_var))->set_No_1(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.ComponentModel.SingleConverter::get_AllowHex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SingleConverter_get_AllowHex_m9A8EC29BC10782CF9BC2E9C526B1F958876DDA43 (SingleConverter_t86A24FBD46D753B99344470E9566584F15538902 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Type System.ComponentModel.SingleConverter::get_TargetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * SingleConverter_get_TargetType_mEE841A77D0642D07A7978A8A871FD73DD57EB7DF (SingleConverter_t86A24FBD46D753B99344470E9566584F15538902 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SingleConverter_get_TargetType_mEE841A77D0642D07A7978A8A871FD73DD57EB7DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Object System.ComponentModel.SingleConverter::FromString(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SingleConverter_FromString_mAE00A2E4F24907D0666B2C4B62833289E96FDE8C (SingleConverter_t86A24FBD46D753B99344470E9566584F15538902 * __this, String_t* ___value0, int32_t ___radix1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SingleConverter_FromString_mAE00A2E4F24907D0666B2C4B62833289E96FDE8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
float L_2 = Convert_ToSingle_m5F3E5F42FE95CB24ADF3164009FF7136DB1CE888(L_0, L_1, /*hidden argument*/NULL);
float L_3 = L_2;
RuntimeObject * L_4 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_3);
return L_4;
}
}
// System.Object System.ComponentModel.SingleConverter::FromString(System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SingleConverter_FromString_mAB67D8A4BDEAC852EA4060FCE6F69C40F48E13DB (SingleConverter_t86A24FBD46D753B99344470E9566584F15538902 * __this, String_t* ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SingleConverter_FromString_mAB67D8A4BDEAC852EA4060FCE6F69C40F48E13DB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
float L_2 = Single_Parse_m6D591682F5EF2ED4D1CEADF65728E965A739AE74(L_0, ((int32_t)167), L_1, /*hidden argument*/NULL);
float L_3 = L_2;
RuntimeObject * L_4 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_3);
return L_4;
}
}
// System.Object System.ComponentModel.SingleConverter::FromString(System.String,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SingleConverter_FromString_mCE7472435CF8E8DF01D4B286AFFF545393E10E28 (SingleConverter_t86A24FBD46D753B99344470E9566584F15538902 * __this, String_t* ___value0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SingleConverter_FromString_mCE7472435CF8E8DF01D4B286AFFF545393E10E28_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___culture1;
float L_2 = Single_Parse_m341EA42F7782B136FA7335771DA3C6C96AF6BD86(L_0, L_1, /*hidden argument*/NULL);
float L_3 = L_2;
RuntimeObject * L_4 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_3);
return L_4;
}
}
// System.String System.ComponentModel.SingleConverter::ToString(System.Object,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SingleConverter_ToString_m5002E1C3937CECC3094583349B9EF72474524583 (SingleConverter_t86A24FBD46D753B99344470E9566584F15538902 * __this, RuntimeObject * ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SingleConverter_ToString_m5002E1C3937CECC3094583349B9EF72474524583_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
{
RuntimeObject * L_0 = ___value0;
V_0 = ((*(float*)((float*)UnBox(L_0, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var))));
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
String_t* L_2 = Single_ToString_mCF682C2751EC9B98F1CE5455066B92D7D3356756((float*)(&V_0), _stringLiteral06576556D1AD802F247CAD11AE748BE47B70CD9C, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void System.ComponentModel.SingleConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleConverter__ctor_m8EA7D412C3EE9A9522E7592774DD46EBC6118AA8 (SingleConverter_t86A24FBD46D753B99344470E9566584F15538902 * __this, const RuntimeMethod* method)
{
{
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.ComponentModel.StringConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringConverter_CanConvertFrom_m50224B731176E5B25E43B35F74C0D1EA0859EC81 (StringConverter_t054FA0796F4C8E951208AFA052D99BCB8E68BED7 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringConverter_CanConvertFrom_m50224B731176E5B25E43B35F74C0D1EA0859EC81_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___sourceType1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0014;
}
}
{
return (bool)1;
}
IL_0014:
{
RuntimeObject* L_4 = ___context0;
Type_t * L_5 = ___sourceType1;
bool L_6 = TypeConverter_CanConvertFrom_m8E1F9E41B7DEE6A032EAC70130ADC6356C3F227D(__this, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Object System.ComponentModel.StringConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StringConverter_ConvertFrom_mC11C90F2FD2BD033AEA354185DC892D951FA5005 (StringConverter_t054FA0796F4C8E951208AFA052D99BCB8E68BED7 * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringConverter_ConvertFrom_mC11C90F2FD2BD033AEA354185DC892D951FA5005_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value2;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)))
{
goto IL_000f;
}
}
{
RuntimeObject * L_1 = ___value2;
return ((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
}
IL_000f:
{
RuntimeObject * L_2 = ___value2;
if (L_2)
{
goto IL_0018;
}
}
{
return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
}
IL_0018:
{
RuntimeObject* L_3 = ___context0;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = ___culture1;
RuntimeObject * L_5 = ___value2;
RuntimeObject * L_6 = TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3(__this, L_3, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Void System.ComponentModel.StringConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringConverter__ctor_m2718AC00691AF4A3AF8A8D64896BE3B5D58658B2 (StringConverter_t054FA0796F4C8E951208AFA052D99BCB8E68BED7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringConverter__ctor_m2718AC00691AF4A3AF8A8D64896BE3B5D58658B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.ComponentModel.SyntaxCheck::CheckMachineName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SyntaxCheck_CheckMachineName_mBBC300169F51CB046FC35BFE6CDAF1DA99411230 (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyntaxCheck_CheckMachineName_mBBC300169F51CB046FC35BFE6CDAF1DA99411230_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
String_t* L_1 = ___value0;
NullCheck(L_1);
String_t* L_2 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_1, /*hidden argument*/NULL);
___value0 = L_2;
String_t* L_3 = ___value0;
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
NullCheck(L_3);
bool L_5 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_001c;
}
}
{
return (bool)0;
}
IL_001c:
{
String_t* L_6 = ___value0;
NullCheck(L_6);
int32_t L_7 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_6, ((int32_t)92), /*hidden argument*/NULL);
return (bool)((((int32_t)L_7) == ((int32_t)(-1)))? 1 : 0);
}
}
// System.Boolean System.ComponentModel.SyntaxCheck::CheckPath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SyntaxCheck_CheckPath_mFDE06CE99C5F733E3B5E323EEDA2F9A24CE2131B (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyntaxCheck_CheckPath_mFDE06CE99C5F733E3B5E323EEDA2F9A24CE2131B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
String_t* L_1 = ___value0;
NullCheck(L_1);
String_t* L_2 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_1, /*hidden argument*/NULL);
___value0 = L_2;
String_t* L_3 = ___value0;
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
NullCheck(L_3);
bool L_5 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_001c;
}
}
{
return (bool)0;
}
IL_001c:
{
String_t* L_6 = ___value0;
NullCheck(L_6);
bool L_7 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_6, _stringLiteral9E94758983980504AF303EF297FD2BF9D9CEA063, /*hidden argument*/NULL);
return L_7;
}
}
// System.Boolean System.ComponentModel.SyntaxCheck::CheckRootedPath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SyntaxCheck_CheckRootedPath_mA9A8C25EE9D9CFC1C76B72317A0A8B2896A95906 (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyntaxCheck_CheckRootedPath_mA9A8C25EE9D9CFC1C76B72317A0A8B2896A95906_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
String_t* L_1 = ___value0;
NullCheck(L_1);
String_t* L_2 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_1, /*hidden argument*/NULL);
___value0 = L_2;
String_t* L_3 = ___value0;
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
NullCheck(L_3);
bool L_5 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_001c;
}
}
{
return (bool)0;
}
IL_001c:
{
String_t* L_6 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
bool L_7 = Path_IsPathRooted_mF70DAF863202638692CF75CCFA09ACBBD90C9A53(L_6, /*hidden argument*/NULL);
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.ComponentModel.TimeSpanConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpanConverter_CanConvertFrom_m693C336C7A5435912FC4AC569E1EAD30BEB32FFF (TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TimeSpanConverter_CanConvertFrom_m693C336C7A5435912FC4AC569E1EAD30BEB32FFF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___sourceType1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0014;
}
}
{
return (bool)1;
}
IL_0014:
{
RuntimeObject* L_4 = ___context0;
Type_t * L_5 = ___sourceType1;
bool L_6 = TypeConverter_CanConvertFrom_m8E1F9E41B7DEE6A032EAC70130ADC6356C3F227D(__this, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Boolean System.ComponentModel.TimeSpanConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpanConverter_CanConvertTo_m5AC96B662FA4EACCEADAC81931591E0B14711276 (TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7 * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TimeSpanConverter_CanConvertTo_m5AC96B662FA4EACCEADAC81931591E0B14711276_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___destinationType1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0014;
}
}
{
return (bool)1;
}
IL_0014:
{
RuntimeObject* L_4 = ___context0;
Type_t * L_5 = ___destinationType1;
bool L_6 = TypeConverter_CanConvertTo_m1CD3397D9E5717DE72A13B28C0A75D997A9F337D(__this, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Object System.ComponentModel.TimeSpanConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TimeSpanConverter_ConvertFrom_m4244DF51D5A1AC286C35FCE04D82F5A9A2F33894 (TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7 * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TimeSpanConverter_ConvertFrom_m4244DF51D5A1AC286C35FCE04D82F5A9A2F33894_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
RuntimeObject * V_1 = NULL;
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject * L_0 = ___value2;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)))
{
goto IL_004c;
}
}
{
RuntimeObject * L_1 = ___value2;
NullCheck(((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)));
String_t* L_2 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_2;
}
IL_0014:
try
{ // begin try (depth: 1)
String_t* L_3 = V_0;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = ___culture1;
IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_5 = TimeSpan_Parse_m0857A872999FE4A96AA7672A9BE488A137724080(L_3, L_4, /*hidden argument*/NULL);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_6 = L_5;
RuntimeObject * L_7 = Box(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var, &L_6);
V_1 = L_7;
goto IL_0056;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0023;
throw e;
}
CATCH_0023:
{ // begin catch(System.FormatException)
V_2 = ((FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)__exception_local);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_8;
RuntimeObject * L_10 = ___value2;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, ((String_t*)CastclassSealed((RuntimeObject*)L_10, String_t_il2cpp_TypeInfo_var)));
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)((String_t*)CastclassSealed((RuntimeObject*)L_10, String_t_il2cpp_TypeInfo_var)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_9;
NullCheck(L_11);
ArrayElementTypeCheck (L_11, _stringLiteral716BF4BFDD48C8BE1229F59CD0D8B35D54774E2D);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral716BF4BFDD48C8BE1229F59CD0D8B35D54774E2D);
String_t* L_12 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral57D0D110DFCECD43C3781F997F490B8F87031F95, L_11, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_13 = V_2;
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_14 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m4DC702D2EF54A4AD4F704A7217680A4897292DE8(L_14, L_12, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, TimeSpanConverter_ConvertFrom_m4244DF51D5A1AC286C35FCE04D82F5A9A2F33894_RuntimeMethod_var);
} // end catch (depth: 1)
IL_004c:
{
RuntimeObject* L_15 = ___context0;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_16 = ___culture1;
RuntimeObject * L_17 = ___value2;
RuntimeObject * L_18 = TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3(__this, L_15, L_16, L_17, /*hidden argument*/NULL);
return L_18;
}
IL_0056:
{
RuntimeObject * L_19 = V_1;
return L_19;
}
}
// System.Object System.ComponentModel.TimeSpanConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TimeSpanConverter_ConvertTo_m6A1E0C832909670E26B892813AD9E14F08EE316E (TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7 * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TimeSpanConverter_ConvertTo_m6A1E0C832909670E26B892813AD9E14F08EE316E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
Type_t * L_0 = ___destinationType3;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0015;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFF3BA695D3EFEA937A1B1571C4E6461A8DACB151, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TimeSpanConverter_ConvertTo_m6A1E0C832909670E26B892813AD9E14F08EE316E_RuntimeMethod_var);
}
IL_0015:
{
Type_t * L_3 = ___destinationType3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0077;
}
}
{
RuntimeObject * L_7 = ___value2;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_7, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var)))
{
goto IL_0077;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = L_10;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_13);
NullCheck(L_9);
MethodInfo_t * L_14 = Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5(L_9, _stringLiteralB7E45A36FF3610E06A3801FD14FA6C1E6B89312F, L_11, /*hidden argument*/NULL);
V_0 = L_14;
MethodInfo_t * L_15 = V_0;
bool L_16 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_15, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_0077;
}
}
{
MethodInfo_t * L_17 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_18;
RuntimeObject * L_20 = ___value2;
NullCheck(L_20);
String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_20);
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_21);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_21);
InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * L_22 = (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 *)il2cpp_codegen_object_new(InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_il2cpp_TypeInfo_var);
InstanceDescriptor__ctor_m90DA8CABB01052EA5C5022E14FE50533254C71DD(L_22, L_17, (RuntimeObject*)(RuntimeObject*)L_19, /*hidden argument*/NULL);
return L_22;
}
IL_0077:
{
RuntimeObject* L_23 = ___context0;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_24 = ___culture1;
RuntimeObject * L_25 = ___value2;
Type_t * L_26 = ___destinationType3;
RuntimeObject * L_27 = TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC(__this, L_23, L_24, L_25, L_26, /*hidden argument*/NULL);
return L_27;
}
}
// System.Void System.ComponentModel.TimeSpanConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanConverter__ctor_m28E7294174F979EF86FEF9511474B0AB9431217B (TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TimeSpanConverter__ctor_m28E7294174F979EF86FEF9511474B0AB9431217B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.ComponentModel.ToolboxItemAttribute::IsDefaultAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ToolboxItemAttribute_IsDefaultAttribute_mCE3A7AE67179AF466C911394DBD256E673E5023C (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ToolboxItemAttribute_IsDefaultAttribute_mCE3A7AE67179AF466C911394DBD256E673E5023C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_il2cpp_TypeInfo_var);
ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * L_0 = ((ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_StaticFields*)il2cpp_codegen_static_fields_for(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_il2cpp_TypeInfo_var))->get_Default_2();
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
return L_1;
}
}
// System.Void System.ComponentModel.ToolboxItemAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ToolboxItemAttribute__ctor_mE30C2B3914C44361BACB775B4F4464F46536CE9D (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * __this, bool ___defaultType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ToolboxItemAttribute__ctor_mE30C2B3914C44361BACB775B4F4464F46536CE9D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
bool L_0 = ___defaultType0;
if (!L_0)
{
goto IL_0014;
}
}
{
__this->set_toolboxItemTypeName_1(_stringLiteral39BAF81F3F938D8F9BD5FF57BF42FDE083C39811);
}
IL_0014:
{
return;
}
}
// System.Void System.ComponentModel.ToolboxItemAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ToolboxItemAttribute__ctor_m928FB88168D50A283E63170782864167D9BA1A1A (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * __this, String_t* ___toolboxItemTypeName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ToolboxItemAttribute__ctor_m928FB88168D50A283E63170782864167D9BA1A1A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___toolboxItemTypeName0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
NullCheck(L_0);
String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_0, L_1, /*hidden argument*/NULL);
String_t* L_2 = ___toolboxItemTypeName0;
__this->set_toolboxItemTypeName_1(L_2);
return;
}
}
// System.Void System.ComponentModel.ToolboxItemAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ToolboxItemAttribute__ctor_m69856B3389F2C31830FE9632ABCF46FC4AC5869E (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * __this, Type_t * ___toolboxItemType0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___toolboxItemType0;
__this->set_toolboxItemType_0(L_0);
Type_t * L_1 = ___toolboxItemType0;
NullCheck(L_1);
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_1);
__this->set_toolboxItemTypeName_1(L_2);
return;
}
}
// System.Type System.ComponentModel.ToolboxItemAttribute::get_ToolboxItemType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ToolboxItemAttribute_get_ToolboxItemType_m8F418ADC24E7FBB4311BA4799A974EE383B5CC86 (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ToolboxItemAttribute_get_ToolboxItemType_m8F418ADC24E7FBB4311BA4799A974EE383B5CC86_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Type_t * L_0 = __this->get_toolboxItemType_0();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_004b;
}
}
{
String_t* L_2 = __this->get_toolboxItemTypeName_1();
if (!L_2)
{
goto IL_004b;
}
}
IL_0016:
try
{ // begin try (depth: 1)
String_t* L_3 = __this->get_toolboxItemTypeName_1();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m8A8A6481B24551476F2AF999A970AD705BA68C7A, L_3, (bool)1, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
__this->set_toolboxItemType_0(L_4);
goto IL_004b;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002a;
throw e;
}
CATCH_002a:
{ // begin catch(System.Exception)
V_0 = ((Exception_t *)__exception_local);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_5;
String_t* L_7 = __this->get_toolboxItemTypeName_1();
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7);
String_t* L_8 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral0D406DC498224C465C9F2AEF544FD6543E2F3256, L_6, /*hidden argument*/NULL);
Exception_t * L_9 = V_0;
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1BF85DCCECA37FCD88A0884AF3C4D03566911BF0(L_10, L_8, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ToolboxItemAttribute_get_ToolboxItemType_m8F418ADC24E7FBB4311BA4799A974EE383B5CC86_RuntimeMethod_var);
} // end catch (depth: 1)
IL_004b:
{
Type_t * L_11 = __this->get_toolboxItemType_0();
return L_11;
}
}
// System.String System.ComponentModel.ToolboxItemAttribute::get_ToolboxItemTypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ToolboxItemAttribute_get_ToolboxItemTypeName_m37914F48C67146F8C93D27EDA5CB8895DAF5AB31 (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ToolboxItemAttribute_get_ToolboxItemTypeName_m37914F48C67146F8C93D27EDA5CB8895DAF5AB31_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->get_toolboxItemTypeName_1();
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->get_toolboxItemTypeName_1();
return L_2;
}
}
// System.Boolean System.ComponentModel.ToolboxItemAttribute::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ToolboxItemAttribute_Equals_m1F1515BB04A2AD1ADA8A820D5481F7306F91EAE2 (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ToolboxItemAttribute_Equals_m1F1515BB04A2AD1ADA8A820D5481F7306F91EAE2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C *)__this))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C *)IsInstClass((RuntimeObject*)L_1, ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_il2cpp_TypeInfo_var));
ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * L_2 = V_0;
if (!L_2)
{
goto IL_0022;
}
}
{
ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = ToolboxItemAttribute_get_ToolboxItemTypeName_m37914F48C67146F8C93D27EDA5CB8895DAF5AB31(L_3, /*hidden argument*/NULL);
String_t* L_5 = ToolboxItemAttribute_get_ToolboxItemTypeName_m37914F48C67146F8C93D27EDA5CB8895DAF5AB31(__this, /*hidden argument*/NULL);
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
IL_0022:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.ToolboxItemAttribute::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ToolboxItemAttribute_GetHashCode_mFC8C5FE90B2BF1CED00EAE1C40F2074EA9CDDC38 (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_toolboxItemTypeName_1();
if (!L_0)
{
goto IL_0014;
}
}
{
String_t* L_1 = __this->get_toolboxItemTypeName_1();
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
return L_2;
}
IL_0014:
{
int32_t L_3 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
return L_3;
}
}
// System.Void System.ComponentModel.ToolboxItemAttribute::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ToolboxItemAttribute__cctor_m71C70EF1FE141D0904DC1ADE3A8209D808196C4D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ToolboxItemAttribute__cctor_m71C70EF1FE141D0904DC1ADE3A8209D808196C4D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * L_0 = (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C *)il2cpp_codegen_object_new(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_il2cpp_TypeInfo_var);
ToolboxItemAttribute__ctor_m928FB88168D50A283E63170782864167D9BA1A1A(L_0, _stringLiteral39BAF81F3F938D8F9BD5FF57BF42FDE083C39811, /*hidden argument*/NULL);
((ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_StaticFields*)il2cpp_codegen_static_fields_for(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_il2cpp_TypeInfo_var))->set_Default_2(L_0);
ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C * L_1 = (ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C *)il2cpp_codegen_object_new(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_il2cpp_TypeInfo_var);
ToolboxItemAttribute__ctor_mE30C2B3914C44361BACB775B4F4464F46536CE9D(L_1, (bool)0, /*hidden argument*/NULL);
((ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_StaticFields*)il2cpp_codegen_static_fields_for(ToolboxItemAttribute_t06EC671268D222B3B4F3BE1DF5874E9B3166269C_il2cpp_TypeInfo_var))->set_None_3(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.ToolboxItemFilterAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ToolboxItemFilterAttribute__ctor_m963B703721BFD50DCEB81D7CFFAE679EA504DFF7 (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, String_t* ___filterString0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___filterString0;
ToolboxItemFilterAttribute__ctor_mFAC0E4977E406F58310744D0159E3F94EB43BA71(__this, L_0, 0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.ToolboxItemFilterAttribute::.ctor(System.String,System.ComponentModel.ToolboxItemFilterType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ToolboxItemFilterAttribute__ctor_mFAC0E4977E406F58310744D0159E3F94EB43BA71 (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, String_t* ___filterString0, int32_t ___filterType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ToolboxItemFilterAttribute__ctor_mFAC0E4977E406F58310744D0159E3F94EB43BA71_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___filterString0;
if (L_0)
{
goto IL_0010;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
___filterString0 = L_1;
}
IL_0010:
{
String_t* L_2 = ___filterString0;
__this->set_filterString_1(L_2);
int32_t L_3 = ___filterType1;
__this->set_filterType_0(L_3);
return;
}
}
// System.String System.ComponentModel.ToolboxItemFilterAttribute::get_FilterString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ToolboxItemFilterAttribute_get_FilterString_m1A808BD26BC9CB3A41704B4E666590DA2CA88B84 (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_filterString_1();
return L_0;
}
}
// System.ComponentModel.ToolboxItemFilterType System.ComponentModel.ToolboxItemFilterAttribute::get_FilterType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ToolboxItemFilterAttribute_get_FilterType_mFCBA328F82DDB9F4DEBE1E0058858D94988B57E1 (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_filterType_0();
return L_0;
}
}
// System.Object System.ComponentModel.ToolboxItemFilterAttribute::get_TypeId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ToolboxItemFilterAttribute_get_TypeId_mC3CEBB418A8372CF7F6E6577E4A8465965FB6294 (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_typeId_2();
if (L_0)
{
goto IL_0024;
}
}
{
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
NullCheck(L_1);
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_1);
String_t* L_3 = __this->get_filterString_1();
String_t* L_4 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_2, L_3, /*hidden argument*/NULL);
__this->set_typeId_2(L_4);
}
IL_0024:
{
String_t* L_5 = __this->get_typeId_2();
return L_5;
}
}
// System.Boolean System.ComponentModel.ToolboxItemFilterAttribute::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ToolboxItemFilterAttribute_Equals_mA96AF3C6A2B62FE03A324C6481DDD8ACCECA562B (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ToolboxItemFilterAttribute_Equals_mA96AF3C6A2B62FE03A324C6481DDD8ACCECA562B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___obj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 *)__this))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 *)IsInstSealed((RuntimeObject*)L_1, ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910_il2cpp_TypeInfo_var));
ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * L_2 = V_0;
if (!L_2)
{
goto IL_0043;
}
}
{
ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = ToolboxItemFilterAttribute_get_FilterType_mFCBA328F82DDB9F4DEBE1E0058858D94988B57E1_inline(L_3, /*hidden argument*/NULL);
V_1 = L_4;
int32_t L_5 = ToolboxItemFilterAttribute_get_FilterType_mFCBA328F82DDB9F4DEBE1E0058858D94988B57E1_inline(__this, /*hidden argument*/NULL);
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(ToolboxItemFilterType_t55CD1A1F306F891450DFC2290FE851E94CC3B8C5_il2cpp_TypeInfo_var, &L_6);
RuntimeObject * L_8 = Box(ToolboxItemFilterType_t55CD1A1F306F891450DFC2290FE851E94CC3B8C5_il2cpp_TypeInfo_var, (&V_1));
NullCheck(L_8);
bool L_9 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_8, L_7);
V_1 = *(int32_t*)UnBox(L_8);
if (!L_9)
{
goto IL_0043;
}
}
{
ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * L_10 = V_0;
NullCheck(L_10);
String_t* L_11 = ToolboxItemFilterAttribute_get_FilterString_m1A808BD26BC9CB3A41704B4E666590DA2CA88B84_inline(L_10, /*hidden argument*/NULL);
String_t* L_12 = ToolboxItemFilterAttribute_get_FilterString_m1A808BD26BC9CB3A41704B4E666590DA2CA88B84_inline(__this, /*hidden argument*/NULL);
NullCheck(L_11);
bool L_13 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_11, L_12, /*hidden argument*/NULL);
return L_13;
}
IL_0043:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.ToolboxItemFilterAttribute::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ToolboxItemFilterAttribute_GetHashCode_m1A6C443410C3350F5A12955025DFFB6DE2B12A0F (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_filterString_1();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
return L_1;
}
}
// System.Boolean System.ComponentModel.ToolboxItemFilterAttribute::Match(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ToolboxItemFilterAttribute_Match_m8096BD0D4F44181B001657AFCD7C517DFA1F2539 (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ToolboxItemFilterAttribute_Match_m8096BD0D4F44181B001657AFCD7C517DFA1F2539_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
V_0 = ((ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 *)IsInstSealed((RuntimeObject*)L_0, ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910_il2cpp_TypeInfo_var));
ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
{
return (bool)0;
}
IL_000c:
{
ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * L_2 = V_0;
NullCheck(L_2);
String_t* L_3 = ToolboxItemFilterAttribute_get_FilterString_m1A808BD26BC9CB3A41704B4E666590DA2CA88B84_inline(L_2, /*hidden argument*/NULL);
String_t* L_4 = ToolboxItemFilterAttribute_get_FilterString_m1A808BD26BC9CB3A41704B4E666590DA2CA88B84_inline(__this, /*hidden argument*/NULL);
NullCheck(L_3);
bool L_5 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_3, L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0021;
}
}
{
return (bool)0;
}
IL_0021:
{
return (bool)1;
}
}
// System.String System.ComponentModel.ToolboxItemFilterAttribute::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ToolboxItemFilterAttribute_ToString_m570A8F659CDAD3B7A847400E31D1D1A5B004C5E2 (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ToolboxItemFilterAttribute_ToString_m570A8F659CDAD3B7A847400E31D1D1A5B004C5E2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->get_filterString_1();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (ToolboxItemFilterType_t55CD1A1F306F891450DFC2290FE851E94CC3B8C5_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
int32_t L_3 = __this->get_filterType_0();
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(ToolboxItemFilterType_t55CD1A1F306F891450DFC2290FE851E94CC3B8C5_il2cpp_TypeInfo_var, &L_4);
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
String_t* L_6 = Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D(L_2, L_5, /*hidden argument*/NULL);
String_t* L_7 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_0, _stringLiteral5C10B5B2CD673A0616D529AA5234B12EE7153808, L_6, /*hidden argument*/NULL);
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.ComponentModel.TypeConverter::get_UseCompatibleTypeConversion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_get_UseCompatibleTypeConversion_m4E8A4FB4000523FF099E5B064BF58BA44664E8CF (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_get_UseCompatibleTypeConversion_m4E8A4FB4000523FF099E5B064BF58BA44664E8CF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
bool L_0 = ((TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_StaticFields*)il2cpp_codegen_static_fields_for(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var))->get_useCompatibleTypeConversion_1();
il2cpp_codegen_memory_barrier();
return L_0;
}
}
// System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertFrom_mB405721DE7D2532FA893C4F9242BD7675784DF3D (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, Type_t * ___sourceType0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___sourceType0;
bool L_1 = VirtFuncInvoker2< bool, RuntimeObject*, Type_t * >::Invoke(4 /* System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) */, __this, (RuntimeObject*)NULL, L_0);
return L_1;
}
}
// System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertFrom_m8E1F9E41B7DEE6A032EAC70130ADC6356C3F227D (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_CanConvertFrom_m8E1F9E41B7DEE6A032EAC70130ADC6356C3F227D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___sourceType1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0014;
}
}
{
return (bool)1;
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertTo_mFD084EFAE4C064C6844E20E5A0C6719925A2D938 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, Type_t * ___destinationType0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___destinationType0;
bool L_1 = VirtFuncInvoker2< bool, RuntimeObject*, Type_t * >::Invoke(5 /* System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) */, __this, (RuntimeObject*)NULL, L_0);
return L_1;
}
}
// System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertTo_m1CD3397D9E5717DE72A13B28C0A75D997A9F337D (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_CanConvertTo_m1CD3397D9E5717DE72A13B28C0A75D997A9F337D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___destinationType1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertFrom_m3E71724F5033CD589B5D01DDD14E357582BD2476 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_ConvertFrom_m3E71724F5033CD589B5D01DDD14E357582BD2476_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
RuntimeObject * L_1 = ___value0;
RuntimeObject * L_2 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, RuntimeObject * >::Invoke(6 /* System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) */, __this, (RuntimeObject*)NULL, L_0, L_1);
return L_2;
}
}
// System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * V_0 = NULL;
{
RuntimeObject * L_0 = ___value2;
V_0 = ((InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 *)IsInstSealed((RuntimeObject*)L_0, InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_il2cpp_TypeInfo_var));
InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * L_1 = V_0;
if (!L_1)
{
goto IL_0011;
}
}
{
InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * L_2 = V_0;
NullCheck(L_2);
RuntimeObject * L_3 = InstanceDescriptor_Invoke_mFA1E52E0F4971ABC4432D30F7CF80304272355C0(L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0011:
{
RuntimeObject * L_4 = ___value2;
Exception_t * L_5 = TypeConverter_GetConvertFromException_m10012C012ED008F8AC9DF76BBAD93E19DDA6EAC3(__this, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3_RuntimeMethod_var);
}
}
// System.Object System.ComponentModel.TypeConverter::ConvertFromInvariantString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertFromInvariantString_m9293C7DF0805F4C7EA4510B71724BDAC3BE80AB2 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, String_t* ___text0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_ConvertFromInvariantString_m9293C7DF0805F4C7EA4510B71724BDAC3BE80AB2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_1 = ___text0;
RuntimeObject * L_2 = TypeConverter_ConvertFromString_m29A7CD7DC7BD65459316FA4D807A1D16362C524E(__this, (RuntimeObject*)NULL, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Object System.ComponentModel.TypeConverter::ConvertFromInvariantString(System.ComponentModel.ITypeDescriptorContext,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertFromInvariantString_m8CA941FF49C01AB09F89531ACB3FDF4F97C041E2 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, String_t* ___text1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_ConvertFromInvariantString_m8CA941FF49C01AB09F89531ACB3FDF4F97C041E2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___context0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_2 = ___text1;
RuntimeObject * L_3 = TypeConverter_ConvertFromString_m29A7CD7DC7BD65459316FA4D807A1D16362C524E(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Object System.ComponentModel.TypeConverter::ConvertFromString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertFromString_m79BBFB959114D5294C21BD6FD0C4C0F826869202 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, String_t* ___text0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___text0;
RuntimeObject * L_1 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, RuntimeObject * >::Invoke(6 /* System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) */, __this, (RuntimeObject*)NULL, (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *)NULL, L_0);
return L_1;
}
}
// System.Object System.ComponentModel.TypeConverter::ConvertFromString(System.ComponentModel.ITypeDescriptorContext,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertFromString_m24C4F0F94A2F6758E32DC307B232B29E2F05049A (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, String_t* ___text1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_ConvertFromString_m24C4F0F94A2F6758E32DC307B232B29E2F05049A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___context0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
String_t* L_2 = ___text1;
RuntimeObject * L_3 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, RuntimeObject * >::Invoke(6 /* System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) */, __this, L_0, L_1, L_2);
return L_3;
}
}
// System.Object System.ComponentModel.TypeConverter::ConvertFromString(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertFromString_m29A7CD7DC7BD65459316FA4D807A1D16362C524E (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, String_t* ___text2, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___context0;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___culture1;
String_t* L_2 = ___text2;
RuntimeObject * L_3 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, RuntimeObject * >::Invoke(6 /* System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) */, __this, L_0, L_1, L_2);
return L_3;
}
}
// System.Object System.ComponentModel.TypeConverter::ConvertTo(System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertTo_m7A68C74ECC7FD5C58919C9AAD0FA4389D4E56149 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
Type_t * L_1 = ___destinationType1;
RuntimeObject * L_2 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, __this, (RuntimeObject*)NULL, (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *)NULL, L_0, L_1);
return L_2;
}
}
// System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
Type_t * L_0 = ___destinationType3;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0015;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFF3BA695D3EFEA937A1B1571C4E6461A8DACB151, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC_RuntimeMethod_var);
}
IL_0015:
{
Type_t * L_3 = ___destinationType3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0056;
}
}
{
RuntimeObject * L_7 = ___value2;
if (L_7)
{
goto IL_0031;
}
}
{
String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_8;
}
IL_0031:
{
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_9 = ___culture1;
if (!L_9)
{
goto IL_004f;
}
}
{
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_10 = ___culture1;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_11 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
if ((((RuntimeObject*)(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *)L_10) == ((RuntimeObject*)(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *)L_11)))
{
goto IL_004f;
}
}
{
RuntimeObject * L_12 = ___value2;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_12, IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var));
RuntimeObject* L_13 = V_0;
if (!L_13)
{
goto IL_004f;
}
}
{
RuntimeObject* L_14 = V_0;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_15 = ___culture1;
NullCheck(L_14);
String_t* L_16 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0 /* System.String System.IFormattable::ToString(System.String,System.IFormatProvider) */, IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var, L_14, (String_t*)NULL, L_15);
return L_16;
}
IL_004f:
{
RuntimeObject * L_17 = ___value2;
NullCheck(L_17);
String_t* L_18 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_17);
return L_18;
}
IL_0056:
{
RuntimeObject * L_19 = ___value2;
Type_t * L_20 = ___destinationType3;
Exception_t * L_21 = TypeConverter_GetConvertToException_mD906D7D39A16CC8ACFC0179208CE2627B73D5C32(__this, L_19, L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC_RuntimeMethod_var);
}
}
// System.String System.ComponentModel.TypeConverter::ConvertToInvariantString(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverter_ConvertToInvariantString_m761850CEC1FEE3C82ABE5F794DE84FFE29C852A2 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_ConvertToInvariantString_m761850CEC1FEE3C82ABE5F794DE84FFE29C852A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
RuntimeObject * L_1 = ___value0;
String_t* L_2 = TypeConverter_ConvertToString_m2601B49A8D7AB780DBA7F2DD08A3790DF7987FB4(__this, (RuntimeObject*)NULL, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.String System.ComponentModel.TypeConverter::ConvertToInvariantString(System.ComponentModel.ITypeDescriptorContext,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverter_ConvertToInvariantString_m382F27F2262271AB0775D6FA6F413D24BEA28808 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_ConvertToInvariantString_m382F27F2262271AB0775D6FA6F413D24BEA28808_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___context0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
RuntimeObject * L_2 = ___value1;
String_t* L_3 = TypeConverter_ConvertToString_m2601B49A8D7AB780DBA7F2DD08A3790DF7987FB4(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.ComponentModel.TypeConverter::ConvertToString(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverter_ConvertToString_m2CBE8E127541982F2FB74F81D59AA62D097FD623 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_ConvertToString_m2CBE8E127541982F2FB74F81D59AA62D097FD623_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
RuntimeObject * L_1 = ___value0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
RuntimeObject * L_4 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, __this, (RuntimeObject*)NULL, L_0, L_1, L_3);
return ((String_t*)CastclassSealed((RuntimeObject*)L_4, String_t_il2cpp_TypeInfo_var));
}
}
// System.String System.ComponentModel.TypeConverter::ConvertToString(System.ComponentModel.ITypeDescriptorContext,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverter_ConvertToString_m5F4325990F5C0E979B0C18408D276534CC2B5101 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_ConvertToString_m5F4325990F5C0E979B0C18408D276534CC2B5101_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___context0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
RuntimeObject * L_2 = ___value1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, __this, L_0, L_1, L_2, L_4);
return ((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var));
}
}
// System.String System.ComponentModel.TypeConverter::ConvertToString(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverter_ConvertToString_m2601B49A8D7AB780DBA7F2DD08A3790DF7987FB4 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_ConvertToString_m2601B49A8D7AB780DBA7F2DD08A3790DF7987FB4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___context0;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___culture1;
RuntimeObject * L_2 = ___value2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, __this, L_0, L_1, L_2, L_4);
return ((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var));
}
}
// System.Object System.ComponentModel.TypeConverter::CreateInstance(System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_CreateInstance_m910234390A61C68C5AEB1F0376D922C880254734 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___propertyValues0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___propertyValues0;
RuntimeObject * L_1 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject*, RuntimeObject* >::Invoke(8 /* System.Object System.ComponentModel.TypeConverter::CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary) */, __this, (RuntimeObject*)NULL, L_0);
return L_1;
}
}
// System.Object System.ComponentModel.TypeConverter::CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_CreateInstance_mDC7CFC64F7538582820FE98B48B025956549FA6F (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, RuntimeObject* ___propertyValues1, const RuntimeMethod* method)
{
{
return NULL;
}
}
// System.Exception System.ComponentModel.TypeConverter::GetConvertFromException(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * TypeConverter_GetConvertFromException_m10012C012ED008F8AC9DF76BBAD93E19DDA6EAC3 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_GetConvertFromException_m10012C012ED008F8AC9DF76BBAD93E19DDA6EAC3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0010;
}
}
{
String_t* L_1 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralFDE49AA00F4966A6ABC348B5B3B985032EABF411, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_001c;
}
IL_0010:
{
RuntimeObject * L_2 = ___value0;
NullCheck(L_2);
Type_t * L_3 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_3);
V_0 = L_4;
}
IL_001c:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_5;
Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_7);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_8);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_6;
String_t* L_10 = V_0;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_10);
String_t* L_11 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral7DE3492745C0E4A99AFFB51D2CBB382C843F75B5, L_9, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_12 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, TypeConverter_GetConvertFromException_m10012C012ED008F8AC9DF76BBAD93E19DDA6EAC3_RuntimeMethod_var);
}
}
// System.Exception System.ComponentModel.TypeConverter::GetConvertToException(System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * TypeConverter_GetConvertToException_mD906D7D39A16CC8ACFC0179208CE2627B73D5C32 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_GetConvertToException_mD906D7D39A16CC8ACFC0179208CE2627B73D5C32_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0010;
}
}
{
String_t* L_1 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralFDE49AA00F4966A6ABC348B5B3B985032EABF411, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_001c;
}
IL_0010:
{
RuntimeObject * L_2 = ___value0;
NullCheck(L_2);
Type_t * L_3 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_3);
V_0 = L_4;
}
IL_001c:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_5;
Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_7);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_8);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_6;
String_t* L_10 = V_0;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_10);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_9;
Type_t * L_12 = ___destinationType1;
NullCheck(L_12);
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_12);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_13);
String_t* L_14 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral9B7BC23CFD2D5498482F57CBA31E729EE22C71F3, L_11, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_15 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, TypeConverter_GetConvertToException_mD906D7D39A16CC8ACFC0179208CE2627B73D5C32_RuntimeMethod_var);
}
}
// System.Boolean System.ComponentModel.TypeConverter::GetCreateInstanceSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetCreateInstanceSupported_mCFECC64262DC92B2474D88446010AF0421EE7E07 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, const RuntimeMethod* method)
{
{
bool L_0 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(9 /* System.Boolean System.ComponentModel.TypeConverter::GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext) */, __this, (RuntimeObject*)NULL);
return L_0;
}
}
// System.Boolean System.ComponentModel.TypeConverter::GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetCreateInstanceSupported_mA94E6A163BDDEF26EF22676B270763C010FA2D1C (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeConverter_GetProperties_m02BA46C92F9265712A6637DDA1E4A0DBCFC10FAA (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_1 = TypeConverter_GetProperties_m5C07AE2E3658FB12366BFAA4A6DA26C9AA26F631(__this, (RuntimeObject*)NULL, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeConverter_GetProperties_m5C07AE2E3658FB12366BFAA4A6DA26C9AA26F631 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_GetProperties_m5C07AE2E3658FB12366BFAA4A6DA26C9AA26F631_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___context0;
RuntimeObject * L_1 = ___value1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_2 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)1);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = L_2;
IL2CPP_RUNTIME_CLASS_INIT(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_il2cpp_TypeInfo_var);
BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * L_4 = ((BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_StaticFields*)il2cpp_codegen_static_fields_for(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_il2cpp_TypeInfo_var))->get_Yes_0();
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)L_4);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_5 = VirtFuncInvoker3< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *, RuntimeObject*, RuntimeObject *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(10 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]) */, __this, L_0, L_1, L_3);
return L_5;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeConverter_GetProperties_mE9B2F1B88BC6A544E6FB1B5369A9603D24871DA1 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method)
{
{
return (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)NULL;
}
}
// System.Boolean System.ComponentModel.TypeConverter::GetPropertiesSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetPropertiesSupported_m51BD8041C9104A4B4102444C6E3E6A876544D5E3 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, const RuntimeMethod* method)
{
{
bool L_0 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(11 /* System.Boolean System.ComponentModel.TypeConverter::GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext) */, __this, (RuntimeObject*)NULL);
return L_0;
}
}
// System.Boolean System.ComponentModel.TypeConverter::GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetPropertiesSupported_m689053FED1C08F4E898BC80D3E802866A08CCE1D (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Collections.ICollection System.ComponentModel.TypeConverter::GetStandardValues()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeConverter_GetStandardValues_m0E0160DE18F9601C528E8CC773C8AC3873796060 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, const RuntimeMethod* method)
{
{
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_0 = VirtFuncInvoker1< StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 *, RuntimeObject* >::Invoke(12 /* System.ComponentModel.TypeConverter/StandardValuesCollection System.ComponentModel.TypeConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext) */, __this, (RuntimeObject*)NULL);
return L_0;
}
}
// System.ComponentModel.TypeConverter_StandardValuesCollection System.ComponentModel.TypeConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * TypeConverter_GetStandardValues_m58938306CEF726F9537744C71AC943E399D5F927 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
{
return (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 *)NULL;
}
}
// System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesExclusive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetStandardValuesExclusive_mC8BBDA525FD8038D81EC1F3C0CA18F69A4DD58DA (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, const RuntimeMethod* method)
{
{
bool L_0 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(13 /* System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext) */, __this, (RuntimeObject*)NULL);
return L_0;
}
}
// System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetStandardValuesExclusive_m6B189B96FF37D21B43FD397661F5C9960D7204E4 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetStandardValuesSupported_mBD5FFD9335978CCD8C3A26F80D70D6B192E9E1DB (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, const RuntimeMethod* method)
{
{
bool L_0 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(14 /* System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext) */, __this, (RuntimeObject*)NULL);
return L_0;
}
}
// System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetStandardValuesSupported_mE7E8F04BE48835C994C035A90CBBFD7681B0D198 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.ComponentModel.TypeConverter::IsValid(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_IsValid_m464CADACE18B5EDEB9202AB8DBA183D8FB3463C3 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
bool L_1 = VirtFuncInvoker2< bool, RuntimeObject*, RuntimeObject * >::Invoke(15 /* System.Boolean System.ComponentModel.TypeConverter::IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object) */, __this, (RuntimeObject*)NULL, L_0);
return L_1;
}
}
// System.Boolean System.ComponentModel.TypeConverter::IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_IsValid_m7F461605B50FF4BAED21EB5B59C65459CF5DC8F4 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverter_IsValid_m7F461605B50FF4BAED21EB5B59C65459CF5DC8F4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
bool L_0 = TypeConverter_get_UseCompatibleTypeConversion_m4E8A4FB4000523FF099E5B064BF58BA44664E8CF(/*hidden argument*/NULL);
if (!L_0)
{
goto IL_0009;
}
}
{
return (bool)1;
}
IL_0009:
{
V_0 = (bool)1;
}
IL_000b:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_1 = ___value1;
if (!L_1)
{
goto IL_001d;
}
}
IL_000e:
{
RuntimeObject* L_2 = ___context0;
RuntimeObject * L_3 = ___value1;
NullCheck(L_3);
Type_t * L_4 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_3, /*hidden argument*/NULL);
bool L_5 = VirtFuncInvoker2< bool, RuntimeObject*, Type_t * >::Invoke(4 /* System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) */, __this, L_2, L_4);
if (!L_5)
{
goto IL_002d;
}
}
IL_001d:
{
RuntimeObject* L_6 = ___context0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
RuntimeObject * L_8 = ___value1;
VirtFuncInvoker3< RuntimeObject *, RuntimeObject*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, RuntimeObject * >::Invoke(6 /* System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) */, __this, L_6, L_7, L_8);
goto IL_002f;
}
IL_002d:
{
V_0 = (bool)0;
}
IL_002f:
{
goto IL_0036;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0031;
throw e;
}
CATCH_0031:
{ // begin catch(System.Object)
V_0 = (bool)0;
goto IL_0036;
} // end catch (depth: 1)
IL_0036:
{
bool L_9 = V_0;
return L_9;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::SortProperties(System.ComponentModel.PropertyDescriptorCollection,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeConverter_SortProperties_m5AD81E82E93298C5FEAF26AC70BEC8EBF9981DA3 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ___props0, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names1, const RuntimeMethod* method)
{
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_0 = ___props0;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = ___names1;
NullCheck(L_0);
VirtFuncInvoker1< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(35 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Sort(System.String[]) */, L_0, L_1);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_2 = ___props0;
return L_2;
}
}
// System.Void System.ComponentModel.TypeConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeConverter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverter__cctor_mC99D8D0F3AA6CCB3E21123CFA7BAB73800CC38DC (const RuntimeMethod* method)
{
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.TypeConverter_SimplePropertyDescriptor::.ctor(System.Type,System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimplePropertyDescriptor__ctor_m2EAEF866952555B868108C646EA224EA4C87DE06 (SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA * __this, Type_t * ___componentType0, String_t* ___name1, Type_t * ___propertyType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SimplePropertyDescriptor__ctor_m2EAEF866952555B868108C646EA224EA4C87DE06_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentType0;
String_t* L_1 = ___name1;
Type_t * L_2 = ___propertyType2;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)0);
SimplePropertyDescriptor__ctor_m8F44C82E16B8574F418418F47D8E6A3A52D0978A(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeConverter_SimplePropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimplePropertyDescriptor__ctor_m8F44C82E16B8574F418418F47D8E6A3A52D0978A (SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA * __this, Type_t * ___componentType0, String_t* ___name1, Type_t * ___propertyType2, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attributes3;
PropertyDescriptor__ctor_m8CEC4DAE5266714927949F60E4F8A7F31141BC22(__this, L_0, L_1, /*hidden argument*/NULL);
Type_t * L_2 = ___componentType0;
__this->set_componentType_17(L_2);
Type_t * L_3 = ___propertyType2;
__this->set_propertyType_18(L_3);
return;
}
}
// System.Type System.ComponentModel.TypeConverter_SimplePropertyDescriptor::get_ComponentType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * SimplePropertyDescriptor_get_ComponentType_m39197EC5A3662AA3D3C3BA74A3F65512D445DEE4 (SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_componentType_17();
return L_0;
}
}
// System.Boolean System.ComponentModel.TypeConverter_SimplePropertyDescriptor::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimplePropertyDescriptor_get_IsReadOnly_mD5DD3E9534AFE907A9D3A6E1E00ECF6B35FE2F3D (SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SimplePropertyDescriptor_get_IsReadOnly_mD5DD3E9534AFE907A9D3A6E1E00ECF6B35FE2F3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var);
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * L_1 = ((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var))->get_Yes_1();
NullCheck(L_0);
bool L_2 = AttributeCollection_Contains_m44FEEEE6F4C20AAF6207A09BE38A10EEF6EDE6EF(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Type System.ComponentModel.TypeConverter_SimplePropertyDescriptor::get_PropertyType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * SimplePropertyDescriptor_get_PropertyType_mF8DD1C406A8679B366D7BC5DF4B0C72CDFFC31FA (SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_propertyType_18();
return L_0;
}
}
// System.Boolean System.ComponentModel.TypeConverter_SimplePropertyDescriptor::CanResetValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimplePropertyDescriptor_CanResetValue_mEA3525ACF505860EF1338996CA9CAA87E868D15D (SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA * __this, RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SimplePropertyDescriptor_CanResetValue_mEA3525ACF505860EF1338996CA9CAA87E868D15D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * V_0 = NULL;
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
NullCheck(L_0);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_3 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_0, L_2);
V_0 = ((DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC *)CastclassClass((RuntimeObject*)L_3, DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_il2cpp_TypeInfo_var));
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_4 = V_0;
if (L_4)
{
goto IL_0020;
}
}
{
return (bool)0;
}
IL_0020:
{
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_5);
RuntimeObject * L_7 = ___component0;
RuntimeObject * L_8 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.ComponentModel.PropertyDescriptor::GetValue(System.Object) */, __this, L_7);
NullCheck(L_6);
bool L_9 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_6, L_8);
return L_9;
}
}
// System.Void System.ComponentModel.TypeConverter_SimplePropertyDescriptor::ResetValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimplePropertyDescriptor_ResetValue_m9A0C21FDF9032EA0EF180204FD616B2BB6ECA962 (SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA * __this, RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SimplePropertyDescriptor_ResetValue_m9A0C21FDF9032EA0EF180204FD616B2BB6ECA962_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * V_0 = NULL;
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
NullCheck(L_0);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_3 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_0, L_2);
V_0 = ((DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC *)CastclassClass((RuntimeObject*)L_3, DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_il2cpp_TypeInfo_var));
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_4 = V_0;
if (!L_4)
{
goto IL_002b;
}
}
{
RuntimeObject * L_5 = ___component0;
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_6 = V_0;
NullCheck(L_6);
RuntimeObject * L_7 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_6);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.ComponentModel.PropertyDescriptor::SetValue(System.Object,System.Object) */, __this, L_5, L_7);
}
IL_002b:
{
return;
}
}
// System.Boolean System.ComponentModel.TypeConverter_SimplePropertyDescriptor::ShouldSerializeValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimplePropertyDescriptor_ShouldSerializeValue_mFD202625C418F3654736F4F7735FA085251A2C98 (SimplePropertyDescriptor_tCF596E6470E66A92F1E91E28AB918097701E7CEA * __this, RuntimeObject * ___component0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.TypeConverter_StandardValuesCollection::.ctor(System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandardValuesCollection__ctor_m75578979BC0D77C0D622E4C9D7C1CB1E047615C1 (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, RuntimeObject* ___values0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandardValuesCollection__ctor_m75578979BC0D77C0D622E4C9D7C1CB1E047615C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeArray * V_0 = NULL;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___values0;
if (L_0)
{
goto IL_0011;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)0);
___values0 = (RuntimeObject*)L_1;
}
IL_0011:
{
RuntimeObject* L_2 = ___values0;
V_0 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_2, RuntimeArray_il2cpp_TypeInfo_var));
RuntimeArray * L_3 = V_0;
if (!L_3)
{
goto IL_0022;
}
}
{
RuntimeArray * L_4 = V_0;
__this->set_valueArray_1(L_4);
}
IL_0022:
{
RuntimeObject* L_5 = ___values0;
__this->set_values_0(L_5);
return;
}
}
// System.Int32 System.ComponentModel.TypeConverter_StandardValuesCollection::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = __this->get_valueArray_1();
if (!L_0)
{
goto IL_0014;
}
}
{
RuntimeArray * L_1 = __this->get_valueArray_1();
NullCheck(L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
RuntimeObject* L_3 = __this->get_values_0();
NullCheck(L_3);
int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_3);
return L_4;
}
}
// System.Object System.ComponentModel.TypeConverter_StandardValuesCollection::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StandardValuesCollection_get_Item_m9A5475A893EB6F19F22BB4939BBF3FFF117A6AAA (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandardValuesCollection_get_Item_m9A5475A893EB6F19F22BB4939BBF3FFF117A6AAA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeArray * L_0 = __this->get_valueArray_1();
if (!L_0)
{
goto IL_0015;
}
}
{
RuntimeArray * L_1 = __this->get_valueArray_1();
int32_t L_2 = ___index0;
NullCheck(L_1);
RuntimeObject * L_3 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0015:
{
RuntimeObject* L_4 = __this->get_values_0();
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var));
RuntimeObject* L_5 = V_0;
if (!L_5)
{
goto IL_002c;
}
}
{
RuntimeObject* L_6 = V_0;
int32_t L_7 = ___index0;
NullCheck(L_6);
RuntimeObject * L_8 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_6, L_7);
return L_8;
}
IL_002c:
{
RuntimeObject* L_9 = __this->get_values_0();
NullCheck(L_9);
int32_t L_10 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_9);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_10);
__this->set_valueArray_1((RuntimeArray *)L_11);
RuntimeObject* L_12 = __this->get_values_0();
RuntimeArray * L_13 = __this->get_valueArray_1();
NullCheck(L_12);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_12, L_13, 0);
RuntimeArray * L_14 = __this->get_valueArray_1();
int32_t L_15 = ___index0;
NullCheck(L_14);
RuntimeObject * L_16 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_14, L_15, /*hidden argument*/NULL);
return L_16;
}
}
// System.Void System.ComponentModel.TypeConverter_StandardValuesCollection::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandardValuesCollection_CopyTo_mA319F11A11360C258FCEEF3C9EFA53D504BD7C3E (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandardValuesCollection_CopyTo_mA319F11A11360C258FCEEF3C9EFA53D504BD7C3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_values_0();
RuntimeArray * L_1 = ___array0;
int32_t L_2 = ___index1;
NullCheck(L_0);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_0, L_1, L_2);
return;
}
}
// System.Collections.IEnumerator System.ComponentModel.TypeConverter_StandardValuesCollection::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_values_0();
NullCheck(L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_0);
return L_1;
}
}
// System.Int32 System.ComponentModel.TypeConverter_StandardValuesCollection::System.Collections.ICollection.get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StandardValuesCollection_System_Collections_ICollection_get_Count_m3B04852950AC738A4E8AF41974DA6AFB1CC2BAD6 (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean System.ComponentModel.TypeConverter_StandardValuesCollection::System.Collections.ICollection.get_IsSynchronized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandardValuesCollection_System_Collections_ICollection_get_IsSynchronized_m9A74F835BFD37AA9DC9458A0B7D3FE739612F9EA (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.ComponentModel.TypeConverter_StandardValuesCollection::System.Collections.ICollection.get_SyncRoot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StandardValuesCollection_System_Collections_ICollection_get_SyncRoot_mF42D50E0E5A77DD85C897C37352834E2D4023810 (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
{
return NULL;
}
}
// System.Void System.ComponentModel.TypeConverter_StandardValuesCollection::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandardValuesCollection_System_Collections_ICollection_CopyTo_m27D62D0B27B9151F55B3F3069E72B1B8ABEC5447 (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
int32_t L_1 = ___index1;
StandardValuesCollection_CopyTo_mA319F11A11360C258FCEEF3C9EFA53D504BD7C3E(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Collections.IEnumerator System.ComponentModel.TypeConverter_StandardValuesCollection::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StandardValuesCollection_System_Collections_IEnumerable_GetEnumerator_m017DACA9E9C081C4964887FF9E1F7D8A36B7BD8F (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F(__this, /*hidden argument*/NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.TypeConverterAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverterAttribute__ctor_mD0795A29B6FD59978CAAC6DAF3AC7EC564C519A5 (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverterAttribute__ctor_mD0795A29B6FD59978CAAC6DAF3AC7EC564C519A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
__this->set_typeName_0(L_0);
return;
}
}
// System.Void System.ComponentModel.TypeConverterAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverterAttribute__ctor_m52D4E66A914F1A04F2F10A7131A701670225D41C (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___type0;
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_0);
__this->set_typeName_0(L_1);
return;
}
}
// System.Void System.ComponentModel.TypeConverterAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverterAttribute__ctor_m61FDD082554FD8ECBF61BFFF62345F0A15D98391 (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, String_t* ___typeName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverterAttribute__ctor_m61FDD082554FD8ECBF61BFFF62345F0A15D98391_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___typeName0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
NullCheck(L_0);
String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_0, L_1, /*hidden argument*/NULL);
String_t* L_2 = ___typeName0;
__this->set_typeName_0(L_2);
return;
}
}
// System.String System.ComponentModel.TypeConverterAttribute::get_ConverterTypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8 (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_typeName_0();
return L_0;
}
}
// System.Boolean System.ComponentModel.TypeConverterAttribute::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverterAttribute_Equals_mDA74DFC28CC7ABC315407EDD1AAC14531C5F6AC4 (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverterAttribute_Equals_mDA74DFC28CC7ABC315407EDD1AAC14531C5F6AC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
V_0 = ((TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 *)IsInstSealed((RuntimeObject*)L_0, TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var));
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_2 = V_0;
NullCheck(L_2);
String_t* L_3 = TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8_inline(L_2, /*hidden argument*/NULL);
String_t* L_4 = __this->get_typeName_0();
bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_001c:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.TypeConverterAttribute::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeConverterAttribute_GetHashCode_m35874D49724DA3F72C6C2575FD595A711A659DAA (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_typeName_0();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
return L_1;
}
}
// System.Void System.ComponentModel.TypeConverterAttribute::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverterAttribute__cctor_mB1A775F56A5933A17CF349BD466B0CCE66B1078A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverterAttribute__cctor_mB1A775F56A5933A17CF349BD466B0CCE66B1078A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_0 = (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 *)il2cpp_codegen_object_new(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var);
TypeConverterAttribute__ctor_mD0795A29B6FD59978CAAC6DAF3AC7EC564C519A5(L_0, /*hidden argument*/NULL);
((TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_StaticFields*)il2cpp_codegen_static_fields_for(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var))->set_Default_1(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.TypeDescriptionProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptionProvider__ctor_m9A35B40DE4D4CCB86B72BD3BABF375982DB32912 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeDescriptionProvider::.ctor(System.ComponentModel.TypeDescriptionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptionProvider__ctor_mC890802DA5DA9EC833BD5E6BAE859C2E3EDD0553 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___parent0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = ___parent0;
__this->set__parent_0(L_0);
return;
}
}
// System.Object System.ComponentModel.TypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeDescriptionProvider_CreateInstance_m5BE90DBA6F931D0EC8A7DA9162EDC27B8F141B97 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, RuntimeObject* ___provider0, Type_t * ___objectType1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___argTypes2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptionProvider_CreateInstance_m5BE90DBA6F931D0EC8A7DA9162EDC27B8F141B97_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = __this->get__parent_0();
if (!L_0)
{
goto IL_0019;
}
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_1 = __this->get__parent_0();
RuntimeObject* L_2 = ___provider0;
Type_t * L_3 = ___objectType1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = ___argTypes2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___args3;
NullCheck(L_1);
RuntimeObject * L_6 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(4 /* System.Object System.ComponentModel.TypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) */, L_1, L_2, L_3, L_4, L_5);
return L_6;
}
IL_0019:
{
Type_t * L_7 = ___objectType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_8 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_7, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_002d;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_9 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_9, _stringLiteralD2AD511C8E3470443090EE15D44BB5849824FB7A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, TypeDescriptionProvider_CreateInstance_m5BE90DBA6F931D0EC8A7DA9162EDC27B8F141B97_RuntimeMethod_var);
}
IL_002d:
{
Type_t * L_10 = ___objectType1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = ___args3;
RuntimeObject * L_12 = SecurityUtils_SecureCreateInstance_m291D8D6709E79129FDE3E1EA01D37F1D40E73EA4(L_10, L_11, /*hidden argument*/NULL);
return L_12;
}
}
// System.Collections.IDictionary System.ComponentModel.TypeDescriptionProvider::GetCache(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptionProvider_GetCache_m9D7FBAC80ED350BC4C50D5C58FDB8F5C6DCDC2E8 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = __this->get__parent_0();
if (!L_0)
{
goto IL_0015;
}
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_1 = __this->get__parent_0();
RuntimeObject * L_2 = ___instance0;
NullCheck(L_1);
RuntimeObject* L_3 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(5 /* System.Collections.IDictionary System.ComponentModel.TypeDescriptionProvider::GetCache(System.Object) */, L_1, L_2);
return L_3;
}
IL_0015:
{
return (RuntimeObject*)NULL;
}
}
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetExtendedTypeDescriptor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptionProvider_GetExtendedTypeDescriptor_mA6C0C2BCF78F4018FA4C2278CBFD07E2E77E3347 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetExtendedTypeDescriptor_mA6C0C2BCF78F4018FA4C2278CBFD07E2E77E3347_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = __this->get__parent_0();
if (!L_0)
{
goto IL_0015;
}
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_1 = __this->get__parent_0();
RuntimeObject * L_2 = ___instance0;
NullCheck(L_1);
RuntimeObject* L_3 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(6 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetExtendedTypeDescriptor(System.Object) */, L_1, L_2);
return L_3;
}
IL_0015:
{
EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * L_4 = __this->get__emptyDescriptor_1();
if (L_4)
{
goto IL_0028;
}
}
{
EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * L_5 = (EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 *)il2cpp_codegen_object_new(EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8_il2cpp_TypeInfo_var);
EmptyCustomTypeDescriptor__ctor_m3AF937D2171D0224FC6501A9AFA23F89BAC5B1D0(L_5, /*hidden argument*/NULL);
__this->set__emptyDescriptor_1(L_5);
}
IL_0028:
{
EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * L_6 = __this->get__emptyDescriptor_1();
return L_6;
}
}
// System.ComponentModel.IExtenderProvider[] System.ComponentModel.TypeDescriptionProvider::GetExtenderProviders(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* TypeDescriptionProvider_GetExtenderProviders_mF8C68F2BA1E5CDDFAD9618C257F2D743FD10FF39 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetExtenderProviders_mF8C68F2BA1E5CDDFAD9618C257F2D743FD10FF39_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = __this->get__parent_0();
if (!L_0)
{
goto IL_0015;
}
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_1 = __this->get__parent_0();
RuntimeObject * L_2 = ___instance0;
NullCheck(L_1);
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_3 = VirtFuncInvoker1< IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*, RuntimeObject * >::Invoke(7 /* System.ComponentModel.IExtenderProvider[] System.ComponentModel.TypeDescriptionProvider::GetExtenderProviders(System.Object) */, L_1, L_2);
return L_3;
}
IL_0015:
{
RuntimeObject * L_4 = ___instance0;
if (L_4)
{
goto IL_0023;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, TypeDescriptionProvider_GetExtenderProviders_mF8C68F2BA1E5CDDFAD9618C257F2D743FD10FF39_RuntimeMethod_var);
}
IL_0023:
{
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_6 = (IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*)(IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*)SZArrayNew(IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031_il2cpp_TypeInfo_var, (uint32_t)0);
return L_6;
}
}
// System.String System.ComponentModel.TypeDescriptionProvider::GetFullComponentName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptionProvider_GetFullComponentName_mEB358F23FD79D7EE2016CA06ECDC47D6036AEF43 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetFullComponentName_mEB358F23FD79D7EE2016CA06ECDC47D6036AEF43_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = __this->get__parent_0();
if (!L_0)
{
goto IL_0015;
}
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_1 = __this->get__parent_0();
RuntimeObject * L_2 = ___component0;
NullCheck(L_1);
String_t* L_3 = VirtFuncInvoker1< String_t*, RuntimeObject * >::Invoke(8 /* System.String System.ComponentModel.TypeDescriptionProvider::GetFullComponentName(System.Object) */, L_1, L_2);
return L_3;
}
IL_0015:
{
RuntimeObject * L_4 = ___component0;
RuntimeObject* L_5 = TypeDescriptionProvider_GetTypeDescriptor_m04847083CB9DB8E7BF69CFCD06283A8D817293A0(__this, L_4, /*hidden argument*/NULL);
NullCheck(L_5);
String_t* L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(2 /* System.String System.ComponentModel.ICustomTypeDescriptor::GetComponentName() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_5);
return L_6;
}
}
// System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptionProvider_GetReflectionType_m5A731257A8DCBE75C4FE588A1CC73EE2FFCA7E16 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___objectType0;
Type_t * L_1 = VirtFuncInvoker2< Type_t *, Type_t *, RuntimeObject * >::Invoke(9 /* System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type,System.Object) */, __this, L_0, NULL);
return L_1;
}
}
// System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptionProvider_GetReflectionType_mB8AF537325510600B0C5A2B9940C970FA9DF23E4 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetReflectionType_mB8AF537325510600B0C5A2B9940C970FA9DF23E4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___instance0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptionProvider_GetReflectionType_mB8AF537325510600B0C5A2B9940C970FA9DF23E4_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___instance0;
NullCheck(L_2);
Type_t * L_3 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_2, /*hidden argument*/NULL);
RuntimeObject * L_4 = ___instance0;
Type_t * L_5 = VirtFuncInvoker2< Type_t *, Type_t *, RuntimeObject * >::Invoke(9 /* System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type,System.Object) */, __this, L_3, L_4);
return L_5;
}
}
// System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptionProvider_GetReflectionType_mEDACDCA9A57ADF6F376DD6847315931630CE538D (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = __this->get__parent_0();
if (!L_0)
{
goto IL_0016;
}
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_1 = __this->get__parent_0();
Type_t * L_2 = ___objectType0;
RuntimeObject * L_3 = ___instance1;
NullCheck(L_1);
Type_t * L_4 = VirtFuncInvoker2< Type_t *, Type_t *, RuntimeObject * >::Invoke(9 /* System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type,System.Object) */, L_1, L_2, L_3);
return L_4;
}
IL_0016:
{
Type_t * L_5 = ___objectType0;
return L_5;
}
}
// System.Type System.ComponentModel.TypeDescriptionProvider::GetRuntimeType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptionProvider_GetRuntimeType_m981840CB2ED5D8AA352E4AE15691C5B883AD0099 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, Type_t * ___reflectionType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetRuntimeType_m981840CB2ED5D8AA352E4AE15691C5B883AD0099_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = __this->get__parent_0();
if (!L_0)
{
goto IL_0015;
}
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_1 = __this->get__parent_0();
Type_t * L_2 = ___reflectionType0;
NullCheck(L_1);
Type_t * L_3 = VirtFuncInvoker1< Type_t *, Type_t * >::Invoke(10 /* System.Type System.ComponentModel.TypeDescriptionProvider::GetRuntimeType(System.Type) */, L_1, L_2);
return L_3;
}
IL_0015:
{
Type_t * L_4 = ___reflectionType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_4, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0029;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_6 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_6, _stringLiteralB16716A1E72199716214493190761B3375C63F23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, TypeDescriptionProvider_GetRuntimeType_m981840CB2ED5D8AA352E4AE15691C5B883AD0099_RuntimeMethod_var);
}
IL_0029:
{
Type_t * L_7 = ___reflectionType0;
NullCheck(L_7);
Type_t * L_8 = Type_GetType_m6C9E6D55EC53587A0851176DA1D27A165724773E(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
Assembly_t * L_9 = VirtFuncInvoker0< Assembly_t * >::Invoke(27 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_8);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
Assembly_t * L_12 = VirtFuncInvoker0< Assembly_t * >::Invoke(27 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_11);
bool L_13 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_9, L_12, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_004c;
}
}
{
Type_t * L_14 = ___reflectionType0;
return L_14;
}
IL_004c:
{
Type_t * L_15 = ___reflectionType0;
NullCheck(L_15);
Type_t * L_16 = VirtFuncInvoker0< Type_t * >::Invoke(136 /* System.Type System.Type::get_UnderlyingSystemType() */, L_15);
return L_16;
}
}
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptionProvider_GetTypeDescriptor_m8CC34F54B8A643F99C2F4E4C254D661D3DC212D2 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___objectType0;
RuntimeObject* L_1 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(11 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, __this, L_0, NULL);
return L_1;
}
}
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptionProvider_GetTypeDescriptor_m04847083CB9DB8E7BF69CFCD06283A8D817293A0 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetTypeDescriptor_m04847083CB9DB8E7BF69CFCD06283A8D817293A0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___instance0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptionProvider_GetTypeDescriptor_m04847083CB9DB8E7BF69CFCD06283A8D817293A0_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___instance0;
NullCheck(L_2);
Type_t * L_3 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_2, /*hidden argument*/NULL);
RuntimeObject * L_4 = ___instance0;
RuntimeObject* L_5 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(11 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, __this, L_3, L_4);
return L_5;
}
}
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptionProvider_GetTypeDescriptor_mE0B51D84608BE9DAB9597220D009C8F03ED7EE39 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetTypeDescriptor_mE0B51D84608BE9DAB9597220D009C8F03ED7EE39_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = __this->get__parent_0();
if (!L_0)
{
goto IL_0016;
}
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_1 = __this->get__parent_0();
Type_t * L_2 = ___objectType0;
RuntimeObject * L_3 = ___instance1;
NullCheck(L_1);
RuntimeObject* L_4 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(11 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, L_1, L_2, L_3);
return L_4;
}
IL_0016:
{
EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * L_5 = __this->get__emptyDescriptor_1();
if (L_5)
{
goto IL_0029;
}
}
{
EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * L_6 = (EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 *)il2cpp_codegen_object_new(EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8_il2cpp_TypeInfo_var);
EmptyCustomTypeDescriptor__ctor_m3AF937D2171D0224FC6501A9AFA23F89BAC5B1D0(L_6, /*hidden argument*/NULL);
__this->set__emptyDescriptor_1(L_6);
}
IL_0029:
{
EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * L_7 = __this->get__emptyDescriptor_1();
return L_7;
}
}
// System.Boolean System.ComponentModel.TypeDescriptionProvider::IsSupportedType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeDescriptionProvider_IsSupportedType_m1E8F92E78E758F5D520EA5562878A1B54303E61F (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptionProvider_IsSupportedType_m1E8F92E78E758F5D520EA5562878A1B54303E61F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TypeDescriptionProvider_IsSupportedType_m1E8F92E78E758F5D520EA5562878A1B54303E61F_RuntimeMethod_var);
}
IL_0014:
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_3 = __this->get__parent_0();
if (!L_3)
{
goto IL_0029;
}
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_4 = __this->get__parent_0();
Type_t * L_5 = ___type0;
NullCheck(L_4);
bool L_6 = VirtFuncInvoker1< bool, Type_t * >::Invoke(12 /* System.Boolean System.ComponentModel.TypeDescriptionProvider::IsSupportedType(System.Type) */, L_4, L_5);
return L_6;
}
IL_0029:
{
return (bool)1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.TypeDescriptionProvider_EmptyCustomTypeDescriptor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyCustomTypeDescriptor__ctor_m3AF937D2171D0224FC6501A9AFA23F89BAC5B1D0 (EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * __this, const RuntimeMethod* method)
{
{
CustomTypeDescriptor__ctor_mD442A0BE59DB1D9EF0AC695FC857C18570B2AAD2(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.TypeDescriptionProviderAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptionProviderAttribute__ctor_m10489BA811D0D61760F9C90B2D72542A08A3F90A (TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034 * __this, String_t* ___typeName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptionProviderAttribute__ctor_m10489BA811D0D61760F9C90B2D72542A08A3F90A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___typeName0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9FA22049CF6367C2DB11AB15BC3EDE8D5104CB06, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptionProviderAttribute__ctor_m10489BA811D0D61760F9C90B2D72542A08A3F90A_RuntimeMethod_var);
}
IL_0014:
{
String_t* L_2 = ___typeName0;
__this->set__typeName_0(L_2);
return;
}
}
// System.Void System.ComponentModel.TypeDescriptionProviderAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptionProviderAttribute__ctor_mFF54F364489EC3FCDA8D2980796604488C0D3121 (TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptionProviderAttribute__ctor_mFF54F364489EC3FCDA8D2980796604488C0D3121_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001a;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TypeDescriptionProviderAttribute__ctor_mFF54F364489EC3FCDA8D2980796604488C0D3121_RuntimeMethod_var);
}
IL_001a:
{
Type_t * L_3 = ___type0;
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_3);
__this->set__typeName_0(L_4);
return;
}
}
// System.String System.ComponentModel.TypeDescriptionProviderAttribute::get_TypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptionProviderAttribute_get_TypeName_m6C47AACE737391F28BD1C0A762AABBECA8DB8F75 (TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__typeName_0();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ComponentModel.TypeDescriptor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor__ctor_m65CDA03C808FB0C96C7C89BF20CC2169A6F01E18 (TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.ComponentModel.IComNativeDescriptorHandler System.ComponentModel.TypeDescriptor::get_ComNativeDescriptorHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_get_ComNativeDescriptorHandler_m19CE21FBFA3BF90423D1CC80B4D3967BB43F8B2D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_get_ComNativeDescriptorHandler_m19CE21FBFA3BF90423D1CC80B4D3967BB43F8B2D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_0 = NULL;
ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D * V_1 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Type_t * L_0 = TypeDescriptor_get_ComObjectType_mD9A4F9CDA5863A62DEE85F88DECB3FF37CE42A4F(/*hidden argument*/NULL);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_1 = TypeDescriptor_NodeFor_m767FF87E78839CA052D9BA45FC6E18BD28F8E2E2(L_0, /*hidden argument*/NULL);
V_0 = L_1;
V_1 = (ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D *)NULL;
}
IL_000d:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_2 = V_0;
NullCheck(L_2);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_3 = L_2->get_Provider_3();
V_1 = ((ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D *)IsInstSealed((RuntimeObject*)L_3, ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D_il2cpp_TypeInfo_var));
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_4 = V_0;
NullCheck(L_4);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_5 = L_4->get_Next_2();
V_0 = L_5;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_6 = V_0;
if (!L_6)
{
goto IL_0026;
}
}
{
ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D * L_7 = V_1;
if (!L_7)
{
goto IL_000d;
}
}
IL_0026:
{
ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D * L_8 = V_1;
if (!L_8)
{
goto IL_0030;
}
}
{
ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D * L_9 = V_1;
NullCheck(L_9);
RuntimeObject* L_10 = ComNativeDescriptionProvider_get_Handler_mFDAA26D067DE2DE3A878E18B6E305D122366C6F9_inline(L_9, /*hidden argument*/NULL);
return L_10;
}
IL_0030:
{
return (RuntimeObject*)NULL;
}
}
// System.Void System.ComponentModel.TypeDescriptor::set_ComNativeDescriptorHandler(System.ComponentModel.IComNativeDescriptorHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_set_ComNativeDescriptorHandler_m10F89A3F895163274E0E54458D8BBE1FA418BE63 (RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_set_ComNativeDescriptorHandler_m10F89A3F895163274E0E54458D8BBE1FA418BE63_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Type_t * L_0 = TypeDescriptor_get_ComObjectType_mD9A4F9CDA5863A62DEE85F88DECB3FF37CE42A4F(/*hidden argument*/NULL);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_1 = TypeDescriptor_NodeFor_m767FF87E78839CA052D9BA45FC6E18BD28F8E2E2(L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_0014;
}
IL_000d:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_2 = V_0;
NullCheck(L_2);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_3 = L_2->get_Next_2();
V_0 = L_3;
}
IL_0014:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_4 = V_0;
if (!L_4)
{
goto IL_0024;
}
}
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_5 = V_0;
NullCheck(L_5);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_6 = L_5->get_Provider_3();
if (!((ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D *)IsInstSealed((RuntimeObject*)L_6, ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D_il2cpp_TypeInfo_var)))
{
goto IL_000d;
}
}
IL_0024:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_7 = V_0;
if (L_7)
{
goto IL_0038;
}
}
{
RuntimeObject* L_8 = ___value0;
ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D * L_9 = (ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D *)il2cpp_codegen_object_new(ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D_il2cpp_TypeInfo_var);
ComNativeDescriptionProvider__ctor_mCB532BF72BDE7FBEFD35AEEBF76C6A4B9CE8684C(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Type_t * L_10 = TypeDescriptor_get_ComObjectType_mD9A4F9CDA5863A62DEE85F88DECB3FF37CE42A4F(/*hidden argument*/NULL);
TypeDescriptor_AddProvider_mD81A072B4AB0D7801F9297879CB43071C8740C9A(L_9, L_10, /*hidden argument*/NULL);
return;
}
IL_0038:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_11 = V_0;
NullCheck(L_11);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_12 = L_11->get_Provider_3();
RuntimeObject* L_13 = ___value0;
NullCheck(((ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D *)CastclassSealed((RuntimeObject*)L_12, ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D_il2cpp_TypeInfo_var)));
ComNativeDescriptionProvider_set_Handler_m413D6825B451C480C8311EEB516FDE590D405542_inline(((ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D *)CastclassSealed((RuntimeObject*)L_12, ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D_il2cpp_TypeInfo_var)), L_13, /*hidden argument*/NULL);
return;
}
}
// System.Type System.ComponentModel.TypeDescriptor::get_ComObjectType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptor_get_ComObjectType_mD9A4F9CDA5863A62DEE85F88DECB3FF37CE42A4F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_get_ComObjectType_mD9A4F9CDA5863A62DEE85F88DECB3FF37CE42A4F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (TypeDescriptorComObject_t531EE8D60EE83A09B6539D079E837E68DC289B76_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Type System.ComponentModel.TypeDescriptor::get_InterfaceType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptor_get_InterfaceType_m0DB3316CB939FE67643C044BAF39EB4F69D758E6 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_get_InterfaceType_m0DB3316CB939FE67643C044BAF39EB4F69D758E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (TypeDescriptorInterface_t872F528EF86C66103396D4D796A932A0FF88C4D7_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Int32 System.ComponentModel.TypeDescriptor::get_MetadataVersion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeDescriptor_get_MetadataVersion_m70C215D1B15DCBD67B58127EB0E6D7E6F5D020DC (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_get_MetadataVersion_m70C215D1B15DCBD67B58127EB0E6D7E6F5D020DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
int32_t L_0 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__metadataVersion_4();
return L_0;
}
}
// System.Void System.ComponentModel.TypeDescriptor::add_Refreshed(System.ComponentModel.RefreshEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_add_Refreshed_m25494811B3F0C094735A304248AE786509F7399E (RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_add_Refreshed_m25494811B3F0C094735A304248AE786509F7399E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * V_0 = NULL;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * V_1 = NULL;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * V_2 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_0 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get_Refreshed_15();
V_0 = L_0;
}
IL_0006:
{
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_1 = V_0;
V_1 = L_1;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_2 = V_1;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 *)CastclassSealed((RuntimeObject*)L_4, RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27_il2cpp_TypeInfo_var));
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_5 = V_2;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_6 = V_1;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_7 = InterlockedCompareExchangeImpl<RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 *>((RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 **)(((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get_address_of_Refreshed_15()), L_5, L_6);
V_0 = L_7;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_8 = V_0;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_9 = V_1;
if ((!(((RuntimeObject*)(RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 *)L_8) == ((RuntimeObject*)(RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 *)L_9))))
{
goto IL_0006;
}
}
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::remove_Refreshed(System.ComponentModel.RefreshEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_remove_Refreshed_m6EABBF22B7AB310BDCC581F101C2724832A00BE9 (RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_remove_Refreshed_m6EABBF22B7AB310BDCC581F101C2724832A00BE9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * V_0 = NULL;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * V_1 = NULL;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * V_2 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_0 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get_Refreshed_15();
V_0 = L_0;
}
IL_0006:
{
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_1 = V_0;
V_1 = L_1;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_2 = V_1;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 *)CastclassSealed((RuntimeObject*)L_4, RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27_il2cpp_TypeInfo_var));
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_5 = V_2;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_6 = V_1;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_7 = InterlockedCompareExchangeImpl<RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 *>((RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 **)(((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get_address_of_Refreshed_15()), L_5, L_6);
V_0 = L_7;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_8 = V_0;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_9 = V_1;
if ((!(((RuntimeObject*)(RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 *)L_8) == ((RuntimeObject*)(RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 *)L_9))))
{
goto IL_0006;
}
}
{
return;
}
}
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::AddAttributes(System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * TypeDescriptor_AddAttributes_mB0746794E9E442A99B5F8EEDB072D9DB2EE1F85B (Type_t * ___type0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_AddAttributes_mB0746794E9E442A99B5F8EEDB072D9DB2EE1F85B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TypeDescriptor_AddAttributes_mB0746794E9E442A99B5F8EEDB072D9DB2EE1F85B_RuntimeMethod_var);
}
IL_0014:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = ___attributes1;
if (L_3)
{
goto IL_0022;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralD7F67A250D8254339CC572B200990D99FE1BAF29, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TypeDescriptor_AddAttributes_mB0746794E9E442A99B5F8EEDB072D9DB2EE1F85B_RuntimeMethod_var);
}
IL_0022:
{
Type_t * L_5 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_6 = TypeDescriptor_GetProvider_m3265CFAFF759A9DC540031E2401F96CD00BE9BF7(L_5, /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_7 = ___attributes1;
AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF * L_8 = (AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF *)il2cpp_codegen_object_new(AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF_il2cpp_TypeInfo_var);
AttributeProvider__ctor_mC68C27A36CD20DF71F5F1FD7A4EF3DC2C0D3BD0A(L_8, L_6, L_7, /*hidden argument*/NULL);
AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF * L_9 = L_8;
Type_t * L_10 = ___type0;
TypeDescriptor_AddProvider_mD81A072B4AB0D7801F9297879CB43071C8740C9A(L_9, L_10, /*hidden argument*/NULL);
return L_9;
}
}
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::AddAttributes(System.Object,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * TypeDescriptor_AddAttributes_mD1811913AC4018397C137D19A21CC41591D7C227 (RuntimeObject * ___instance0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_AddAttributes_mD1811913AC4018397C137D19A21CC41591D7C227_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___instance0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_AddAttributes_mD1811913AC4018397C137D19A21CC41591D7C227_RuntimeMethod_var);
}
IL_000e:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_2 = ___attributes1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralD7F67A250D8254339CC572B200990D99FE1BAF29, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeDescriptor_AddAttributes_mD1811913AC4018397C137D19A21CC41591D7C227_RuntimeMethod_var);
}
IL_001c:
{
RuntimeObject * L_4 = ___instance0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_5 = TypeDescriptor_GetProvider_mCD95C62422DB0D4811ACE64E72D3C4C5B25BDD90(L_4, /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_6 = ___attributes1;
AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF * L_7 = (AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF *)il2cpp_codegen_object_new(AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF_il2cpp_TypeInfo_var);
AttributeProvider__ctor_mC68C27A36CD20DF71F5F1FD7A4EF3DC2C0D3BD0A(L_7, L_5, L_6, /*hidden argument*/NULL);
AttributeProvider_t67BCE87062C434FBC0E369F34CCB196661DABFDF * L_8 = L_7;
RuntimeObject * L_9 = ___instance0;
TypeDescriptor_AddProvider_mEB5B4337E9B7531C2335CE716429A9881ECD92C1(L_8, L_9, /*hidden argument*/NULL);
return L_8;
}
}
// System.Void System.ComponentModel.TypeDescriptor::AddEditorTable(System.Type,System.Collections.Hashtable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_AddEditorTable_mD8428DBDFF99E14DE047D67DED8C32EE7B652350 (Type_t * ___editorBaseType0, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___table1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_AddEditorTable_mD8428DBDFF99E14DE047D67DED8C32EE7B652350_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___editorBaseType0;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = ___table1;
IL2CPP_RUNTIME_CLASS_INIT(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
ReflectTypeDescriptionProvider_AddEditorTable_m990D5117A898C6C261F5195516D1032F04028262(L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::AddProvider(System.ComponentModel.TypeDescriptionProvider,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_AddProvider_mD81A072B4AB0D7801F9297879CB43071C8740C9A (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, Type_t * ___type1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_AddProvider_mD81A072B4AB0D7801F9297879CB43071C8740C9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * V_0 = NULL;
bool V_1 = false;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_2 = NULL;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = ___provider0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral90C5D1358D128117989FC21F2897A25C99205E50, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_AddProvider_mD81A072B4AB0D7801F9297879CB43071C8740C9A_RuntimeMethod_var);
}
IL_000e:
{
Type_t * L_2 = ___type1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0022;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TypeDescriptor_AddProvider_mD81A072B4AB0D7801F9297879CB43071C8740C9A_RuntimeMethod_var);
}
IL_0022:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_5 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
V_0 = L_5;
V_1 = (bool)0;
}
IL_002a:
try
{ // begin try (depth: 1)
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_6 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_6, (bool*)(&V_1), /*hidden argument*/NULL);
Type_t * L_7 = ___type1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_8 = TypeDescriptor_NodeFor_m47CC24E4CFA599136DD05F6DD9A72A4B309D0D90(L_7, (bool)1, /*hidden argument*/NULL);
V_2 = L_8;
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_9 = ___provider0;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_10 = (TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)il2cpp_codegen_object_new(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var);
TypeDescriptionNode__ctor_m18D16A33443D7C6C32D09203AE94E5A5DA65BDFF(L_10, L_9, /*hidden argument*/NULL);
V_3 = L_10;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_11 = V_3;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_12 = V_2;
NullCheck(L_11);
L_11->set_Next_2(L_12);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_13 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
Type_t * L_14 = ___type1;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_15 = V_3;
NullCheck(L_13);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_13, L_14, L_15);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_16 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTypeTable_1();
NullCheck(L_16);
VirtActionInvoker0::Invoke(24 /* System.Void System.Collections.Hashtable::Clear() */, L_16);
IL2CPP_LEAVE(0x6A, FINALLY_0060);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0060;
}
FINALLY_0060:
{ // begin finally (depth: 1)
{
bool L_17 = V_1;
if (!L_17)
{
goto IL_0069;
}
}
IL_0063:
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_18 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_18, /*hidden argument*/NULL);
}
IL_0069:
{
IL2CPP_END_FINALLY(96)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(96)
{
IL2CPP_JUMP_TBL(0x6A, IL_006a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_006a:
{
Type_t * L_19 = ___type1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_Refresh_m3EE0C2B17D9683C6C719C590D0D9744D16F58027(L_19, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::AddProvider(System.ComponentModel.TypeDescriptionProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_AddProvider_mEB5B4337E9B7531C2335CE716429A9881ECD92C1 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_AddProvider_mEB5B4337E9B7531C2335CE716429A9881ECD92C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * V_1 = NULL;
bool V_2 = false;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_3 = NULL;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = ___provider0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral90C5D1358D128117989FC21F2897A25C99205E50, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_AddProvider_mEB5B4337E9B7531C2335CE716429A9881ECD92C1_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___instance1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeDescriptor_AddProvider_mEB5B4337E9B7531C2335CE716429A9881ECD92C1_RuntimeMethod_var);
}
IL_001c:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_4 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
V_1 = L_4;
V_2 = (bool)0;
}
IL_0024:
try
{ // begin try (depth: 1)
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_5 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_5, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_6 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
RuntimeObject * L_7 = ___instance1;
NullCheck(L_6);
bool L_8 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_6, L_7);
V_0 = L_8;
RuntimeObject * L_9 = ___instance1;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_10 = TypeDescriptor_NodeFor_m90ADBC22F629303B34247E6000724298EDDF3E61(L_9, (bool)1, /*hidden argument*/NULL);
V_3 = L_10;
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_11 = ___provider0;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_12 = (TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)il2cpp_codegen_object_new(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var);
TypeDescriptionNode__ctor_m18D16A33443D7C6C32D09203AE94E5A5DA65BDFF(L_12, L_11, /*hidden argument*/NULL);
V_4 = L_12;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_13 = V_4;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_14 = V_3;
NullCheck(L_13);
L_13->set_Next_2(L_14);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_15 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
RuntimeObject * L_16 = ___instance1;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_17 = V_4;
NullCheck(L_15);
WeakHashtable_SetWeak_m3DA0C3EB8F3903CBE44CAA14B13670A69B236F35(L_15, L_16, L_17, /*hidden argument*/NULL);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_18 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTypeTable_1();
NullCheck(L_18);
VirtActionInvoker0::Invoke(24 /* System.Void System.Collections.Hashtable::Clear() */, L_18);
IL2CPP_LEAVE(0x73, FINALLY_0069);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0069;
}
FINALLY_0069:
{ // begin finally (depth: 1)
{
bool L_19 = V_2;
if (!L_19)
{
goto IL_0072;
}
}
IL_006c:
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_20 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_20, /*hidden argument*/NULL);
}
IL_0072:
{
IL2CPP_END_FINALLY(105)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(105)
{
IL2CPP_JUMP_TBL(0x73, IL_0073)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0073:
{
bool L_21 = V_0;
if (!L_21)
{
goto IL_007d;
}
}
{
RuntimeObject * L_22 = ___instance1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_Refresh_mEC7669AD5516911D4C54E02A9F073CF89E59DC6E(L_22, (bool)0, /*hidden argument*/NULL);
}
IL_007d:
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_AddProviderTransparent_m9F8960CB1DFA72AC6314EB663EFE25E5B469CF72 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, Type_t * ___type1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_AddProviderTransparent_m9F8960CB1DFA72AC6314EB663EFE25E5B469CF72_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = ___provider0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral90C5D1358D128117989FC21F2897A25C99205E50, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_AddProviderTransparent_m9F8960CB1DFA72AC6314EB663EFE25E5B469CF72_RuntimeMethod_var);
}
IL_000e:
{
Type_t * L_2 = ___type1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0022;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TypeDescriptor_AddProviderTransparent_m9F8960CB1DFA72AC6314EB663EFE25E5B469CF72_RuntimeMethod_var);
}
IL_0022:
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_5 = ___provider0;
Type_t * L_6 = ___type1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_AddProvider_mD81A072B4AB0D7801F9297879CB43071C8740C9A(L_5, L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_AddProviderTransparent_m0D344B2FDDCC7DFA802B757229B8915BFD5491CC (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_AddProviderTransparent_m0D344B2FDDCC7DFA802B757229B8915BFD5491CC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = ___provider0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral90C5D1358D128117989FC21F2897A25C99205E50, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_AddProviderTransparent_m0D344B2FDDCC7DFA802B757229B8915BFD5491CC_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___instance1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeDescriptor_AddProviderTransparent_m0D344B2FDDCC7DFA802B757229B8915BFD5491CC_RuntimeMethod_var);
}
IL_001c:
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_4 = ___provider0;
RuntimeObject * L_5 = ___instance1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_AddProvider_mEB5B4337E9B7531C2335CE716429A9881ECD92C1(L_4, L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::CheckDefaultProvider(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_CheckDefaultProvider_m992A2ED0D5F3621C00369DF8CF35D6AFB17D3ADC (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_CheckDefaultProvider_m992A2ED0D5F3621C00369DF8CF35D6AFB17D3ADC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
bool V_1 = false;
RuntimeObject * V_2 = NULL;
bool V_3 = false;
int32_t V_4 = 0;
Type_t * V_5 = NULL;
Type_t * V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__defaultProviders_2();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_003a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__internalSyncObject_14();
V_2 = L_1;
V_3 = (bool)0;
}
IL_0011:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_2;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_3), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__defaultProviders_2();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_002e;
}
}
IL_0022:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->set__defaultProviders_2(L_4);
}
IL_002e:
{
IL2CPP_LEAVE(0x3A, FINALLY_0030);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0030;
}
FINALLY_0030:
{ // begin finally (depth: 1)
{
bool L_5 = V_3;
if (!L_5)
{
goto IL_0039;
}
}
IL_0033:
{
RuntimeObject * L_6 = V_2;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_0039:
{
IL2CPP_END_FINALLY(48)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(48)
{
IL2CPP_JUMP_TBL(0x3A, IL_003a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003a:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__defaultProviders_2();
il2cpp_codegen_memory_barrier();
Type_t * L_8 = ___type0;
NullCheck(L_7);
bool L_9 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_7, L_8);
if (!L_9)
{
goto IL_004a;
}
}
{
return;
}
IL_004a:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject * L_10 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__internalSyncObject_14();
V_2 = L_10;
V_3 = (bool)0;
}
IL_0052:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_11 = V_2;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_11, (bool*)(&V_3), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_12 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__defaultProviders_2();
il2cpp_codegen_memory_barrier();
Type_t * L_13 = ___type0;
NullCheck(L_12);
bool L_14 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_12, L_13);
if (!L_14)
{
goto IL_006e;
}
}
IL_0069:
{
IL2CPP_LEAVE(0x11C, FINALLY_007e);
}
IL_006e:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_15 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__defaultProviders_2();
il2cpp_codegen_memory_barrier();
Type_t * L_16 = ___type0;
NullCheck(L_15);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_15, L_16, NULL);
IL2CPP_LEAVE(0x88, FINALLY_007e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_007e;
}
FINALLY_007e:
{ // begin finally (depth: 1)
{
bool L_17 = V_3;
if (!L_17)
{
goto IL_0087;
}
}
IL_0081:
{
RuntimeObject * L_18 = V_2;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_18, /*hidden argument*/NULL);
}
IL_0087:
{
IL2CPP_END_FINALLY(126)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(126)
{
IL2CPP_JUMP_TBL(0x11C, IL_011c)
IL2CPP_JUMP_TBL(0x88, IL_0088)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0088:
{
Type_t * L_19 = ___type0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_20 = { reinterpret_cast<intptr_t> (TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_21 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_20, /*hidden argument*/NULL);
NullCheck(L_19);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_19, L_21, (bool)0);
V_0 = L_22;
V_1 = (bool)0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_0;
NullCheck(L_23);
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))), (int32_t)1));
goto IL_00f1;
}
IL_00a5:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = V_0;
int32_t L_25 = V_4;
NullCheck(L_24);
int32_t L_26 = L_25;
RuntimeObject * L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck(((TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034 *)CastclassSealed((RuntimeObject*)L_27, TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034_il2cpp_TypeInfo_var)));
String_t* L_28 = TypeDescriptionProviderAttribute_get_TypeName_m6C47AACE737391F28BD1C0A762AABBECA8DB8F75_inline(((TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034 *)CastclassSealed((RuntimeObject*)L_27, TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_28, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
V_5 = L_29;
Type_t * L_30 = V_5;
bool L_31 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_30, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00eb;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_32 = { reinterpret_cast<intptr_t> (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_33 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_32, /*hidden argument*/NULL);
Type_t * L_34 = V_5;
NullCheck(L_33);
bool L_35 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_33, L_34);
if (!L_35)
{
goto IL_00eb;
}
}
{
Type_t * L_36 = V_5;
RuntimeObject * L_37 = Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16(L_36, /*hidden argument*/NULL);
Type_t * L_38 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_AddProvider_mD81A072B4AB0D7801F9297879CB43071C8740C9A(((TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 *)CastclassClass((RuntimeObject*)L_37, TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591_il2cpp_TypeInfo_var)), L_38, /*hidden argument*/NULL);
V_1 = (bool)1;
}
IL_00eb:
{
int32_t L_39 = V_4;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_39, (int32_t)1));
}
IL_00f1:
{
int32_t L_40 = V_4;
if ((((int32_t)L_40) >= ((int32_t)0)))
{
goto IL_00a5;
}
}
{
bool L_41 = V_1;
if (L_41)
{
goto IL_011c;
}
}
{
Type_t * L_42 = ___type0;
NullCheck(L_42);
Type_t * L_43 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_42);
V_6 = L_43;
Type_t * L_44 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_45 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_44, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_45)
{
goto IL_011c;
}
}
{
Type_t * L_46 = V_6;
Type_t * L_47 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_48 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_46, L_47, /*hidden argument*/NULL);
if (!L_48)
{
goto IL_011c;
}
}
{
Type_t * L_49 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_CheckDefaultProvider_m992A2ED0D5F3621C00369DF8CF35D6AFB17D3ADC(L_49, /*hidden argument*/NULL);
}
IL_011c:
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::CreateAssociation(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_CreateAssociation_mD52776F0B75C62C60CB8C089475727A0D7BF5B17 (RuntimeObject * ___primary0, RuntimeObject * ___secondary1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_CreateAssociation_mD52776F0B75C62C60CB8C089475727A0D7BF5B17_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject * V_1 = NULL;
bool V_2 = false;
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * V_3 = NULL;
int32_t V_4 = 0;
WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject * L_0 = ___primary0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralE3B7C980D763196E9D134C3EC1C3DE0DED54E5CE, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_CreateAssociation_mD52776F0B75C62C60CB8C089475727A0D7BF5B17_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___secondary1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralE059FC6904F0A3146139802D09BC08D1C34F0E25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeDescriptor_CreateAssociation_mD52776F0B75C62C60CB8C089475727A0D7BF5B17_RuntimeMethod_var);
}
IL_001c:
{
RuntimeObject * L_4 = ___primary0;
RuntimeObject * L_5 = ___secondary1;
if ((!(((RuntimeObject*)(RuntimeObject *)L_4) == ((RuntimeObject*)(RuntimeObject *)L_5))))
{
goto IL_0030;
}
}
{
String_t* L_6 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral39DCE7E6DE04ADD6AF893DDAF2D66B921FF02280, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, TypeDescriptor_CreateAssociation_mD52776F0B75C62C60CB8C089475727A0D7BF5B17_RuntimeMethod_var);
}
IL_0030:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_8 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__associationTable_3();
il2cpp_codegen_memory_barrier();
if (L_8)
{
goto IL_006a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__internalSyncObject_14();
V_1 = L_9;
V_2 = (bool)0;
}
IL_0041:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_10 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_10, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_11 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__associationTable_3();
il2cpp_codegen_memory_barrier();
if (L_11)
{
goto IL_005e;
}
}
IL_0052:
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_12 = (WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF *)il2cpp_codegen_object_new(WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF_il2cpp_TypeInfo_var);
WeakHashtable__ctor_mE6517A855F67EE9584AF60DB7BC3AF5B2D58C249(L_12, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->set__associationTable_3(L_12);
}
IL_005e:
{
IL2CPP_LEAVE(0x6A, FINALLY_0060);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0060;
}
FINALLY_0060:
{ // begin finally (depth: 1)
{
bool L_13 = V_2;
if (!L_13)
{
goto IL_0069;
}
}
IL_0063:
{
RuntimeObject * L_14 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_14, /*hidden argument*/NULL);
}
IL_0069:
{
IL2CPP_END_FINALLY(96)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(96)
{
IL2CPP_JUMP_TBL(0x6A, IL_006a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_006a:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_15 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__associationTable_3();
il2cpp_codegen_memory_barrier();
RuntimeObject * L_16 = ___primary0;
NullCheck(L_15);
RuntimeObject * L_17 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_15, L_16);
V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_17, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var));
RuntimeObject* L_18 = V_0;
if (L_18)
{
goto IL_00c9;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_19 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__associationTable_3();
il2cpp_codegen_memory_barrier();
V_3 = L_19;
V_2 = (bool)0;
}
IL_008a:
try
{ // begin try (depth: 1)
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_20 = V_3;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_20, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_21 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__associationTable_3();
il2cpp_codegen_memory_barrier();
RuntimeObject * L_22 = ___primary0;
NullCheck(L_21);
RuntimeObject * L_23 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_21, L_22);
V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_23, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var));
RuntimeObject* L_24 = V_0;
if (L_24)
{
goto IL_00bd;
}
}
IL_00a8:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_25 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C(L_25, 4, /*hidden argument*/NULL);
V_0 = L_25;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_26 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__associationTable_3();
il2cpp_codegen_memory_barrier();
RuntimeObject * L_27 = ___primary0;
RuntimeObject* L_28 = V_0;
NullCheck(L_26);
WeakHashtable_SetWeak_m3DA0C3EB8F3903CBE44CAA14B13670A69B236F35(L_26, L_27, L_28, /*hidden argument*/NULL);
}
IL_00bd:
{
IL2CPP_LEAVE(0x112, FINALLY_00bf);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00bf;
}
FINALLY_00bf:
{ // begin finally (depth: 1)
{
bool L_29 = V_2;
if (!L_29)
{
goto IL_00c8;
}
}
IL_00c2:
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_30 = V_3;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_30, /*hidden argument*/NULL);
}
IL_00c8:
{
IL2CPP_END_FINALLY(191)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(191)
{
IL2CPP_JUMP_TBL(0x112, IL_0112)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00c9:
{
RuntimeObject* L_31 = V_0;
NullCheck(L_31);
int32_t L_32 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_31);
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)1));
goto IL_010d;
}
IL_00d5:
{
RuntimeObject* L_33 = V_0;
int32_t L_34 = V_4;
NullCheck(L_33);
RuntimeObject * L_35 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_33, L_34);
V_5 = ((WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D *)CastclassClass((RuntimeObject*)L_35, WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D_il2cpp_TypeInfo_var));
WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D * L_36 = V_5;
NullCheck(L_36);
bool L_37 = VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.WeakReference::get_IsAlive() */, L_36);
if (!L_37)
{
goto IL_0107;
}
}
{
WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D * L_38 = V_5;
NullCheck(L_38);
RuntimeObject * L_39 = VirtFuncInvoker0< RuntimeObject * >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_38);
RuntimeObject * L_40 = ___secondary1;
if ((!(((RuntimeObject*)(RuntimeObject *)L_39) == ((RuntimeObject*)(RuntimeObject *)L_40))))
{
goto IL_0107;
}
}
{
String_t* L_41 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral70E0E4E783C78C1A0EBC1C9D2B25532407E568D5, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_42 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_42, L_41, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, TypeDescriptor_CreateAssociation_mD52776F0B75C62C60CB8C089475727A0D7BF5B17_RuntimeMethod_var);
}
IL_0107:
{
int32_t L_43 = V_4;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1));
}
IL_010d:
{
int32_t L_44 = V_4;
if ((((int32_t)L_44) >= ((int32_t)0)))
{
goto IL_00d5;
}
}
IL_0112:
{
RuntimeObject* L_45 = V_0;
V_6 = L_45;
V_2 = (bool)0;
}
IL_0117:
try
{ // begin try (depth: 1)
RuntimeObject* L_46 = V_6;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_46, (bool*)(&V_2), /*hidden argument*/NULL);
RuntimeObject* L_47 = V_0;
RuntimeObject * L_48 = ___secondary1;
WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D * L_49 = (WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D *)il2cpp_codegen_object_new(WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D_il2cpp_TypeInfo_var);
WeakReference__ctor_m12F7412E9F228AA2276BBB37441CFBCD21A0ABBB(L_49, L_48, /*hidden argument*/NULL);
NullCheck(L_47);
InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_47, L_49);
IL2CPP_LEAVE(0x13A, FINALLY_012f);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_012f;
}
FINALLY_012f:
{ // begin finally (depth: 1)
{
bool L_50 = V_2;
if (!L_50)
{
goto IL_0139;
}
}
IL_0132:
{
RuntimeObject* L_51 = V_6;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_51, /*hidden argument*/NULL);
}
IL_0139:
{
IL2CPP_END_FINALLY(303)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(303)
{
IL2CPP_JUMP_TBL(0x13A, IL_013a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_013a:
{
return;
}
}
// System.ComponentModel.Design.IDesigner System.ComponentModel.TypeDescriptor::CreateDesigner(System.ComponentModel.IComponent,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_CreateDesigner_m4243B05F425A7ACA49F80C7878155CAE35236EF9 (RuntimeObject* ___component0, Type_t * ___designerBaseType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_CreateDesigner_m4243B05F425A7ACA49F80C7878155CAE35236EF9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
RuntimeObject* V_1 = NULL;
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * V_2 = NULL;
int32_t V_3 = 0;
DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * V_4 = NULL;
Type_t * V_5 = NULL;
RuntimeObject* V_6 = NULL;
bool V_7 = false;
RuntimeObject* V_8 = NULL;
{
V_0 = (Type_t *)NULL;
V_1 = (RuntimeObject*)NULL;
RuntimeObject* L_0 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = TypeDescriptor_GetAttributes_m0325F763D0AA6354E3F7859E15FF7BE3A8D5F3D3(L_0, /*hidden argument*/NULL);
V_2 = L_1;
V_3 = 0;
goto IL_00a1;
}
IL_0012:
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_2 = V_2;
int32_t L_3 = V_3;
NullCheck(L_2);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_4 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, int32_t >::Invoke(10 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Int32) */, L_2, L_3);
V_4 = ((DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 *)IsInstSealed((RuntimeObject*)L_4, DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0_il2cpp_TypeInfo_var));
DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * L_5 = V_4;
if (!L_5)
{
goto IL_009d;
}
}
{
DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * L_6 = V_4;
NullCheck(L_6);
String_t* L_7 = DesignerAttribute_get_DesignerBaseTypeName_mAD0CC16E016DAE5EB60C58A0B7BC5E5361BF1525_inline(L_6, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_7, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
V_5 = L_8;
Type_t * L_9 = V_5;
bool L_10 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_9, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_009d;
}
}
{
Type_t * L_11 = V_5;
Type_t * L_12 = ___designerBaseType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_13 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_11, L_12, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_009d;
}
}
{
RuntimeObject* L_14 = ___component0;
NullCheck(L_14);
RuntimeObject* L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_14);
V_6 = L_15;
V_7 = (bool)0;
RuntimeObject* L_16 = V_6;
if (!L_16)
{
goto IL_0083;
}
}
{
RuntimeObject* L_17 = V_6;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (ITypeResolutionService_t7F3892CAAFEF769D52D791845BBDC389788F3B26_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL);
NullCheck(L_17);
RuntimeObject * L_20 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_17, L_19);
V_8 = ((RuntimeObject*)Castclass((RuntimeObject*)L_20, ITypeResolutionService_t7F3892CAAFEF769D52D791845BBDC389788F3B26_il2cpp_TypeInfo_var));
RuntimeObject* L_21 = V_8;
if (!L_21)
{
goto IL_0083;
}
}
{
V_7 = (bool)1;
RuntimeObject* L_22 = V_8;
DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * L_23 = V_4;
NullCheck(L_23);
String_t* L_24 = DesignerAttribute_get_DesignerTypeName_mD51D180F6C7BCA066BE47F54C6082B78088F662B_inline(L_23, /*hidden argument*/NULL);
NullCheck(L_22);
Type_t * L_25 = InterfaceFuncInvoker1< Type_t *, String_t* >::Invoke(0 /* System.Type System.ComponentModel.Design.ITypeResolutionService::GetType(System.String) */, ITypeResolutionService_t7F3892CAAFEF769D52D791845BBDC389788F3B26_il2cpp_TypeInfo_var, L_22, L_24);
V_0 = L_25;
}
IL_0083:
{
bool L_26 = V_7;
if (L_26)
{
goto IL_0094;
}
}
{
DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * L_27 = V_4;
NullCheck(L_27);
String_t* L_28 = DesignerAttribute_get_DesignerTypeName_mD51D180F6C7BCA066BE47F54C6082B78088F662B_inline(L_27, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_28, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
V_0 = L_29;
}
IL_0094:
{
Type_t * L_30 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_31 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_30, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_31)
{
goto IL_00ad;
}
}
IL_009d:
{
int32_t L_32 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
}
IL_00a1:
{
int32_t L_33 = V_3;
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_34 = V_2;
NullCheck(L_34);
int32_t L_35 = AttributeCollection_get_Count_m18B4E5D1755D27754C9B3C7C89B4BD91B1458EC4(L_34, /*hidden argument*/NULL);
if ((((int32_t)L_33) < ((int32_t)L_35)))
{
goto IL_0012;
}
}
IL_00ad:
{
Type_t * L_36 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_37 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_36, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_37)
{
goto IL_00c4;
}
}
{
Type_t * L_38 = V_0;
RuntimeObject * L_39 = SecurityUtils_SecureCreateInstance_m75CC5B0308F53B01ADC1B5EEBF831C49A53808F4(L_38, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, (bool)1, /*hidden argument*/NULL);
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_39, IDesigner_tB0DC62D61F9C80E298D483CDDD55D2E8E5C66AC2_il2cpp_TypeInfo_var));
}
IL_00c4:
{
RuntimeObject* L_40 = V_1;
return L_40;
}
}
// System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::CreateEvent(System.Type,System.String,System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * TypeDescriptor_CreateEvent_m8C78D1FEAA1F3D886DEF6FE25C2F19E4EA160612 (Type_t * ___componentType0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_CreateEvent_m8C78D1FEAA1F3D886DEF6FE25C2F19E4EA160612_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentType0;
String_t* L_1 = ___name1;
Type_t * L_2 = ___type2;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = ___attributes3;
ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * L_4 = (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 *)il2cpp_codegen_object_new(ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360_il2cpp_TypeInfo_var);
ReflectEventDescriptor__ctor_mA48120EE25265C1F7739FFA078DC2462F89F24DE(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::CreateEvent(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * TypeDescriptor_CreateEvent_mDEC73A18F3C1F0F523E6B65E5CD22F555E1BE613 (Type_t * ___componentType0, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___oldEventDescriptor1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_CreateEvent_mDEC73A18F3C1F0F523E6B65E5CD22F555E1BE613_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentType0;
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_1 = ___oldEventDescriptor1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_2 = ___attributes2;
ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 * L_3 = (ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360 *)il2cpp_codegen_object_new(ReflectEventDescriptor_t36C4780808918CFDD00CE2A7E6368FAEFD4DD360_il2cpp_TypeInfo_var);
ReflectEventDescriptor__ctor_mA2D771927AB9F0F9D9DE61868FFE7E0BBA173A8F(L_3, L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Object System.ComponentModel.TypeDescriptor::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeDescriptor_CreateInstance_m9615D98B08C826DF6B261B054FCB88C56E96CDC2 (RuntimeObject* ___provider0, Type_t * ___objectType1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___argTypes2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_CreateInstance_m9615D98B08C826DF6B261B054FCB88C56E96CDC2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * V_1 = NULL;
{
Type_t * L_0 = ___objectType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralD2AD511C8E3470443090EE15D44BB5849824FB7A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TypeDescriptor_CreateInstance_m9615D98B08C826DF6B261B054FCB88C56E96CDC2_RuntimeMethod_var);
}
IL_0014:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = ___argTypes2;
if (!L_3)
{
goto IL_003d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___args3;
if (L_4)
{
goto IL_0025;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteral3030E728F154BF51419109EFB93B6B8AEEC9A976, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, TypeDescriptor_CreateInstance_m9615D98B08C826DF6B261B054FCB88C56E96CDC2_RuntimeMethod_var);
}
IL_0025:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = ___argTypes2;
NullCheck(L_6);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = ___args3;
NullCheck(L_7);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))))
{
goto IL_003d;
}
}
{
String_t* L_8 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralB81ACAA21AE2689401AFD1AF79138ED5CB275C58, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, TypeDescriptor_CreateInstance_m9615D98B08C826DF6B261B054FCB88C56E96CDC2_RuntimeMethod_var);
}
IL_003d:
{
V_0 = NULL;
RuntimeObject* L_10 = ___provider0;
if (!L_10)
{
goto IL_0066;
}
}
{
RuntimeObject* L_11 = ___provider0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
RuntimeObject * L_14 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_11, L_13);
V_1 = ((TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 *)IsInstClass((RuntimeObject*)L_14, TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591_il2cpp_TypeInfo_var));
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_15 = V_1;
if (!L_15)
{
goto IL_0066;
}
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_16 = V_1;
RuntimeObject* L_17 = ___provider0;
Type_t * L_18 = ___objectType1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_19 = ___argTypes2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = ___args3;
NullCheck(L_16);
RuntimeObject * L_21 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(4 /* System.Object System.ComponentModel.TypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) */, L_16, L_17, L_18, L_19, L_20);
V_0 = L_21;
}
IL_0066:
{
RuntimeObject * L_22 = V_0;
if (L_22)
{
goto IL_0079;
}
}
{
Type_t * L_23 = ___objectType1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_24 = TypeDescriptor_NodeFor_m767FF87E78839CA052D9BA45FC6E18BD28F8E2E2(L_23, /*hidden argument*/NULL);
RuntimeObject* L_25 = ___provider0;
Type_t * L_26 = ___objectType1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_27 = ___argTypes2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = ___args3;
NullCheck(L_24);
RuntimeObject * L_29 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(4 /* System.Object System.ComponentModel.TypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) */, L_24, L_25, L_26, L_27, L_28);
V_0 = L_29;
}
IL_0079:
{
RuntimeObject * L_30 = V_0;
return L_30;
}
}
// System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::CreateProperty(System.Type,System.String,System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * TypeDescriptor_CreateProperty_m9BE66DBCA07296098C3DA980BEB20985BFDEFF2E (Type_t * ___componentType0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_CreateProperty_m9BE66DBCA07296098C3DA980BEB20985BFDEFF2E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentType0;
String_t* L_1 = ___name1;
Type_t * L_2 = ___type2;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = ___attributes3;
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_4 = (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E *)il2cpp_codegen_object_new(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
ReflectPropertyDescriptor__ctor_mB5E1EB28647D1B39D7EEC2A60C41BD3F2B5EBB4E(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::CreateProperty(System.Type,System.ComponentModel.PropertyDescriptor,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * TypeDescriptor_CreateProperty_m80C1C5E1ED1D7EAF1AA5A1A156406CB807E462C6 (Type_t * ___componentType0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___oldPropertyDescriptor1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_CreateProperty_m80C1C5E1ED1D7EAF1AA5A1A156406CB807E462C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentType0;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_1 = ___oldPropertyDescriptor1;
NullCheck(L_1);
Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.PropertyDescriptor::get_ComponentType() */, L_1);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_003c;
}
}
{
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_4 = ___oldPropertyDescriptor1;
NullCheck(L_4);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_5 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, L_4);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_8 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_5, L_7);
NullCheck(((ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 *)CastclassSealed((RuntimeObject*)L_8, ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_il2cpp_TypeInfo_var)));
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_9 = ExtenderProvidedPropertyAttribute_get_ExtenderProperty_mB56FFEF61D8278AFFA0FB91710E1A37795738E47_inline(((ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 *)CastclassSealed((RuntimeObject*)L_8, ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
if (!((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E *)IsInstSealed((RuntimeObject*)L_9, ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var)))
{
goto IL_003c;
}
}
{
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_10 = ___oldPropertyDescriptor1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_11 = ___attributes2;
ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * L_12 = (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 *)il2cpp_codegen_object_new(ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6_il2cpp_TypeInfo_var);
ExtendedPropertyDescriptor__ctor_mB3DDF0467442FE4325BE2B83F8049DD543DAF389(L_12, L_10, L_11, /*hidden argument*/NULL);
return L_12;
}
IL_003c:
{
Type_t * L_13 = ___componentType0;
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_14 = ___oldPropertyDescriptor1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_15 = ___attributes2;
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_16 = (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E *)il2cpp_codegen_object_new(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var);
ReflectPropertyDescriptor__ctor_mD94CA3BC0F9D3DA32E778F0F8724BE6CAA213475(L_16, L_13, L_14, L_15, /*hidden argument*/NULL);
return L_16;
}
}
// System.Void System.ComponentModel.TypeDescriptor::DebugValidate(System.Type,System.ComponentModel.AttributeCollection,System.ComponentModel.AttributeCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_DebugValidate_m7C240624353A3FC93ED70E1983CA0B7A0B38C9CE (Type_t * ___type0, AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___attributes1, AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___debugAttributes2, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::DebugValidate(System.ComponentModel.AttributeCollection,System.ComponentModel.AttributeCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_DebugValidate_m3A723713AC115193984226ECA41CF0691B791099 (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___attributes0, AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___debugAttributes1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::DebugValidate(System.ComponentModel.AttributeCollection,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_DebugValidate_m09AA861A7C7F5F194343E55F24FBCD9A30989DD9 (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___attributes0, Type_t * ___type1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::DebugValidate(System.ComponentModel.AttributeCollection,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_DebugValidate_mE5689F2DEA83D1F9794E7B71154549F5584F1EA0 (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___attributes0, RuntimeObject * ___instance1, bool ___noCustomTypeDesc2, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::DebugValidate(System.ComponentModel.TypeConverter,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_DebugValidate_m61CC7ADADE2E03DB3A40D809A31B768FC19A6389 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ___converter0, Type_t * ___type1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::DebugValidate(System.ComponentModel.TypeConverter,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_DebugValidate_mB0BFB3754E3AA6874EF55B0B3EA5A4D3839CAC15 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ___converter0, RuntimeObject * ___instance1, bool ___noCustomTypeDesc2, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::DebugValidate(System.ComponentModel.EventDescriptorCollection,System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_DebugValidate_m2698690410F0E33B99AE6E9685B7D45280A0A803 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * ___events0, Type_t * ___type1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::DebugValidate(System.ComponentModel.EventDescriptorCollection,System.Object,System.Attribute[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_DebugValidate_m3C4F4FD6EF1DA5E6CCE47567E76CB2C0EF420328 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * ___events0, RuntimeObject * ___instance1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, bool ___noCustomTypeDesc3, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::DebugValidate(System.ComponentModel.PropertyDescriptorCollection,System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_DebugValidate_mCE25EA8188030E174C98D6B1A05BE16B19A3DB2F (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ___properties0, Type_t * ___type1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::DebugValidate(System.ComponentModel.PropertyDescriptorCollection,System.Object,System.Attribute[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_DebugValidate_mA8F358472BA5A76502BEF41E5B29AC091D8AC16F (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ___properties0, RuntimeObject * ___instance1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, bool ___noCustomTypeDesc3, const RuntimeMethod* method)
{
{
return;
}
}
// System.Collections.ArrayList System.ComponentModel.TypeDescriptor::FilterMembers(System.Collections.IList,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * TypeDescriptor_FilterMembers_m6DE8E2489628CB06AFAE539F0202E73AEB645AA9 (RuntimeObject* ___members0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_FilterMembers_m6DE8E2489628CB06AFAE539F0202E73AEB645AA9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
bool V_3 = false;
int32_t V_4 = 0;
int32_t V_5 = 0;
{
V_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)NULL;
RuntimeObject* L_0 = ___members0;
NullCheck(L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_0);
V_1 = L_1;
V_2 = 0;
goto IL_007f;
}
IL_000d:
{
V_3 = (bool)0;
V_4 = 0;
goto IL_0035;
}
IL_0014:
{
RuntimeObject* L_2 = ___members0;
int32_t L_3 = V_2;
NullCheck(L_2);
RuntimeObject * L_4 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_2, L_3);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_5 = ___attributes1;
int32_t L_6 = V_4;
NullCheck(L_5);
int32_t L_7 = L_6;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
bool L_9 = TypeDescriptor_ShouldHideMember_m7530A7627AB76EB292A22E86DA7D4B1A8DFEAF01(((MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 *)CastclassClass((RuntimeObject*)L_4, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8_il2cpp_TypeInfo_var)), L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_002f;
}
}
{
V_3 = (bool)1;
goto IL_003c;
}
IL_002f:
{
int32_t L_10 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0035:
{
int32_t L_11 = V_4;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_12 = ___attributes1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0014;
}
}
IL_003c:
{
bool L_13 = V_3;
if (!L_13)
{
goto IL_006a;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_14 = V_0;
if (L_14)
{
goto IL_007b;
}
}
{
int32_t L_15 = V_1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_16 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C(L_16, L_15, /*hidden argument*/NULL);
V_0 = L_16;
V_5 = 0;
goto IL_0063;
}
IL_004e:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_17 = V_0;
RuntimeObject* L_18 = ___members0;
int32_t L_19 = V_5;
NullCheck(L_18);
RuntimeObject * L_20 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_18, L_19);
NullCheck(L_17);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_17, L_20);
int32_t L_21 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
}
IL_0063:
{
int32_t L_22 = V_5;
int32_t L_23 = V_2;
if ((((int32_t)L_22) < ((int32_t)L_23)))
{
goto IL_004e;
}
}
{
goto IL_007b;
}
IL_006a:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_24 = V_0;
if (!L_24)
{
goto IL_007b;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_25 = V_0;
RuntimeObject* L_26 = ___members0;
int32_t L_27 = V_2;
NullCheck(L_26);
RuntimeObject * L_28 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_26, L_27);
NullCheck(L_25);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_25, L_28);
}
IL_007b:
{
int32_t L_29 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1));
}
IL_007f:
{
int32_t L_30 = V_2;
int32_t L_31 = V_1;
if ((((int32_t)L_30) < ((int32_t)L_31)))
{
goto IL_000d;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_32 = V_0;
return L_32;
}
}
// System.Object System.ComponentModel.TypeDescriptor::GetAssociation(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeDescriptor_GetAssociation_m45465AA1409C932535F021345F71CFF99CBC4D98 (Type_t * ___type0, RuntimeObject * ___primary1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetAssociation_m45465AA1409C932535F021345F71CFF99CBC4D98_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
bool V_4 = false;
int32_t V_5 = 0;
RuntimeObject * V_6 = NULL;
RuntimeObject* V_7 = NULL;
RuntimeObject* V_8 = NULL;
RuntimeObject* V_9 = NULL;
RuntimeObject * V_10 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TypeDescriptor_GetAssociation_m45465AA1409C932535F021345F71CFF99CBC4D98_RuntimeMethod_var);
}
IL_0014:
{
RuntimeObject * L_3 = ___primary1;
if (L_3)
{
goto IL_0022;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralE3B7C980D763196E9D134C3EC1C3DE0DED54E5CE, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TypeDescriptor_GetAssociation_m45465AA1409C932535F021345F71CFF99CBC4D98_RuntimeMethod_var);
}
IL_0022:
{
RuntimeObject * L_5 = ___primary1;
V_0 = L_5;
Type_t * L_6 = ___type0;
RuntimeObject * L_7 = ___primary1;
NullCheck(L_6);
bool L_8 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(138 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_6, L_7);
if (L_8)
{
goto IL_0109;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_9 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__associationTable_3();
il2cpp_codegen_memory_barrier();
V_1 = L_9;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_10 = V_1;
if (!L_10)
{
goto IL_00ab;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_11 = V_1;
RuntimeObject * L_12 = ___primary1;
NullCheck(L_11);
RuntimeObject * L_13 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_11, L_12);
V_2 = ((RuntimeObject*)Castclass((RuntimeObject*)L_13, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var));
RuntimeObject* L_14 = V_2;
if (!L_14)
{
goto IL_00ab;
}
}
{
RuntimeObject* L_15 = V_2;
V_3 = L_15;
V_4 = (bool)0;
}
IL_0050:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_16 = V_3;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_16, (bool*)(&V_4), /*hidden argument*/NULL);
RuntimeObject* L_17 = V_2;
NullCheck(L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_17);
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
goto IL_0099;
}
IL_0064:
{
RuntimeObject* L_19 = V_2;
int32_t L_20 = V_5;
NullCheck(L_19);
RuntimeObject * L_21 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_19, L_20);
NullCheck(((WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D *)CastclassClass((RuntimeObject*)L_21, WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D_il2cpp_TypeInfo_var)));
RuntimeObject * L_22 = VirtFuncInvoker0< RuntimeObject * >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, ((WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D *)CastclassClass((RuntimeObject*)L_21, WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D_il2cpp_TypeInfo_var)));
V_6 = L_22;
RuntimeObject * L_23 = V_6;
if (L_23)
{
goto IL_0086;
}
}
IL_007c:
{
RuntimeObject* L_24 = V_2;
int32_t L_25 = V_5;
NullCheck(L_24);
InterfaceActionInvoker1< int32_t >::Invoke(10 /* System.Void System.Collections.IList::RemoveAt(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_24, L_25);
goto IL_0093;
}
IL_0086:
{
Type_t * L_26 = ___type0;
RuntimeObject * L_27 = V_6;
NullCheck(L_26);
bool L_28 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(138 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_26, L_27);
if (!L_28)
{
goto IL_0093;
}
}
IL_0090:
{
RuntimeObject * L_29 = V_6;
V_0 = L_29;
}
IL_0093:
{
int32_t L_30 = V_5;
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)1));
}
IL_0099:
{
int32_t L_31 = V_5;
if ((((int32_t)L_31) >= ((int32_t)0)))
{
goto IL_0064;
}
}
IL_009e:
{
IL2CPP_LEAVE(0xAB, FINALLY_00a0);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00a0;
}
FINALLY_00a0:
{ // begin finally (depth: 1)
{
bool L_32 = V_4;
if (!L_32)
{
goto IL_00aa;
}
}
IL_00a4:
{
RuntimeObject* L_33 = V_3;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_33, /*hidden argument*/NULL);
}
IL_00aa:
{
IL2CPP_END_FINALLY(160)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(160)
{
IL2CPP_JUMP_TBL(0xAB, IL_00ab)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00ab:
{
RuntimeObject * L_34 = V_0;
RuntimeObject * L_35 = ___primary1;
if ((!(((RuntimeObject*)(RuntimeObject *)L_34) == ((RuntimeObject*)(RuntimeObject *)L_35))))
{
goto IL_0109;
}
}
{
RuntimeObject * L_36 = ___primary1;
V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_36, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var));
RuntimeObject* L_37 = V_7;
if (!L_37)
{
goto IL_0109;
}
}
{
RuntimeObject* L_38 = V_7;
NullCheck(L_38);
RuntimeObject* L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_38);
V_8 = L_39;
RuntimeObject* L_40 = V_8;
if (!L_40)
{
goto IL_0109;
}
}
{
RuntimeObject* L_41 = V_8;
NullCheck(L_41);
bool L_42 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.ComponentModel.ISite::get_DesignMode() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_41);
if (!L_42)
{
goto IL_0109;
}
}
{
RuntimeObject* L_43 = V_8;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_44 = { reinterpret_cast<intptr_t> (IDesignerHost_tCA513EB1D3737F4248D27D16475E00F8C561219E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_45 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_44, /*hidden argument*/NULL);
NullCheck(L_43);
RuntimeObject * L_46 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_43, L_45);
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_46, IDesignerHost_tCA513EB1D3737F4248D27D16475E00F8C561219E_il2cpp_TypeInfo_var));
RuntimeObject* L_47 = V_9;
if (!L_47)
{
goto IL_0109;
}
}
{
RuntimeObject* L_48 = V_9;
RuntimeObject* L_49 = V_7;
NullCheck(L_48);
RuntimeObject* L_50 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(1 /* System.ComponentModel.Design.IDesigner System.ComponentModel.Design.IDesignerHost::GetDesigner(System.ComponentModel.IComponent) */, IDesignerHost_tCA513EB1D3737F4248D27D16475E00F8C561219E_il2cpp_TypeInfo_var, L_48, L_49);
V_10 = L_50;
RuntimeObject * L_51 = V_10;
if (!L_51)
{
goto IL_0109;
}
}
{
Type_t * L_52 = ___type0;
RuntimeObject * L_53 = V_10;
NullCheck(L_52);
bool L_54 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(138 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_52, L_53);
if (!L_54)
{
goto IL_0109;
}
}
{
RuntimeObject * L_55 = V_10;
V_0 = L_55;
}
IL_0109:
{
RuntimeObject * L_56 = V_0;
return L_56;
}
}
// System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B (Type_t * ___componentType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetAttributes_m945F6ABA03A5014918ACA5F9B57F1F58B805EC0B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_2 = (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)il2cpp_codegen_object_new(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var);
AttributeCollection__ctor_m1EBB330147608510FB1B60549BA95812EA2A1190(L_2, (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL, /*hidden argument*/NULL);
return L_2;
}
IL_0010:
{
Type_t * L_3 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_4 = TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB(L_3, _stringLiteral9852EF6A4E62DEF490CCB6F200BC08F5D8D5AC92, /*hidden argument*/NULL);
NullCheck(L_4);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_5 = InterfaceFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(0 /* System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor::GetAttributes() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_4);
return L_5;
}
}
// System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * TypeDescriptor_GetAttributes_m0325F763D0AA6354E3F7859E15FF7BE3A8D5F3D3 (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetAttributes_m0325F763D0AA6354E3F7859E15FF7BE3A8D5F3D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = TypeDescriptor_GetAttributes_mA96E001729AC6C2EF5ED8E0E5573BABF67501C44(L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * TypeDescriptor_GetAttributes_mA96E001729AC6C2EF5ED8E0E5573BABF67501C44 (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetAttributes_mA96E001729AC6C2EF5ED8E0E5573BABF67501C44_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
RuntimeObject* V_6 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_7 = NULL;
{
RuntimeObject * L_0 = ___component0;
if (L_0)
{
goto IL_000a;
}
}
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)il2cpp_codegen_object_new(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var);
AttributeCollection__ctor_m1EBB330147608510FB1B60549BA95812EA2A1190(L_1, (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL, /*hidden argument*/NULL);
return L_1;
}
IL_000a:
{
RuntimeObject * L_2 = ___component0;
bool L_3 = ___noCustomTypeDesc1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_4 = TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1(L_2, L_3, /*hidden argument*/NULL);
NullCheck(L_4);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_5 = InterfaceFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(0 /* System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor::GetAttributes() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_4);
V_0 = L_5;
RuntimeObject * L_6 = ___component0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_6, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var)))
{
goto IL_004c;
}
}
{
bool L_7 = ___noCustomTypeDesc1;
if (!L_7)
{
goto IL_0040;
}
}
{
RuntimeObject * L_8 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_9 = TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE(L_8, /*hidden argument*/NULL);
V_2 = L_9;
RuntimeObject* L_10 = V_2;
if (!L_10)
{
goto IL_008b;
}
}
{
RuntimeObject* L_11 = V_2;
NullCheck(L_11);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_12 = InterfaceFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(0 /* System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor::GetAttributes() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_11);
V_3 = L_12;
RuntimeObject* L_13 = V_0;
RuntimeObject* L_14 = V_3;
RuntimeObject * L_15 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_16 = TypeDescriptor_PipelineMerge_m12CD63D0457BCA451AF9635E4E754A1E27122E65(0, L_13, L_14, L_15, (RuntimeObject*)NULL, /*hidden argument*/NULL);
V_0 = L_16;
goto IL_008b;
}
IL_0040:
{
RuntimeObject* L_17 = V_0;
RuntimeObject * L_18 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_19 = TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487(0, L_17, L_18, (RuntimeObject*)NULL, /*hidden argument*/NULL);
V_0 = L_19;
goto IL_008b;
}
IL_004c:
{
RuntimeObject * L_20 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_21 = TypeDescriptor_GetCache_mC7540D2FBAB562E689ED1BC2399D3F3C31D97145(L_20, /*hidden argument*/NULL);
V_4 = L_21;
RuntimeObject* L_22 = V_0;
RuntimeObject* L_23 = V_4;
RuntimeObject* L_24 = TypeDescriptor_PipelineInitialize_mE238329E4034835777FC35289A14EA9A1397CF66(0, L_22, L_23, /*hidden argument*/NULL);
V_0 = L_24;
RuntimeObject * L_25 = ___component0;
RuntimeObject* L_26 = TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE(L_25, /*hidden argument*/NULL);
V_5 = L_26;
RuntimeObject* L_27 = V_5;
if (!L_27)
{
goto IL_0080;
}
}
{
RuntimeObject* L_28 = V_5;
NullCheck(L_28);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_29 = InterfaceFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(0 /* System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor::GetAttributes() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_28);
V_6 = L_29;
RuntimeObject* L_30 = V_0;
RuntimeObject* L_31 = V_6;
RuntimeObject * L_32 = ___component0;
RuntimeObject* L_33 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_34 = TypeDescriptor_PipelineMerge_m12CD63D0457BCA451AF9635E4E754A1E27122E65(0, L_30, L_31, L_32, L_33, /*hidden argument*/NULL);
V_0 = L_34;
}
IL_0080:
{
RuntimeObject* L_35 = V_0;
RuntimeObject * L_36 = ___component0;
RuntimeObject* L_37 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_38 = TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487(0, L_35, L_36, L_37, /*hidden argument*/NULL);
V_0 = L_38;
}
IL_008b:
{
RuntimeObject* L_39 = V_0;
V_1 = ((AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)IsInstClass((RuntimeObject*)L_39, AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var));
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_40 = V_1;
if (L_40)
{
goto IL_00b3;
}
}
{
RuntimeObject* L_41 = V_0;
NullCheck(L_41);
int32_t L_42 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_41);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_43 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_42);
V_7 = L_43;
RuntimeObject* L_44 = V_0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_45 = V_7;
NullCheck(L_44);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_44, (RuntimeArray *)(RuntimeArray *)L_45, 0);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_46 = V_7;
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_47 = (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)il2cpp_codegen_object_new(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var);
AttributeCollection__ctor_m1EBB330147608510FB1B60549BA95812EA2A1190(L_47, L_46, /*hidden argument*/NULL);
V_1 = L_47;
}
IL_00b3:
{
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_48 = V_1;
return L_48;
}
}
// System.Collections.IDictionary System.ComponentModel.TypeDescriptor::GetCache(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_GetCache_mC7540D2FBAB562E689ED1BC2399D3F3C31D97145 (RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetCache_mC7540D2FBAB562E689ED1BC2399D3F3C31D97145_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___instance0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_1 = TypeDescriptor_NodeFor_m5CD091DA5BF7D035FA36E6E397A96B2A9610E9D5(L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___instance0;
NullCheck(L_1);
RuntimeObject* L_3 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(5 /* System.Collections.IDictionary System.ComponentModel.TypeDescriptionProvider::GetCache(System.Object) */, L_1, L_2);
return L_3;
}
}
// System.String System.ComponentModel.TypeDescriptor::GetClassName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptor_GetClassName_m539DE8A8C913A996F10E44F0AD222E33B88FF4D4 (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetClassName_m539DE8A8C913A996F10E44F0AD222E33B88FF4D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
String_t* L_1 = TypeDescriptor_GetClassName_mACBEC8CAA950839E997F497253ED5940863A7B09(L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.String System.ComponentModel.TypeDescriptor::GetClassName(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptor_GetClassName_mACBEC8CAA950839E997F497253ED5940863A7B09 (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetClassName_mACBEC8CAA950839E997F497253ED5940863A7B09_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
bool L_1 = ___noCustomTypeDesc1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_2 = TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1(L_0, L_1, /*hidden argument*/NULL);
NullCheck(L_2);
String_t* L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.ComponentModel.ICustomTypeDescriptor::GetClassName() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_2);
return L_3;
}
}
// System.String System.ComponentModel.TypeDescriptor::GetClassName(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptor_GetClassName_m8136D73D8DCF9FCD7E82565CE8CEA957F18DE9E4 (Type_t * ___componentType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetClassName_m8136D73D8DCF9FCD7E82565CE8CEA957F18DE9E4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_1 = TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB(L_0, _stringLiteral9852EF6A4E62DEF490CCB6F200BC08F5D8D5AC92, /*hidden argument*/NULL);
NullCheck(L_1);
String_t* L_2 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.ComponentModel.ICustomTypeDescriptor::GetClassName() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_1);
return L_2;
}
}
// System.String System.ComponentModel.TypeDescriptor::GetComponentName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptor_GetComponentName_m459C41F0CF27D483E7285912BA6936553D90688B (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetComponentName_m459C41F0CF27D483E7285912BA6936553D90688B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
String_t* L_1 = TypeDescriptor_GetComponentName_mA9AC0DEB74A03166BEB397C9B8E44B8D3AFA175B(L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.String System.ComponentModel.TypeDescriptor::GetComponentName(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptor_GetComponentName_mA9AC0DEB74A03166BEB397C9B8E44B8D3AFA175B (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetComponentName_mA9AC0DEB74A03166BEB397C9B8E44B8D3AFA175B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
bool L_1 = ___noCustomTypeDesc1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_2 = TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1(L_0, L_1, /*hidden argument*/NULL);
NullCheck(L_2);
String_t* L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(2 /* System.String System.ComponentModel.ICustomTypeDescriptor::GetComponentName() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_2);
return L_3;
}
}
// System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * TypeDescriptor_GetConverter_m75EE0FF29752ACFC062B86D27CCBE99DB48FD5E8 (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetConverter_m75EE0FF29752ACFC062B86D27CCBE99DB48FD5E8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_1 = TypeDescriptor_GetConverter_mAC1F889B22B0561918C9FE3CE2AFC3B983E6AABC(L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * TypeDescriptor_GetConverter_mAC1F889B22B0561918C9FE3CE2AFC3B983E6AABC (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetConverter_mAC1F889B22B0561918C9FE3CE2AFC3B983E6AABC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
bool L_1 = ___noCustomTypeDesc1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_2 = TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1(L_0, L_1, /*hidden argument*/NULL);
NullCheck(L_2);
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_3 = InterfaceFuncInvoker0< TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * >::Invoke(3 /* System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor::GetConverter() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_2);
return L_3;
}
}
// System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * TypeDescriptor_GetConverter_m30E075F6ED53FD85B7C1F7F44E58BA20645A68BA (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetConverter_m30E075F6ED53FD85B7C1F7F44E58BA20645A68BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_1 = TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB(L_0, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
NullCheck(L_1);
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_2 = InterfaceFuncInvoker0< TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * >::Invoke(3 /* System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor::GetConverter() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_1);
return L_2;
}
}
// System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::GetDefaultEvent(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * TypeDescriptor_GetDefaultEvent_mF65AF0663D6DBBB76E3A8718561A29B9A63C2045 (Type_t * ___componentType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultEvent_mF65AF0663D6DBBB76E3A8718561A29B9A63C2045_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000b;
}
}
{
return (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)NULL;
}
IL_000b:
{
Type_t * L_2 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_3 = TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB(L_2, _stringLiteral9852EF6A4E62DEF490CCB6F200BC08F5D8D5AC92, /*hidden argument*/NULL);
NullCheck(L_3);
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_4 = InterfaceFuncInvoker0< EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * >::Invoke(4 /* System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor::GetDefaultEvent() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_3);
return L_4;
}
}
// System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::GetDefaultEvent(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * TypeDescriptor_GetDefaultEvent_m270F00968BD241719B4510CE74AFD8CE6B1CC5A8 (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultEvent_m270F00968BD241719B4510CE74AFD8CE6B1CC5A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_1 = TypeDescriptor_GetDefaultEvent_m4BD6A2A34BA730F46533F1862A9F03D82255D6BC(L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::GetDefaultEvent(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * TypeDescriptor_GetDefaultEvent_m4BD6A2A34BA730F46533F1862A9F03D82255D6BC (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultEvent_m4BD6A2A34BA730F46533F1862A9F03D82255D6BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
if (L_0)
{
goto IL_0005;
}
}
{
return (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)NULL;
}
IL_0005:
{
RuntimeObject * L_1 = ___component0;
bool L_2 = ___noCustomTypeDesc1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_3 = TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1(L_1, L_2, /*hidden argument*/NULL);
NullCheck(L_3);
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_4 = InterfaceFuncInvoker0< EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * >::Invoke(4 /* System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor::GetDefaultEvent() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_3);
return L_4;
}
}
// System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::GetDefaultProperty(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * TypeDescriptor_GetDefaultProperty_m0ABAF110FC9CA1F6265C19D5A7ADB524B883D9B8 (Type_t * ___componentType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultProperty_m0ABAF110FC9CA1F6265C19D5A7ADB524B883D9B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000b;
}
}
{
return (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)NULL;
}
IL_000b:
{
Type_t * L_2 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_3 = TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB(L_2, _stringLiteral9852EF6A4E62DEF490CCB6F200BC08F5D8D5AC92, /*hidden argument*/NULL);
NullCheck(L_3);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_4 = InterfaceFuncInvoker0< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * >::Invoke(5 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor::GetDefaultProperty() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_3);
return L_4;
}
}
// System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::GetDefaultProperty(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * TypeDescriptor_GetDefaultProperty_m2C964DA038C7C1D114862E1C5FE2507E26F38DF6 (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultProperty_m2C964DA038C7C1D114862E1C5FE2507E26F38DF6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_1 = TypeDescriptor_GetDefaultProperty_m92DAAC0601FC527EE5B2399EF1AC88ACB9A488DD(L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::GetDefaultProperty(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * TypeDescriptor_GetDefaultProperty_m92DAAC0601FC527EE5B2399EF1AC88ACB9A488DD (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultProperty_m92DAAC0601FC527EE5B2399EF1AC88ACB9A488DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
if (L_0)
{
goto IL_0005;
}
}
{
return (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)NULL;
}
IL_0005:
{
RuntimeObject * L_1 = ___component0;
bool L_2 = ___noCustomTypeDesc1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_3 = TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1(L_1, L_2, /*hidden argument*/NULL);
NullCheck(L_3);
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_4 = InterfaceFuncInvoker0< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * >::Invoke(5 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor::GetDefaultProperty() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_3);
return L_4;
}
}
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor::GetDescriptor(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB (Type_t * ___type0, String_t* ___typeName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
String_t* L_2 = ___typeName1;
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB_RuntimeMethod_var);
}
IL_0010:
{
Type_t * L_4 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_5 = TypeDescriptor_NodeFor_m767FF87E78839CA052D9BA45FC6E18BD28F8E2E2(L_4, /*hidden argument*/NULL);
Type_t * L_6 = ___type0;
NullCheck(L_5);
RuntimeObject* L_7 = TypeDescriptionProvider_GetTypeDescriptor_m8CC34F54B8A643F99C2F4E4C254D661D3DC212D2(L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor::GetDescriptor(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1 (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
RuntimeObject * L_0 = ___component0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, _stringLiteral335C4C1E2F05B5297A56769D8DE75AD9C4874CD3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___component0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_2, IUnimplemented_t534F24BFF614BAA8687C052B77E71CB975EC0D0D_il2cpp_TypeInfo_var)))
{
goto IL_003a;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3;
RuntimeObject * L_5 = ___component0;
NullCheck(L_5);
Type_t * L_6 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_5, /*hidden argument*/NULL);
NullCheck(L_6);
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_6);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_7);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7);
String_t* L_8 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral710779C60AD7499E477DA8802B6979170C7BA227, L_4, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_9 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1_RuntimeMethod_var);
}
IL_003a:
{
RuntimeObject * L_10 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_11 = TypeDescriptor_NodeFor_m5CD091DA5BF7D035FA36E6E397A96B2A9610E9D5(L_10, /*hidden argument*/NULL);
RuntimeObject * L_12 = ___component0;
NullCheck(L_11);
RuntimeObject* L_13 = TypeDescriptionProvider_GetTypeDescriptor_m04847083CB9DB8E7BF69CFCD06283A8D817293A0(L_11, L_12, /*hidden argument*/NULL);
V_0 = L_13;
RuntimeObject * L_14 = ___component0;
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_14, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var));
bool L_15 = ___noCustomTypeDesc1;
if (L_15)
{
goto IL_005c;
}
}
{
RuntimeObject* L_16 = V_1;
if (!L_16)
{
goto IL_005c;
}
}
{
RuntimeObject* L_17 = V_1;
RuntimeObject* L_18 = V_0;
MergedTypeDescriptor_t9395D9B4F23C94B7997A9ED698CBEF7995EB162B * L_19 = (MergedTypeDescriptor_t9395D9B4F23C94B7997A9ED698CBEF7995EB162B *)il2cpp_codegen_object_new(MergedTypeDescriptor_t9395D9B4F23C94B7997A9ED698CBEF7995EB162B_il2cpp_TypeInfo_var);
MergedTypeDescriptor__ctor_m07BED02593A42C075C4F95B23D208CF1222C12A0(L_19, L_17, L_18, /*hidden argument*/NULL);
V_0 = L_19;
}
IL_005c:
{
RuntimeObject* L_20 = V_0;
return L_20;
}
}
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor::GetExtendedDescriptor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, _stringLiteral335C4C1E2F05B5297A56769D8DE75AD9C4874CD3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_3 = TypeDescriptor_NodeFor_m5CD091DA5BF7D035FA36E6E397A96B2A9610E9D5(L_2, /*hidden argument*/NULL);
RuntimeObject * L_4 = ___component0;
NullCheck(L_3);
RuntimeObject* L_5 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(6 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetExtendedTypeDescriptor(System.Object) */, L_3, L_4);
return L_5;
}
}
// System.Object System.ComponentModel.TypeDescriptor::GetEditor(System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeDescriptor_GetEditor_mC998B8DCA2771C639A6F3E4A1AEB9C716455F9C5 (RuntimeObject * ___component0, Type_t * ___editorBaseType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetEditor_mC998B8DCA2771C639A6F3E4A1AEB9C716455F9C5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
Type_t * L_1 = ___editorBaseType1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject * L_2 = TypeDescriptor_GetEditor_m5205BD6EA7BC05FA4DD716AE0E15A5B2A4BC8234(L_0, L_1, (bool)0, /*hidden argument*/NULL);
return L_2;
}
}
// System.Object System.ComponentModel.TypeDescriptor::GetEditor(System.Object,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeDescriptor_GetEditor_m5205BD6EA7BC05FA4DD716AE0E15A5B2A4BC8234 (RuntimeObject * ___component0, Type_t * ___editorBaseType1, bool ___noCustomTypeDesc2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetEditor_m5205BD6EA7BC05FA4DD716AE0E15A5B2A4BC8234_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___editorBaseType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral183286DAC61719C4FD901D84F84C9E91585B6986, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TypeDescriptor_GetEditor_m5205BD6EA7BC05FA4DD716AE0E15A5B2A4BC8234_RuntimeMethod_var);
}
IL_0014:
{
RuntimeObject * L_3 = ___component0;
bool L_4 = ___noCustomTypeDesc2;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_5 = TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1(L_3, L_4, /*hidden argument*/NULL);
Type_t * L_6 = ___editorBaseType1;
NullCheck(L_5);
RuntimeObject * L_7 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(6 /* System.Object System.ComponentModel.ICustomTypeDescriptor::GetEditor(System.Type) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_5, L_6);
return L_7;
}
}
// System.Object System.ComponentModel.TypeDescriptor::GetEditor(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeDescriptor_GetEditor_m66F3C5F1EF83D37BD530FDBC91EACCDD6E339611 (Type_t * ___type0, Type_t * ___editorBaseType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetEditor_m66F3C5F1EF83D37BD530FDBC91EACCDD6E339611_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___editorBaseType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral183286DAC61719C4FD901D84F84C9E91585B6986, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TypeDescriptor_GetEditor_m66F3C5F1EF83D37BD530FDBC91EACCDD6E339611_RuntimeMethod_var);
}
IL_0014:
{
Type_t * L_3 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_4 = TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB(L_3, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
Type_t * L_5 = ___editorBaseType1;
NullCheck(L_4);
RuntimeObject * L_6 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(6 /* System.Object System.ComponentModel.ICustomTypeDescriptor::GetEditor(System.Type) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_4, L_5);
return L_6;
}
}
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * TypeDescriptor_GetEvents_mEB93FB58F539D9302E2ACAA823DABB199DFB9944 (Type_t * ___componentType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_mEB93FB58F539D9302E2ACAA823DABB199DFB9944_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_2 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5(L_2, (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)NULL, (bool)1, /*hidden argument*/NULL);
return L_2;
}
IL_0011:
{
Type_t * L_3 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_4 = TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB(L_3, _stringLiteral9852EF6A4E62DEF490CCB6F200BC08F5D8D5AC92, /*hidden argument*/NULL);
NullCheck(L_4);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_5 = InterfaceFuncInvoker0< EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * >::Invoke(7 /* System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetEvents() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_4);
return L_5;
}
}
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * TypeDescriptor_GetEvents_mFCF0F9D2DF4E79782E05309867A0537AFC2B5B08 (Type_t * ___componentType0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_mFCF0F9D2DF4E79782E05309867A0537AFC2B5B08_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * V_0 = NULL;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_1 = NULL;
{
Type_t * L_0 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_2 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5(L_2, (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)NULL, (bool)1, /*hidden argument*/NULL);
return L_2;
}
IL_0011:
{
Type_t * L_3 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_4 = TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB(L_3, _stringLiteral9852EF6A4E62DEF490CCB6F200BC08F5D8D5AC92, /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_5 = ___attributes1;
NullCheck(L_4);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_6 = InterfaceFuncInvoker1< EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(8 /* System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetEvents(System.Attribute[]) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_4, L_5);
V_0 = L_6;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_7 = ___attributes1;
if (!L_7)
{
goto IL_0051;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_8 = ___attributes1;
NullCheck(L_8);
if (!(((RuntimeArray*)L_8)->max_length))
{
goto IL_0051;
}
}
{
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_9 = V_0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_10 = ___attributes1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_11 = TypeDescriptor_FilterMembers_m6DE8E2489628CB06AFAE539F0202E73AEB645AA9(L_9, L_10, /*hidden argument*/NULL);
V_1 = L_11;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_12 = V_1;
if (!L_12)
{
goto IL_0051;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_13 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL);
NullCheck(L_13);
RuntimeArray * L_16 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(47 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_13, L_15);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_17 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5(L_17, ((EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)Castclass((RuntimeObject*)L_16, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var)), (bool)1, /*hidden argument*/NULL);
V_0 = L_17;
}
IL_0051:
{
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_18 = V_0;
return L_18;
}
}
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * TypeDescriptor_GetEvents_mA157A3DD309A7F9B964A9C1CD8942ED3B395439D (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_mA157A3DD309A7F9B964A9C1CD8942ED3B395439D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_1 = TypeDescriptor_GetEvents_mA76921E0FEA0CFBA15CF0864A20664F2CC3DC4E4(L_0, (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * TypeDescriptor_GetEvents_m31040103B07E1239FBBF0A69D5067016BE8D52E3 (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_m31040103B07E1239FBBF0A69D5067016BE8D52E3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
bool L_1 = ___noCustomTypeDesc1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_2 = TypeDescriptor_GetEvents_mA76921E0FEA0CFBA15CF0864A20664F2CC3DC4E4(L_0, (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * TypeDescriptor_GetEvents_m5BCF7AC534063AAAAB0BEB78AAA98AFA98A3406E (RuntimeObject * ___component0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_m5BCF7AC534063AAAAB0BEB78AAA98AFA98A3406E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attributes1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_2 = TypeDescriptor_GetEvents_mA76921E0FEA0CFBA15CF0864A20664F2CC3DC4E4(L_0, L_1, (bool)0, /*hidden argument*/NULL);
return L_2;
}
}
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object,System.Attribute[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * TypeDescriptor_GetEvents_mA76921E0FEA0CFBA15CF0864A20664F2CC3DC4E4 (RuntimeObject * ___component0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, bool ___noCustomTypeDesc2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_mA76921E0FEA0CFBA15CF0864A20664F2CC3DC4E4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * V_2 = NULL;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
RuntimeObject* V_6 = NULL;
RuntimeObject* V_7 = NULL;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* V_8 = NULL;
{
RuntimeObject * L_0 = ___component0;
if (L_0)
{
goto IL_000b;
}
}
{
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_1 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5(L_1, (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)NULL, (bool)1, /*hidden argument*/NULL);
return L_1;
}
IL_000b:
{
RuntimeObject * L_2 = ___component0;
bool L_3 = ___noCustomTypeDesc2;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_4 = TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1(L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
RuntimeObject * L_5 = ___component0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var)))
{
goto IL_0061;
}
}
{
RuntimeObject* L_6 = V_0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_7 = ___attributes1;
NullCheck(L_6);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_8 = InterfaceFuncInvoker1< EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(8 /* System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetEvents(System.Attribute[]) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_6, L_7);
V_1 = L_8;
bool L_9 = ___noCustomTypeDesc2;
if (!L_9)
{
goto IL_004a;
}
}
{
RuntimeObject * L_10 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_11 = TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE(L_10, /*hidden argument*/NULL);
V_3 = L_11;
RuntimeObject* L_12 = V_3;
if (!L_12)
{
goto IL_00b5;
}
}
{
RuntimeObject* L_13 = V_3;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_14 = ___attributes1;
NullCheck(L_13);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_15 = InterfaceFuncInvoker1< EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(8 /* System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetEvents(System.Attribute[]) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_13, L_14);
V_4 = L_15;
RuntimeObject* L_16 = V_1;
RuntimeObject* L_17 = V_4;
RuntimeObject * L_18 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_19 = TypeDescriptor_PipelineMerge_m12CD63D0457BCA451AF9635E4E754A1E27122E65(2, L_16, L_17, L_18, (RuntimeObject*)NULL, /*hidden argument*/NULL);
V_1 = L_19;
goto IL_00b5;
}
IL_004a:
{
RuntimeObject* L_20 = V_1;
RuntimeObject * L_21 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_22 = TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487(2, L_20, L_21, (RuntimeObject*)NULL, /*hidden argument*/NULL);
V_1 = L_22;
RuntimeObject* L_23 = V_1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_24 = ___attributes1;
RuntimeObject * L_25 = ___component0;
RuntimeObject* L_26 = TypeDescriptor_PipelineAttributeFilter_mDFD0C9F6114800954B3A9275EB4109520570307D(2, L_23, L_24, L_25, (RuntimeObject*)NULL, /*hidden argument*/NULL);
V_1 = L_26;
goto IL_00b5;
}
IL_0061:
{
RuntimeObject * L_27 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_28 = TypeDescriptor_GetCache_mC7540D2FBAB562E689ED1BC2399D3F3C31D97145(L_27, /*hidden argument*/NULL);
V_5 = L_28;
RuntimeObject* L_29 = V_0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_30 = ___attributes1;
NullCheck(L_29);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_31 = InterfaceFuncInvoker1< EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(8 /* System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetEvents(System.Attribute[]) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_29, L_30);
V_1 = L_31;
RuntimeObject* L_32 = V_1;
RuntimeObject* L_33 = V_5;
RuntimeObject* L_34 = TypeDescriptor_PipelineInitialize_mE238329E4034835777FC35289A14EA9A1397CF66(2, L_32, L_33, /*hidden argument*/NULL);
V_1 = L_34;
RuntimeObject * L_35 = ___component0;
RuntimeObject* L_36 = TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE(L_35, /*hidden argument*/NULL);
V_6 = L_36;
RuntimeObject* L_37 = V_6;
if (!L_37)
{
goto IL_009e;
}
}
{
RuntimeObject* L_38 = V_6;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_39 = ___attributes1;
NullCheck(L_38);
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_40 = InterfaceFuncInvoker1< EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(8 /* System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetEvents(System.Attribute[]) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_38, L_39);
V_7 = L_40;
RuntimeObject* L_41 = V_1;
RuntimeObject* L_42 = V_7;
RuntimeObject * L_43 = ___component0;
RuntimeObject* L_44 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_45 = TypeDescriptor_PipelineMerge_m12CD63D0457BCA451AF9635E4E754A1E27122E65(2, L_41, L_42, L_43, L_44, /*hidden argument*/NULL);
V_1 = L_45;
}
IL_009e:
{
RuntimeObject* L_46 = V_1;
RuntimeObject * L_47 = ___component0;
RuntimeObject* L_48 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_49 = TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487(2, L_46, L_47, L_48, /*hidden argument*/NULL);
V_1 = L_49;
RuntimeObject* L_50 = V_1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_51 = ___attributes1;
RuntimeObject * L_52 = ___component0;
RuntimeObject* L_53 = V_5;
RuntimeObject* L_54 = TypeDescriptor_PipelineAttributeFilter_mDFD0C9F6114800954B3A9275EB4109520570307D(2, L_50, L_51, L_52, L_53, /*hidden argument*/NULL);
V_1 = L_54;
}
IL_00b5:
{
RuntimeObject* L_55 = V_1;
V_2 = ((EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)IsInstClass((RuntimeObject*)L_55, EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var));
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_56 = V_2;
if (L_56)
{
goto IL_00de;
}
}
{
RuntimeObject* L_57 = V_1;
NullCheck(L_57);
int32_t L_58 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_57);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_59 = (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)SZArrayNew(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var, (uint32_t)L_58);
V_8 = L_59;
RuntimeObject* L_60 = V_1;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_61 = V_8;
NullCheck(L_60);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_60, (RuntimeArray *)(RuntimeArray *)L_61, 0);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_62 = V_8;
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_63 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5(L_63, L_62, (bool)1, /*hidden argument*/NULL);
V_2 = L_63;
}
IL_00de:
{
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_64 = V_2;
return L_64;
}
}
// System.String System.ComponentModel.TypeDescriptor::GetExtenderCollisionSuffix(System.ComponentModel.MemberDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptor_GetExtenderCollisionSuffix_m686BE0F744E8E5511310EA611B39FF891AEDC784 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___member0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetExtenderCollisionSuffix_m686BE0F744E8E5511310EA611B39FF891AEDC784_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
String_t* V_3 = NULL;
RuntimeObject* V_4 = NULL;
int32_t V_5 = 0;
{
V_0 = (String_t*)NULL;
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_0 = ___member0;
NullCheck(L_0);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, L_0);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
NullCheck(L_1);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_4 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_1, L_3);
V_1 = ((ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 *)IsInstSealed((RuntimeObject*)L_4, ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_il2cpp_TypeInfo_var));
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_5 = V_1;
if (!L_5)
{
goto IL_0085;
}
}
{
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_6 = V_1;
NullCheck(L_6);
RuntimeObject* L_7 = ExtenderProvidedPropertyAttribute_get_Provider_m54BFFEFF3AF82BD3F36AC3A1D473FAC53CF368C6_inline(L_6, /*hidden argument*/NULL);
V_2 = L_7;
RuntimeObject* L_8 = V_2;
if (!L_8)
{
goto IL_0085;
}
}
{
V_3 = (String_t*)NULL;
RuntimeObject* L_9 = V_2;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var));
RuntimeObject* L_10 = V_4;
if (!L_10)
{
goto IL_004e;
}
}
{
RuntimeObject* L_11 = V_4;
NullCheck(L_11);
RuntimeObject* L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_11);
if (!L_12)
{
goto IL_004e;
}
}
{
RuntimeObject* L_13 = V_4;
NullCheck(L_13);
RuntimeObject* L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_13);
NullCheck(L_14);
String_t* L_15 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String System.ComponentModel.ISite::get_Name() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_14);
V_3 = L_15;
}
IL_004e:
{
String_t* L_16 = V_3;
if (!L_16)
{
goto IL_0059;
}
}
{
String_t* L_17 = V_3;
NullCheck(L_17);
int32_t L_18 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_17, /*hidden argument*/NULL);
if (L_18)
{
goto IL_0074;
}
}
IL_0059:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
int32_t L_19 = Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F((int32_t*)(((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get_address_of__collisionIndex_5()), /*hidden argument*/NULL);
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_20 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_21 = Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5((int32_t*)(&V_5), L_20, /*hidden argument*/NULL);
V_3 = L_21;
}
IL_0074:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_22 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_23 = V_3;
String_t* L_24 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_22, _stringLiteralC0DE08B271A7803949CF3701177C39EA82D111C5, L_23, /*hidden argument*/NULL);
V_0 = L_24;
}
IL_0085:
{
String_t* L_25 = V_0;
return L_25;
}
}
// System.String System.ComponentModel.TypeDescriptor::GetFullComponentName(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeDescriptor_GetFullComponentName_m138486221163708B96C25C805A85F8414598F74E (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetFullComponentName_m138486221163708B96C25C805A85F8414598F74E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral335C4C1E2F05B5297A56769D8DE75AD9C4874CD3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_GetFullComponentName_m138486221163708B96C25C805A85F8414598F74E_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_3 = TypeDescriptor_GetProvider_mCD95C62422DB0D4811ACE64E72D3C4C5B25BDD90(L_2, /*hidden argument*/NULL);
RuntimeObject * L_4 = ___component0;
NullCheck(L_3);
String_t* L_5 = VirtFuncInvoker1< String_t*, RuntimeObject * >::Invoke(8 /* System.String System.ComponentModel.TypeDescriptionProvider::GetFullComponentName(System.Object) */, L_3, L_4);
return L_5;
}
}
// System.Type System.ComponentModel.TypeDescriptor::GetNodeForBaseType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptor_GetNodeForBaseType_mD4DC672E329294D1CC62ED255A60FEB216151414 (Type_t * ___searchType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetNodeForBaseType_mD4DC672E329294D1CC62ED255A60FEB216151414_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___searchType0;
NullCheck(L_0);
bool L_1 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Type_t * L_2 = TypeDescriptor_get_InterfaceType_m0DB3316CB939FE67643C044BAF39EB4F69D758E6(/*hidden argument*/NULL);
return L_2;
}
IL_000e:
{
Type_t * L_3 = ___searchType0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Type_t * L_4 = TypeDescriptor_get_InterfaceType_m0DB3316CB939FE67643C044BAF39EB4F69D758E6(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_001d;
}
}
{
return (Type_t *)NULL;
}
IL_001d:
{
Type_t * L_6 = ___searchType0;
NullCheck(L_6);
Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_6);
return L_7;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_m0398CE2B5F7971982337E934990B8A2128675024 (Type_t * ___componentType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_m0398CE2B5F7971982337E934990B8A2128675024_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_2 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D(L_2, (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)NULL, (bool)1, /*hidden argument*/NULL);
return L_2;
}
IL_0011:
{
Type_t * L_3 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_4 = TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB(L_3, _stringLiteral9852EF6A4E62DEF490CCB6F200BC08F5D8D5AC92, /*hidden argument*/NULL);
NullCheck(L_4);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_5 = InterfaceFuncInvoker0< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * >::Invoke(9 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_4);
return L_5;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Type,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_mB120D4E97EBF1F7E8C585380F0B6EF8E5EC843EE (Type_t * ___componentType0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_mB120D4E97EBF1F7E8C585380F0B6EF8E5EC843EE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * V_0 = NULL;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_1 = NULL;
{
Type_t * L_0 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_2 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D(L_2, (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)NULL, (bool)1, /*hidden argument*/NULL);
return L_2;
}
IL_0011:
{
Type_t * L_3 = ___componentType0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_4 = TypeDescriptor_GetDescriptor_m03B8BB2FE0F4EB472FC543B31A37D627CD02D5EB(L_3, _stringLiteral9852EF6A4E62DEF490CCB6F200BC08F5D8D5AC92, /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_5 = ___attributes1;
NullCheck(L_4);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_6 = InterfaceFuncInvoker1< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(10 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties(System.Attribute[]) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_4, L_5);
V_0 = L_6;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_7 = ___attributes1;
if (!L_7)
{
goto IL_0051;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_8 = ___attributes1;
NullCheck(L_8);
if (!(((RuntimeArray*)L_8)->max_length))
{
goto IL_0051;
}
}
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_9 = V_0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_10 = ___attributes1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_11 = TypeDescriptor_FilterMembers_m6DE8E2489628CB06AFAE539F0202E73AEB645AA9(L_9, L_10, /*hidden argument*/NULL);
V_1 = L_11;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_12 = V_1;
if (!L_12)
{
goto IL_0051;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_13 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL);
NullCheck(L_13);
RuntimeArray * L_16 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(47 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_13, L_15);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_17 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D(L_17, ((PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)Castclass((RuntimeObject*)L_16, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var)), (bool)1, /*hidden argument*/NULL);
V_0 = L_17;
}
IL_0051:
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_18 = V_0;
return L_18;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_mADA58F0BAD4560D62BF7ADB7186B990D11780B0C (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_mADA58F0BAD4560D62BF7ADB7186B990D11780B0C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_1 = TypeDescriptor_GetProperties_m9A75CAB323930B35DC4ED5EC53BFCB2C85BD7170(L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_m9A75CAB323930B35DC4ED5EC53BFCB2C85BD7170 (RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_m9A75CAB323930B35DC4ED5EC53BFCB2C85BD7170_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
bool L_1 = ___noCustomTypeDesc1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_2 = TypeDescriptor_GetPropertiesImpl_m0F204546AFC2CCED7979E08E0FF134D7084DC248(L_0, (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL, L_1, (bool)1, /*hidden argument*/NULL);
return L_2;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_m05CFF294019C93C8ADC7433BB7D5D87F19DDE7FC (RuntimeObject * ___component0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_m05CFF294019C93C8ADC7433BB7D5D87F19DDE7FC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attributes1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_2 = TypeDescriptor_GetProperties_mD2A9DF20F4E4373E7144791303ECB062973647FA(L_0, L_1, (bool)0, /*hidden argument*/NULL);
return L_2;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Attribute[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_mD2A9DF20F4E4373E7144791303ECB062973647FA (RuntimeObject * ___component0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, bool ___noCustomTypeDesc2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_mD2A9DF20F4E4373E7144791303ECB062973647FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attributes1;
bool L_2 = ___noCustomTypeDesc2;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_3 = TypeDescriptor_GetPropertiesImpl_m0F204546AFC2CCED7979E08E0FF134D7084DC248(L_0, L_1, L_2, (bool)0, /*hidden argument*/NULL);
return L_3;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetPropertiesImpl(System.Object,System.Attribute[],System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetPropertiesImpl_m0F204546AFC2CCED7979E08E0FF134D7084DC248 (RuntimeObject * ___component0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, bool ___noCustomTypeDesc2, bool ___noAttributes3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetPropertiesImpl_m0F204546AFC2CCED7979E08E0FF134D7084DC248_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * V_2 = NULL;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
RuntimeObject* V_6 = NULL;
RuntimeObject* V_7 = NULL;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_8 = NULL;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * G_B6_0 = NULL;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * G_B11_0 = NULL;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * G_B16_0 = NULL;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * G_B20_0 = NULL;
{
RuntimeObject * L_0 = ___component0;
if (L_0)
{
goto IL_000b;
}
}
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_1 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D(L_1, (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)NULL, (bool)1, /*hidden argument*/NULL);
return L_1;
}
IL_000b:
{
RuntimeObject * L_2 = ___component0;
bool L_3 = ___noCustomTypeDesc2;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_4 = TypeDescriptor_GetDescriptor_m557DDD4B793F92E5D71B980E264ACCF1C6A2EFB1(L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
RuntimeObject * L_5 = ___component0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var)))
{
goto IL_007a;
}
}
{
bool L_6 = ___noAttributes3;
if (L_6)
{
goto IL_0027;
}
}
{
RuntimeObject* L_7 = V_0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_8 = ___attributes1;
NullCheck(L_7);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_9 = InterfaceFuncInvoker1< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(10 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties(System.Attribute[]) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_7, L_8);
G_B6_0 = L_9;
goto IL_002d;
}
IL_0027:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_11 = InterfaceFuncInvoker0< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * >::Invoke(9 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_10);
G_B6_0 = L_11;
}
IL_002d:
{
V_1 = G_B6_0;
bool L_12 = ___noCustomTypeDesc2;
if (!L_12)
{
goto IL_0063;
}
}
{
RuntimeObject * L_13 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_14 = TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE(L_13, /*hidden argument*/NULL);
V_3 = L_14;
RuntimeObject* L_15 = V_3;
if (!L_15)
{
goto IL_00e5;
}
}
{
bool L_16 = ___noAttributes3;
if (L_16)
{
goto IL_004a;
}
}
{
RuntimeObject* L_17 = V_3;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_18 = ___attributes1;
NullCheck(L_17);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_19 = InterfaceFuncInvoker1< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(10 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties(System.Attribute[]) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_17, L_18);
G_B11_0 = L_19;
goto IL_0050;
}
IL_004a:
{
RuntimeObject* L_20 = V_3;
NullCheck(L_20);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_21 = InterfaceFuncInvoker0< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * >::Invoke(9 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_20);
G_B11_0 = L_21;
}
IL_0050:
{
V_4 = G_B11_0;
RuntimeObject* L_22 = V_1;
RuntimeObject* L_23 = V_4;
RuntimeObject * L_24 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_25 = TypeDescriptor_PipelineMerge_m12CD63D0457BCA451AF9635E4E754A1E27122E65(1, L_22, L_23, L_24, (RuntimeObject*)NULL, /*hidden argument*/NULL);
V_1 = L_25;
goto IL_00e5;
}
IL_0063:
{
RuntimeObject* L_26 = V_1;
RuntimeObject * L_27 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_28 = TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487(1, L_26, L_27, (RuntimeObject*)NULL, /*hidden argument*/NULL);
V_1 = L_28;
RuntimeObject* L_29 = V_1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_30 = ___attributes1;
RuntimeObject * L_31 = ___component0;
RuntimeObject* L_32 = TypeDescriptor_PipelineAttributeFilter_mDFD0C9F6114800954B3A9275EB4109520570307D(1, L_29, L_30, L_31, (RuntimeObject*)NULL, /*hidden argument*/NULL);
V_1 = L_32;
goto IL_00e5;
}
IL_007a:
{
RuntimeObject * L_33 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_34 = TypeDescriptor_GetCache_mC7540D2FBAB562E689ED1BC2399D3F3C31D97145(L_33, /*hidden argument*/NULL);
V_5 = L_34;
bool L_35 = ___noAttributes3;
if (L_35)
{
goto IL_008e;
}
}
{
RuntimeObject* L_36 = V_0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_37 = ___attributes1;
NullCheck(L_36);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_38 = InterfaceFuncInvoker1< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(10 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties(System.Attribute[]) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_36, L_37);
G_B16_0 = L_38;
goto IL_0094;
}
IL_008e:
{
RuntimeObject* L_39 = V_0;
NullCheck(L_39);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_40 = InterfaceFuncInvoker0< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * >::Invoke(9 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_39);
G_B16_0 = L_40;
}
IL_0094:
{
V_1 = G_B16_0;
RuntimeObject* L_41 = V_1;
RuntimeObject* L_42 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_43 = TypeDescriptor_PipelineInitialize_mE238329E4034835777FC35289A14EA9A1397CF66(1, L_41, L_42, /*hidden argument*/NULL);
V_1 = L_43;
RuntimeObject * L_44 = ___component0;
RuntimeObject* L_45 = TypeDescriptor_GetExtendedDescriptor_mD3B3C0990D1E6DF8A99C269710B4FC77DAC1BCFE(L_44, /*hidden argument*/NULL);
V_6 = L_45;
RuntimeObject* L_46 = V_6;
if (!L_46)
{
goto IL_00ce;
}
}
{
bool L_47 = ___noAttributes3;
if (L_47)
{
goto IL_00b8;
}
}
{
RuntimeObject* L_48 = V_6;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_49 = ___attributes1;
NullCheck(L_48);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_50 = InterfaceFuncInvoker1< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(10 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties(System.Attribute[]) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_48, L_49);
G_B20_0 = L_50;
goto IL_00bf;
}
IL_00b8:
{
RuntimeObject* L_51 = V_6;
NullCheck(L_51);
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_52 = InterfaceFuncInvoker0< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * >::Invoke(9 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties() */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_51);
G_B20_0 = L_52;
}
IL_00bf:
{
V_7 = G_B20_0;
RuntimeObject* L_53 = V_1;
RuntimeObject* L_54 = V_7;
RuntimeObject * L_55 = ___component0;
RuntimeObject* L_56 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_57 = TypeDescriptor_PipelineMerge_m12CD63D0457BCA451AF9635E4E754A1E27122E65(1, L_53, L_54, L_55, L_56, /*hidden argument*/NULL);
V_1 = L_57;
}
IL_00ce:
{
RuntimeObject* L_58 = V_1;
RuntimeObject * L_59 = ___component0;
RuntimeObject* L_60 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_61 = TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487(1, L_58, L_59, L_60, /*hidden argument*/NULL);
V_1 = L_61;
RuntimeObject* L_62 = V_1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_63 = ___attributes1;
RuntimeObject * L_64 = ___component0;
RuntimeObject* L_65 = V_5;
RuntimeObject* L_66 = TypeDescriptor_PipelineAttributeFilter_mDFD0C9F6114800954B3A9275EB4109520570307D(1, L_62, L_63, L_64, L_65, /*hidden argument*/NULL);
V_1 = L_66;
}
IL_00e5:
{
RuntimeObject* L_67 = V_1;
V_2 = ((PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)IsInstClass((RuntimeObject*)L_67, PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var));
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_68 = V_2;
if (L_68)
{
goto IL_010e;
}
}
{
RuntimeObject* L_69 = V_1;
NullCheck(L_69);
int32_t L_70 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_69);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_71 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_70);
V_8 = L_71;
RuntimeObject* L_72 = V_1;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_73 = V_8;
NullCheck(L_72);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_72, (RuntimeArray *)(RuntimeArray *)L_73, 0);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_74 = V_8;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_75 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D(L_75, L_74, (bool)1, /*hidden argument*/NULL);
V_2 = L_75;
}
IL_010e:
{
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_76 = V_2;
return L_76;
}
}
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::GetProvider(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * TypeDescriptor_GetProvider_m3265CFAFF759A9DC540031E2401F96CD00BE9BF7 (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetProvider_m3265CFAFF759A9DC540031E2401F96CD00BE9BF7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TypeDescriptor_GetProvider_m3265CFAFF759A9DC540031E2401F96CD00BE9BF7_RuntimeMethod_var);
}
IL_0014:
{
Type_t * L_3 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_4 = TypeDescriptor_NodeFor_m47CC24E4CFA599136DD05F6DD9A72A4B309D0D90(L_3, (bool)1, /*hidden argument*/NULL);
return L_4;
}
}
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::GetProvider(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * TypeDescriptor_GetProvider_mCD95C62422DB0D4811ACE64E72D3C4C5B25BDD90 (RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetProvider_mCD95C62422DB0D4811ACE64E72D3C4C5B25BDD90_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___instance0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_GetProvider_mCD95C62422DB0D4811ACE64E72D3C4C5B25BDD90_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___instance0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_3 = TypeDescriptor_NodeFor_m90ADBC22F629303B34247E6000724298EDDF3E61(L_2, (bool)1, /*hidden argument*/NULL);
return L_3;
}
}
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::GetProviderRecursive(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * TypeDescriptor_GetProviderRecursive_mFA9FD212A625262784E9B1B05D3B82564B393877 (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetProviderRecursive_mFA9FD212A625262784E9B1B05D3B82564B393877_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_1 = TypeDescriptor_NodeFor_m47CC24E4CFA599136DD05F6DD9A72A4B309D0D90(L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Type System.ComponentModel.TypeDescriptor::GetReflectionType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptor_GetReflectionType_mB28D64FBA294D618334381A77DAE790811611C3D (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetReflectionType_mB28D64FBA294D618334381A77DAE790811611C3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TypeDescriptor_GetReflectionType_mB28D64FBA294D618334381A77DAE790811611C3D_RuntimeMethod_var);
}
IL_0014:
{
Type_t * L_3 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_4 = TypeDescriptor_NodeFor_m767FF87E78839CA052D9BA45FC6E18BD28F8E2E2(L_3, /*hidden argument*/NULL);
Type_t * L_5 = ___type0;
NullCheck(L_4);
Type_t * L_6 = TypeDescriptionProvider_GetReflectionType_m5A731257A8DCBE75C4FE588A1CC73EE2FFCA7E16(L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Type System.ComponentModel.TypeDescriptor::GetReflectionType(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptor_GetReflectionType_m92BF9F8F63D9F2A14BD3E40941A7FD4B3662043E (RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_GetReflectionType_m92BF9F8F63D9F2A14BD3E40941A7FD4B3662043E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___instance0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_GetReflectionType_m92BF9F8F63D9F2A14BD3E40941A7FD4B3662043E_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___instance0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_3 = TypeDescriptor_NodeFor_m5CD091DA5BF7D035FA36E6E397A96B2A9610E9D5(L_2, /*hidden argument*/NULL);
RuntimeObject * L_4 = ___instance0;
NullCheck(L_3);
Type_t * L_5 = TypeDescriptionProvider_GetReflectionType_mB8AF537325510600B0C5A2B9940C970FA9DF23E4(L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.ComponentModel.TypeDescriptor_TypeDescriptionNode System.ComponentModel.TypeDescriptor::NodeFor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * TypeDescriptor_NodeFor_m767FF87E78839CA052D9BA45FC6E18BD28F8E2E2 (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_NodeFor_m767FF87E78839CA052D9BA45FC6E18BD28F8E2E2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_1 = TypeDescriptor_NodeFor_m47CC24E4CFA599136DD05F6DD9A72A4B309D0D90(L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.ComponentModel.TypeDescriptor_TypeDescriptionNode System.ComponentModel.TypeDescriptor::NodeFor(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * TypeDescriptor_NodeFor_m47CC24E4CFA599136DD05F6DD9A72A4B309D0D90 (Type_t * ___type0, bool ___createDelegator1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_NodeFor_m47CC24E4CFA599136DD05F6DD9A72A4B309D0D90_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_0 = NULL;
Type_t * V_1 = NULL;
Type_t * V_2 = NULL;
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * V_3 = NULL;
bool V_4 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_CheckDefaultProvider_m992A2ED0D5F3621C00369DF8CF35D6AFB17D3ADC(L_0, /*hidden argument*/NULL);
V_0 = (TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)NULL;
Type_t * L_1 = ___type0;
V_1 = L_1;
goto IL_00e0;
}
IL_000f:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTypeTable_1();
Type_t * L_3 = V_1;
NullCheck(L_2);
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3);
V_0 = ((TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)CastclassSealed((RuntimeObject*)L_4, TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var));
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_5 = V_0;
if (L_5)
{
goto IL_0034;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_6 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
Type_t * L_7 = V_1;
NullCheck(L_6);
RuntimeObject * L_8 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_6, L_7);
V_0 = ((TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)CastclassSealed((RuntimeObject*)L_8, TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var));
}
IL_0034:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_9 = V_0;
if (L_9)
{
goto IL_00e0;
}
}
{
Type_t * L_10 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Type_t * L_11 = TypeDescriptor_GetNodeForBaseType_mD4DC672E329294D1CC62ED255A60FEB216151414(L_10, /*hidden argument*/NULL);
V_2 = L_11;
Type_t * L_12 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_13 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_13, /*hidden argument*/NULL);
bool L_15 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_12, L_14, /*hidden argument*/NULL);
if (L_15)
{
goto IL_005c;
}
}
{
Type_t * L_16 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_17 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_16, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_00a5;
}
}
IL_005c:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_18 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
V_3 = L_18;
V_4 = (bool)0;
}
IL_0065:
try
{ // begin try (depth: 1)
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_19 = V_3;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_19, (bool*)(&V_4), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_20 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
Type_t * L_21 = V_1;
NullCheck(L_20);
RuntimeObject * L_22 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_20, L_21);
V_0 = ((TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)CastclassSealed((RuntimeObject*)L_22, TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var));
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_23 = V_0;
if (L_23)
{
goto IL_0098;
}
}
IL_0081:
{
ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * L_24 = (ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 *)il2cpp_codegen_object_new(ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var);
ReflectTypeDescriptionProvider__ctor_mE3E181FF24A78513F9E285D485FA292B11708B17(L_24, /*hidden argument*/NULL);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_25 = (TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)il2cpp_codegen_object_new(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var);
TypeDescriptionNode__ctor_m18D16A33443D7C6C32D09203AE94E5A5DA65BDFF(L_25, L_24, /*hidden argument*/NULL);
V_0 = L_25;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_26 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
Type_t * L_27 = V_1;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_28 = V_0;
NullCheck(L_26);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_26, L_27, L_28);
}
IL_0098:
{
IL2CPP_LEAVE(0xE0, FINALLY_009a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009a;
}
FINALLY_009a:
{ // begin finally (depth: 1)
{
bool L_29 = V_4;
if (!L_29)
{
goto IL_00a4;
}
}
IL_009e:
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_30 = V_3;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_30, /*hidden argument*/NULL);
}
IL_00a4:
{
IL2CPP_END_FINALLY(154)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(154)
{
IL2CPP_JUMP_TBL(0xE0, IL_00e0)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00a5:
{
bool L_31 = ___createDelegator1;
if (!L_31)
{
goto IL_00de;
}
}
{
Type_t * L_32 = V_2;
DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * L_33 = (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 *)il2cpp_codegen_object_new(DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56_il2cpp_TypeInfo_var);
DelegatingTypeDescriptionProvider__ctor_mCA7A19A0B8F2306A3FCBE5541B92E0F1D1376B01(L_33, L_32, /*hidden argument*/NULL);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_34 = (TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)il2cpp_codegen_object_new(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var);
TypeDescriptionNode__ctor_m18D16A33443D7C6C32D09203AE94E5A5DA65BDFF(L_34, L_33, /*hidden argument*/NULL);
V_0 = L_34;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_35 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
V_3 = L_35;
V_4 = (bool)0;
}
IL_00bd:
try
{ // begin try (depth: 1)
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_36 = V_3;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_36, (bool*)(&V_4), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_37 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTypeTable_1();
Type_t * L_38 = V_1;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_39 = V_0;
NullCheck(L_37);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_37, L_38, L_39);
IL2CPP_LEAVE(0xE0, FINALLY_00d3);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00d3;
}
FINALLY_00d3:
{ // begin finally (depth: 1)
{
bool L_40 = V_4;
if (!L_40)
{
goto IL_00dd;
}
}
IL_00d7:
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_41 = V_3;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_41, /*hidden argument*/NULL);
}
IL_00dd:
{
IL2CPP_END_FINALLY(211)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(211)
{
IL2CPP_JUMP_TBL(0xE0, IL_00e0)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00de:
{
Type_t * L_42 = V_2;
V_1 = L_42;
}
IL_00e0:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_43 = V_0;
if (!L_43)
{
goto IL_000f;
}
}
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_44 = V_0;
return L_44;
}
}
// System.ComponentModel.TypeDescriptor_TypeDescriptionNode System.ComponentModel.TypeDescriptor::NodeFor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * TypeDescriptor_NodeFor_m5CD091DA5BF7D035FA36E6E397A96B2A9610E9D5 (RuntimeObject * ___instance0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_NodeFor_m5CD091DA5BF7D035FA36E6E397A96B2A9610E9D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___instance0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_1 = TypeDescriptor_NodeFor_m90ADBC22F629303B34247E6000724298EDDF3E61(L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.ComponentModel.TypeDescriptor_TypeDescriptionNode System.ComponentModel.TypeDescriptor::NodeFor(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * TypeDescriptor_NodeFor_m90ADBC22F629303B34247E6000724298EDDF3E61 (RuntimeObject * ___instance0, bool ___createDelegator1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_NodeFor_m90ADBC22F629303B34247E6000724298EDDF3E61_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_0 = NULL;
Type_t * V_1 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_0 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
RuntimeObject * L_1 = ___instance0;
NullCheck(L_0);
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1);
V_0 = ((TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)CastclassSealed((RuntimeObject*)L_2, TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var));
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_3 = V_0;
if (L_3)
{
goto IL_0041;
}
}
{
RuntimeObject * L_4 = ___instance0;
NullCheck(L_4);
Type_t * L_5 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_4, /*hidden argument*/NULL);
V_1 = L_5;
Type_t * L_6 = V_1;
NullCheck(L_6);
bool L_7 = Type_get_IsCOMObject_m8A4083D3B8D11015F554755827249ABE5E996381(L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0029;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Type_t * L_8 = TypeDescriptor_get_ComObjectType_mD9A4F9CDA5863A62DEE85F88DECB3FF37CE42A4F(/*hidden argument*/NULL);
V_1 = L_8;
}
IL_0029:
{
bool L_9 = ___createDelegator1;
if (!L_9)
{
goto IL_003a;
}
}
{
Type_t * L_10 = V_1;
DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * L_11 = (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 *)il2cpp_codegen_object_new(DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56_il2cpp_TypeInfo_var);
DelegatingTypeDescriptionProvider__ctor_mCA7A19A0B8F2306A3FCBE5541B92E0F1D1376B01(L_11, L_10, /*hidden argument*/NULL);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_12 = (TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)il2cpp_codegen_object_new(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var);
TypeDescriptionNode__ctor_m18D16A33443D7C6C32D09203AE94E5A5DA65BDFF(L_12, L_11, /*hidden argument*/NULL);
V_0 = L_12;
goto IL_0041;
}
IL_003a:
{
Type_t * L_13 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_14 = TypeDescriptor_NodeFor_m767FF87E78839CA052D9BA45FC6E18BD28F8E2E2(L_13, /*hidden argument*/NULL);
V_0 = L_14;
}
IL_0041:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_15 = V_0;
return L_15;
}
}
// System.Void System.ComponentModel.TypeDescriptor::NodeRemove(System.Object,System.ComponentModel.TypeDescriptionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_NodeRemove_mA49498A2B87FC037CE2A9C6D26CDF6043FEFC122 (RuntimeObject * ___key0, TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_NodeRemove_mA49498A2B87FC037CE2A9C6D26CDF6043FEFC122_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * V_0 = NULL;
bool V_1 = false;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_2 = NULL;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_3 = NULL;
Type_t * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_0 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_2 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
RuntimeObject * L_3 = ___key0;
NullCheck(L_2);
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3);
V_2 = ((TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)CastclassSealed((RuntimeObject*)L_4, TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var));
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_5 = V_2;
V_3 = L_5;
goto IL_002c;
}
IL_0025:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_6 = V_3;
NullCheck(L_6);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_7 = L_6->get_Next_2();
V_3 = L_7;
}
IL_002c:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_8 = V_3;
if (!L_8)
{
goto IL_0038;
}
}
IL_002f:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_9 = V_3;
NullCheck(L_9);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_10 = L_9->get_Provider_3();
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_11 = ___provider1;
if ((!(((RuntimeObject*)(TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 *)L_10) == ((RuntimeObject*)(TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 *)L_11))))
{
goto IL_0025;
}
}
IL_0038:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_12 = V_3;
if (!L_12)
{
goto IL_00cd;
}
}
IL_003e:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_13 = V_3;
NullCheck(L_13);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_14 = L_13->get_Next_2();
if (!L_14)
{
goto IL_0086;
}
}
IL_0046:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_15 = V_3;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_16 = V_3;
NullCheck(L_16);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_17 = L_16->get_Next_2();
NullCheck(L_17);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_18 = L_17->get_Provider_3();
NullCheck(L_15);
L_15->set_Provider_3(L_18);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_19 = V_3;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_20 = V_3;
NullCheck(L_20);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_21 = L_20->get_Next_2();
NullCheck(L_21);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_22 = L_21->get_Next_2();
NullCheck(L_19);
L_19->set_Next_2(L_22);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_23 = V_3;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_24 = V_2;
if ((!(((RuntimeObject*)(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)L_23) == ((RuntimeObject*)(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)L_24))))
{
goto IL_00c3;
}
}
IL_006c:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_25 = V_3;
NullCheck(L_25);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_26 = L_25->get_Provider_3();
if (!((DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 *)IsInstSealed((RuntimeObject*)L_26, DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56_il2cpp_TypeInfo_var)))
{
goto IL_00c3;
}
}
IL_0079:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_27 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
RuntimeObject * L_28 = ___key0;
NullCheck(L_27);
VirtActionInvoker1< RuntimeObject * >::Invoke(39 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_27, L_28);
goto IL_00c3;
}
IL_0086:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_29 = V_3;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_30 = V_2;
if ((((RuntimeObject*)(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)L_29) == ((RuntimeObject*)(TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)L_30)))
{
goto IL_00b8;
}
}
IL_008a:
{
RuntimeObject * L_31 = ___key0;
V_4 = ((Type_t *)IsInstClass((RuntimeObject*)L_31, Type_t_il2cpp_TypeInfo_var));
Type_t * L_32 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_33 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_32, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_33)
{
goto IL_00a4;
}
}
IL_009c:
{
RuntimeObject * L_34 = ___key0;
NullCheck(L_34);
Type_t * L_35 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_34, /*hidden argument*/NULL);
V_4 = L_35;
}
IL_00a4:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_36 = V_3;
Type_t * L_37 = V_4;
NullCheck(L_37);
Type_t * L_38 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_37);
DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * L_39 = (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 *)il2cpp_codegen_object_new(DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56_il2cpp_TypeInfo_var);
DelegatingTypeDescriptionProvider__ctor_mCA7A19A0B8F2306A3FCBE5541B92E0F1D1376B01(L_39, L_38, /*hidden argument*/NULL);
NullCheck(L_36);
L_36->set_Provider_3(L_39);
goto IL_00c3;
}
IL_00b8:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_40 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
RuntimeObject * L_41 = ___key0;
NullCheck(L_40);
VirtActionInvoker1< RuntimeObject * >::Invoke(39 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_40, L_41);
}
IL_00c3:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_42 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTypeTable_1();
NullCheck(L_42);
VirtActionInvoker0::Invoke(24 /* System.Void System.Collections.Hashtable::Clear() */, L_42);
}
IL_00cd:
{
IL2CPP_LEAVE(0xD9, FINALLY_00cf);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00cf;
}
FINALLY_00cf:
{ // begin finally (depth: 1)
{
bool L_43 = V_1;
if (!L_43)
{
goto IL_00d8;
}
}
IL_00d2:
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_44 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_44, /*hidden argument*/NULL);
}
IL_00d8:
{
IL2CPP_END_FINALLY(207)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(207)
{
IL2CPP_JUMP_TBL(0xD9, IL_00d9)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00d9:
{
return;
}
}
// System.Collections.ICollection System.ComponentModel.TypeDescriptor::PipelineAttributeFilter(System.Int32,System.Collections.ICollection,System.Attribute[],System.Object,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_PipelineAttributeFilter_mDFD0C9F6114800954B3A9275EB4109520570307D (int32_t ___pipelineType0, RuntimeObject* ___members1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___filter2, RuntimeObject * ___instance3, RuntimeObject* ___cache4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_PipelineAttributeFilter_mDFD0C9F6114800954B3A9275EB4109520570307D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_1 = NULL;
AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 * V_2 = NULL;
RuntimeObject* V_3 = NULL;
AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 * V_4 = NULL;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_5 = NULL;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* V_6 = NULL;
{
RuntimeObject* L_0 = ___members1;
V_0 = ((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)IsInstClass((RuntimeObject*)L_0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var));
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___filter2;
if (!L_1)
{
goto IL_000e;
}
}
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_2 = ___filter2;
NullCheck(L_2);
if ((((RuntimeArray*)L_2)->max_length))
{
goto IL_0010;
}
}
IL_000e:
{
RuntimeObject* L_3 = ___members1;
return L_3;
}
IL_0010:
{
RuntimeObject* L_4 = ___cache4;
if (!L_4)
{
goto IL_004f;
}
}
{
RuntimeObject* L_5 = V_0;
if (!L_5)
{
goto IL_001f;
}
}
{
RuntimeObject* L_6 = V_0;
NullCheck(L_6);
bool L_7 = InterfaceFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Collections.IList::get_IsReadOnly() */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_6);
if (!L_7)
{
goto IL_004f;
}
}
IL_001f:
{
RuntimeObject* L_8 = ___cache4;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_9 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineAttributeFilterKeys_13();
int32_t L_10 = ___pipelineType0;
NullCheck(L_9);
int32_t L_11 = L_10;
Guid_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
Guid_t L_13 = L_12;
RuntimeObject * L_14 = Box(Guid_t_il2cpp_TypeInfo_var, &L_13);
NullCheck(L_8);
RuntimeObject * L_15 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_8, L_14);
V_2 = ((AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 *)IsInstSealed((RuntimeObject*)L_15, AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01_il2cpp_TypeInfo_var));
AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 * L_16 = V_2;
if (!L_16)
{
goto IL_004f;
}
}
{
AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 * L_17 = V_2;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_18 = ___filter2;
NullCheck(L_17);
bool L_19 = AttributeFilterCacheItem_IsValid_m0218A992CF2B98E84CD36A2C037F948A5DDB6BF9(L_17, L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_004f;
}
}
{
AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 * L_20 = V_2;
NullCheck(L_20);
RuntimeObject* L_21 = L_20->get_FilteredMembers_1();
return L_21;
}
IL_004f:
{
RuntimeObject* L_22 = V_0;
if (!L_22)
{
goto IL_005a;
}
}
{
RuntimeObject* L_23 = V_0;
NullCheck(L_23);
bool L_24 = InterfaceFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Collections.IList::get_IsReadOnly() */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_23);
if (!L_24)
{
goto IL_0061;
}
}
IL_005a:
{
RuntimeObject* L_25 = ___members1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_26 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1(L_26, L_25, /*hidden argument*/NULL);
V_0 = L_26;
}
IL_0061:
{
RuntimeObject* L_27 = V_0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_28 = ___filter2;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_29 = TypeDescriptor_FilterMembers_m6DE8E2489628CB06AFAE539F0202E73AEB645AA9(L_27, L_28, /*hidden argument*/NULL);
V_1 = L_29;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_30 = V_1;
if (!L_30)
{
goto IL_006e;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_31 = V_1;
V_0 = L_31;
}
IL_006e:
{
RuntimeObject* L_32 = ___cache4;
if (!L_32)
{
goto IL_00e2;
}
}
{
int32_t L_33 = ___pipelineType0;
if ((((int32_t)L_33) == ((int32_t)1)))
{
goto IL_007c;
}
}
{
int32_t L_34 = ___pipelineType0;
if ((((int32_t)L_34) == ((int32_t)2)))
{
goto IL_009d;
}
}
{
goto IL_00be;
}
IL_007c:
{
RuntimeObject* L_35 = V_0;
NullCheck(L_35);
int32_t L_36 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_35);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_37 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_36);
V_5 = L_37;
RuntimeObject* L_38 = V_0;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_39 = V_5;
NullCheck(L_38);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_38, (RuntimeArray *)(RuntimeArray *)L_39, 0);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_40 = V_5;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_41 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D(L_41, L_40, (bool)1, /*hidden argument*/NULL);
V_3 = L_41;
goto IL_00c0;
}
IL_009d:
{
RuntimeObject* L_42 = V_0;
NullCheck(L_42);
int32_t L_43 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_42);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_44 = (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)SZArrayNew(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var, (uint32_t)L_43);
V_6 = L_44;
RuntimeObject* L_45 = V_0;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_46 = V_6;
NullCheck(L_45);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_45, (RuntimeArray *)(RuntimeArray *)L_46, 0);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_47 = V_6;
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_48 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5(L_48, L_47, (bool)1, /*hidden argument*/NULL);
V_3 = L_48;
goto IL_00c0;
}
IL_00be:
{
V_3 = (RuntimeObject*)NULL;
}
IL_00c0:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_49 = ___filter2;
RuntimeObject* L_50 = V_3;
AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 * L_51 = (AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 *)il2cpp_codegen_object_new(AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01_il2cpp_TypeInfo_var);
AttributeFilterCacheItem__ctor_m8319ED63E0DDDB46F62ED8DBC04CCD530C477AAF(L_51, L_49, L_50, /*hidden argument*/NULL);
V_4 = L_51;
RuntimeObject* L_52 = ___cache4;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_53 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineAttributeFilterKeys_13();
int32_t L_54 = ___pipelineType0;
NullCheck(L_53);
int32_t L_55 = L_54;
Guid_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55));
Guid_t L_57 = L_56;
RuntimeObject * L_58 = Box(Guid_t_il2cpp_TypeInfo_var, &L_57);
AttributeFilterCacheItem_t8E137227F1585B34CFC9BEC30C7D155203FA0D01 * L_59 = V_4;
NullCheck(L_52);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_52, L_58, L_59);
}
IL_00e2:
{
RuntimeObject* L_60 = V_0;
return L_60;
}
}
// System.Collections.ICollection System.ComponentModel.TypeDescriptor::PipelineFilter(System.Int32,System.Collections.ICollection,System.Object,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487 (int32_t ___pipelineType0, RuntimeObject* ___members1, RuntimeObject * ___instance2, RuntimeObject* ___cache3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * V_3 = NULL;
bool V_4 = false;
RuntimeObject* V_5 = NULL;
FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 * V_6 = NULL;
RuntimeObject* V_7 = NULL;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_8 = NULL;
RuntimeObject* V_9 = NULL;
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * V_10 = NULL;
String_t* V_11 = NULL;
String_t* V_12 = NULL;
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * V_13 = NULL;
RuntimeObject * V_14 = NULL;
RuntimeObject* V_15 = NULL;
FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 * V_16 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_17 = NULL;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_18 = NULL;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* V_19 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 6);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject * L_0 = ___instance2;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var));
V_1 = (RuntimeObject*)NULL;
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_002f;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_2);
V_5 = L_3;
RuntimeObject* L_4 = V_5;
if (!L_4)
{
goto IL_002f;
}
}
{
RuntimeObject* L_5 = V_5;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (ITypeDescriptorFilterService_t7F3A790DAB15141C69DE8916436C6AAD67C7EFDA_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
RuntimeObject * L_8 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_5, L_7);
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, ITypeDescriptorFilterService_t7F3A790DAB15141C69DE8916436C6AAD67C7EFDA_il2cpp_TypeInfo_var));
}
IL_002f:
{
RuntimeObject* L_9 = ___members1;
V_2 = ((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)IsInstClass((RuntimeObject*)L_9, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var));
RuntimeObject* L_10 = V_1;
if (L_10)
{
goto IL_003b;
}
}
{
RuntimeObject* L_11 = ___members1;
return L_11;
}
IL_003b:
{
RuntimeObject* L_12 = ___cache3;
if (!L_12)
{
goto IL_007c;
}
}
{
RuntimeObject* L_13 = V_2;
if (!L_13)
{
goto IL_0049;
}
}
{
RuntimeObject* L_14 = V_2;
NullCheck(L_14);
bool L_15 = InterfaceFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Collections.IList::get_IsReadOnly() */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_14);
if (!L_15)
{
goto IL_007c;
}
}
IL_0049:
{
RuntimeObject* L_16 = ___cache3;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_17 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineFilterKeys_12();
int32_t L_18 = ___pipelineType0;
NullCheck(L_17);
int32_t L_19 = L_18;
Guid_t L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
Guid_t L_21 = L_20;
RuntimeObject * L_22 = Box(Guid_t_il2cpp_TypeInfo_var, &L_21);
NullCheck(L_16);
RuntimeObject * L_23 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_16, L_22);
V_6 = ((FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 *)IsInstSealed((RuntimeObject*)L_23, FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4_il2cpp_TypeInfo_var));
FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 * L_24 = V_6;
if (!L_24)
{
goto IL_007c;
}
}
{
FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 * L_25 = V_6;
RuntimeObject* L_26 = V_1;
NullCheck(L_25);
bool L_27 = FilterCacheItem_IsValid_m91C02B95AF49F2BD09314CF2EB67F6090052B8B4(L_25, L_26, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_007c;
}
}
{
FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 * L_28 = V_6;
NullCheck(L_28);
RuntimeObject* L_29 = L_28->get_FilteredMembers_1();
return L_29;
}
IL_007c:
{
RuntimeObject* L_30 = ___members1;
NullCheck(L_30);
int32_t L_31 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_30);
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_32 = (OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D *)il2cpp_codegen_object_new(OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D_il2cpp_TypeInfo_var);
OrderedDictionary__ctor_m278F36318DAF73A39FB15CF0ED1439C36237C175(L_32, L_31, /*hidden argument*/NULL);
V_3 = L_32;
int32_t L_33 = ___pipelineType0;
if (!L_33)
{
goto IL_0096;
}
}
{
int32_t L_34 = ___pipelineType0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)1))) > ((uint32_t)1))))
{
goto IL_00ec;
}
}
{
goto IL_01bd;
}
IL_0096:
{
RuntimeObject* L_35 = ___members1;
NullCheck(L_35);
RuntimeObject* L_36 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_35);
V_7 = L_36;
}
IL_009e:
try
{ // begin try (depth: 1)
{
goto IL_00bd;
}
IL_00a0:
{
RuntimeObject* L_37 = V_7;
NullCheck(L_37);
RuntimeObject * L_38 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_37);
V_8 = ((Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)CastclassClass((RuntimeObject*)L_38, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_il2cpp_TypeInfo_var));
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_39 = V_3;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_40 = V_8;
NullCheck(L_40);
RuntimeObject * L_41 = VirtFuncInvoker0< RuntimeObject * >::Invoke(4 /* System.Object System.Attribute::get_TypeId() */, L_40);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_42 = V_8;
NullCheck(L_39);
OrderedDictionary_set_Item_mA8C71C7FD9354ABDCB0DBFB1977459680BD748BB(L_39, L_41, L_42, /*hidden argument*/NULL);
}
IL_00bd:
{
RuntimeObject* L_43 = V_7;
NullCheck(L_43);
bool L_44 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_43);
if (L_44)
{
goto IL_00a0;
}
}
IL_00c6:
{
IL2CPP_LEAVE(0xDD, FINALLY_00c8);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00c8;
}
FINALLY_00c8:
{ // begin finally (depth: 1)
{
RuntimeObject* L_45 = V_7;
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_45, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_46 = V_9;
if (!L_46)
{
goto IL_00dc;
}
}
IL_00d5:
{
RuntimeObject* L_47 = V_9;
NullCheck(L_47);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_47);
}
IL_00dc:
{
IL2CPP_END_FINALLY(200)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(200)
{
IL2CPP_JUMP_TBL(0xDD, IL_00dd)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00dd:
{
RuntimeObject* L_48 = V_1;
RuntimeObject* L_49 = V_0;
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_50 = V_3;
NullCheck(L_48);
bool L_51 = InterfaceFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Boolean System.ComponentModel.Design.ITypeDescriptorFilterService::FilterAttributes(System.ComponentModel.IComponent,System.Collections.IDictionary) */, ITypeDescriptorFilterService_t7F3A790DAB15141C69DE8916436C6AAD67C7EFDA_il2cpp_TypeInfo_var, L_48, L_49, L_50);
V_4 = L_51;
goto IL_01c0;
}
IL_00ec:
{
RuntimeObject* L_52 = ___members1;
NullCheck(L_52);
RuntimeObject* L_53 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_52);
V_7 = L_53;
}
IL_00f4:
try
{ // begin try (depth: 1)
{
goto IL_017e;
}
IL_00f9:
{
RuntimeObject* L_54 = V_7;
NullCheck(L_54);
RuntimeObject * L_55 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_54);
V_10 = ((MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 *)CastclassClass((RuntimeObject*)L_55, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8_il2cpp_TypeInfo_var));
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_56 = V_10;
NullCheck(L_56);
String_t* L_57 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_56);
V_11 = L_57;
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_58 = V_3;
String_t* L_59 = V_11;
NullCheck(L_58);
bool L_60 = OrderedDictionary_Contains_m957B6F29E97A93AB5A0AF9272ED0AB65E4401EF1(L_58, L_59, /*hidden argument*/NULL);
if (!L_60)
{
goto IL_0174;
}
}
IL_011a:
{
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_61 = V_10;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
String_t* L_62 = TypeDescriptor_GetExtenderCollisionSuffix_m686BE0F744E8E5511310EA611B39FF891AEDC784(L_61, /*hidden argument*/NULL);
V_12 = L_62;
String_t* L_63 = V_12;
if (!L_63)
{
goto IL_0138;
}
}
IL_0127:
{
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_64 = V_3;
String_t* L_65 = V_11;
String_t* L_66 = V_12;
String_t* L_67 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_65, L_66, /*hidden argument*/NULL);
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_68 = V_10;
NullCheck(L_64);
OrderedDictionary_set_Item_mA8C71C7FD9354ABDCB0DBFB1977459680BD748BB(L_64, L_67, L_68, /*hidden argument*/NULL);
}
IL_0138:
{
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_69 = V_3;
String_t* L_70 = V_11;
NullCheck(L_69);
RuntimeObject * L_71 = OrderedDictionary_get_Item_m4BA1DD5702BF43A016E1785285DE53D4E9902E7B(L_69, L_70, /*hidden argument*/NULL);
V_13 = ((MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 *)CastclassClass((RuntimeObject*)L_71, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8_il2cpp_TypeInfo_var));
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_72 = V_13;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
String_t* L_73 = TypeDescriptor_GetExtenderCollisionSuffix_m686BE0F744E8E5511310EA611B39FF891AEDC784(L_72, /*hidden argument*/NULL);
V_12 = L_73;
String_t* L_74 = V_12;
if (!L_74)
{
goto IL_017e;
}
}
IL_0154:
{
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_75 = V_3;
String_t* L_76 = V_11;
NullCheck(L_75);
OrderedDictionary_Remove_m32466C87EC2ED256642300B29B89101DD5227AA0(L_75, L_76, /*hidden argument*/NULL);
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_77 = V_3;
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_78 = V_13;
NullCheck(L_78);
String_t* L_79 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_78);
String_t* L_80 = V_12;
String_t* L_81 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_79, L_80, /*hidden argument*/NULL);
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_82 = V_13;
NullCheck(L_77);
OrderedDictionary_set_Item_mA8C71C7FD9354ABDCB0DBFB1977459680BD748BB(L_77, L_81, L_82, /*hidden argument*/NULL);
goto IL_017e;
}
IL_0174:
{
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_83 = V_3;
String_t* L_84 = V_11;
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_85 = V_10;
NullCheck(L_83);
OrderedDictionary_set_Item_mA8C71C7FD9354ABDCB0DBFB1977459680BD748BB(L_83, L_84, L_85, /*hidden argument*/NULL);
}
IL_017e:
{
RuntimeObject* L_86 = V_7;
NullCheck(L_86);
bool L_87 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_86);
if (L_87)
{
goto IL_00f9;
}
}
IL_018a:
{
IL2CPP_LEAVE(0x1A1, FINALLY_018c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_018c;
}
FINALLY_018c:
{ // begin finally (depth: 1)
{
RuntimeObject* L_88 = V_7;
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_88, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_89 = V_9;
if (!L_89)
{
goto IL_01a0;
}
}
IL_0199:
{
RuntimeObject* L_90 = V_9;
NullCheck(L_90);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_90);
}
IL_01a0:
{
IL2CPP_END_FINALLY(396)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(396)
{
IL2CPP_JUMP_TBL(0x1A1, IL_01a1)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01a1:
{
int32_t L_91 = ___pipelineType0;
if ((!(((uint32_t)L_91) == ((uint32_t)1))))
{
goto IL_01b1;
}
}
{
RuntimeObject* L_92 = V_1;
RuntimeObject* L_93 = V_0;
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_94 = V_3;
NullCheck(L_92);
bool L_95 = InterfaceFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(2 /* System.Boolean System.ComponentModel.Design.ITypeDescriptorFilterService::FilterProperties(System.ComponentModel.IComponent,System.Collections.IDictionary) */, ITypeDescriptorFilterService_t7F3A790DAB15141C69DE8916436C6AAD67C7EFDA_il2cpp_TypeInfo_var, L_92, L_93, L_94);
V_4 = L_95;
goto IL_01c0;
}
IL_01b1:
{
RuntimeObject* L_96 = V_1;
RuntimeObject* L_97 = V_0;
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_98 = V_3;
NullCheck(L_96);
bool L_99 = InterfaceFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(1 /* System.Boolean System.ComponentModel.Design.ITypeDescriptorFilterService::FilterEvents(System.ComponentModel.IComponent,System.Collections.IDictionary) */, ITypeDescriptorFilterService_t7F3A790DAB15141C69DE8916436C6AAD67C7EFDA_il2cpp_TypeInfo_var, L_96, L_97, L_98);
V_4 = L_99;
goto IL_01c0;
}
IL_01bd:
{
V_4 = (bool)0;
}
IL_01c0:
{
RuntimeObject* L_100 = V_2;
if (!L_100)
{
goto IL_01cb;
}
}
{
RuntimeObject* L_101 = V_2;
NullCheck(L_101);
bool L_102 = InterfaceFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Collections.IList::get_IsReadOnly() */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_101);
if (!L_102)
{
goto IL_01d9;
}
}
IL_01cb:
{
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_103 = V_3;
NullCheck(L_103);
RuntimeObject* L_104 = OrderedDictionary_get_Values_mF389293625F26A739573D543FB5E21FEC6BDAE13(L_103, /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_105 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1(L_105, L_104, /*hidden argument*/NULL);
V_2 = L_105;
goto IL_0220;
}
IL_01d9:
{
RuntimeObject* L_106 = V_2;
NullCheck(L_106);
InterfaceActionInvoker0::Invoke(4 /* System.Void System.Collections.IList::Clear() */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_106);
OrderedDictionary_t2F2E6D6ADEA347CFB4BC084B5300A83300FEF18D * L_107 = V_3;
NullCheck(L_107);
RuntimeObject* L_108 = OrderedDictionary_get_Values_mF389293625F26A739573D543FB5E21FEC6BDAE13(L_107, /*hidden argument*/NULL);
NullCheck(L_108);
RuntimeObject* L_109 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_108);
V_7 = L_109;
}
IL_01ec:
try
{ // begin try (depth: 1)
{
goto IL_0200;
}
IL_01ee:
{
RuntimeObject* L_110 = V_7;
NullCheck(L_110);
RuntimeObject * L_111 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_110);
V_14 = L_111;
RuntimeObject* L_112 = V_2;
RuntimeObject * L_113 = V_14;
NullCheck(L_112);
InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_112, L_113);
}
IL_0200:
{
RuntimeObject* L_114 = V_7;
NullCheck(L_114);
bool L_115 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_114);
if (L_115)
{
goto IL_01ee;
}
}
IL_0209:
{
IL2CPP_LEAVE(0x220, FINALLY_020b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_020b;
}
FINALLY_020b:
{ // begin finally (depth: 1)
{
RuntimeObject* L_116 = V_7;
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_116, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_117 = V_9;
if (!L_117)
{
goto IL_021f;
}
}
IL_0218:
{
RuntimeObject* L_118 = V_9;
NullCheck(L_118);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_118);
}
IL_021f:
{
IL2CPP_END_FINALLY(523)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(523)
{
IL2CPP_JUMP_TBL(0x220, IL_0220)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0220:
{
bool L_119 = V_4;
if (!L_119)
{
goto IL_0368;
}
}
{
RuntimeObject* L_120 = ___cache3;
if (!L_120)
{
goto IL_0368;
}
}
{
int32_t L_121 = ___pipelineType0;
switch (L_121)
{
case 0:
{
goto IL_0244;
}
case 1:
{
goto IL_0293;
}
case 2:
{
goto IL_02e0;
}
}
}
{
goto IL_032d;
}
IL_0244:
{
RuntimeObject* L_122 = V_2;
NullCheck(L_122);
int32_t L_123 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_122);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_124 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_123);
V_17 = L_124;
}
IL_0251:
try
{ // begin try (depth: 1)
RuntimeObject* L_125 = V_2;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_126 = V_17;
NullCheck(L_125);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_125, (RuntimeArray *)(RuntimeArray *)L_126, 0);
goto IL_0285;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_025c;
throw e;
}
CATCH_025c:
{ // begin catch(System.InvalidCastException)
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_127 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_128 = L_127;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_129 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_130 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_129, /*hidden argument*/NULL);
NullCheck(L_130);
String_t* L_131 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_130);
NullCheck(L_128);
ArrayElementTypeCheck (L_128, L_131);
(L_128)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_131);
String_t* L_132 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral3B6A4FA2E23B76A292EA032537ED56D3084067A8, L_128, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_133 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_133, L_132, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_133, TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0285:
{
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_134 = V_17;
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_135 = (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)il2cpp_codegen_object_new(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var);
AttributeCollection__ctor_m1EBB330147608510FB1B60549BA95812EA2A1190(L_135, L_134, /*hidden argument*/NULL);
V_15 = L_135;
goto IL_0330;
}
IL_0293:
{
RuntimeObject* L_136 = V_2;
NullCheck(L_136);
int32_t L_137 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_136);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_138 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_137);
V_18 = L_138;
}
IL_02a0:
try
{ // begin try (depth: 1)
RuntimeObject* L_139 = V_2;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_140 = V_18;
NullCheck(L_139);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_139, (RuntimeArray *)(RuntimeArray *)L_140, 0);
goto IL_02d4;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_02ab;
throw e;
}
CATCH_02ab:
{ // begin catch(System.InvalidCastException)
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_141 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_142 = L_141;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_143 = { reinterpret_cast<intptr_t> (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_144 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_143, /*hidden argument*/NULL);
NullCheck(L_144);
String_t* L_145 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_144);
NullCheck(L_142);
ArrayElementTypeCheck (L_142, L_145);
(L_142)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_145);
String_t* L_146 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral3B6A4FA2E23B76A292EA032537ED56D3084067A8, L_142, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_147 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_147, L_146, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487_RuntimeMethod_var);
} // end catch (depth: 1)
IL_02d4:
{
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_148 = V_18;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_149 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D(L_149, L_148, (bool)1, /*hidden argument*/NULL);
V_15 = L_149;
goto IL_0330;
}
IL_02e0:
{
RuntimeObject* L_150 = V_2;
NullCheck(L_150);
int32_t L_151 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_150);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_152 = (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)SZArrayNew(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var, (uint32_t)L_151);
V_19 = L_152;
}
IL_02ed:
try
{ // begin try (depth: 1)
RuntimeObject* L_153 = V_2;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_154 = V_19;
NullCheck(L_153);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_153, (RuntimeArray *)(RuntimeArray *)L_154, 0);
goto IL_0321;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_02f8;
throw e;
}
CATCH_02f8:
{ // begin catch(System.InvalidCastException)
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_155 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_156 = L_155;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_157 = { reinterpret_cast<intptr_t> (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_158 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_157, /*hidden argument*/NULL);
NullCheck(L_158);
String_t* L_159 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_158);
NullCheck(L_156);
ArrayElementTypeCheck (L_156, L_159);
(L_156)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_159);
String_t* L_160 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral3B6A4FA2E23B76A292EA032537ED56D3084067A8, L_156, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_161 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_161, L_160, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_161, TypeDescriptor_PipelineFilter_m7522739B5B21B076A5722C659E9B17A404196487_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0321:
{
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_162 = V_19;
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_163 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5(L_163, L_162, (bool)1, /*hidden argument*/NULL);
V_15 = L_163;
goto IL_0330;
}
IL_032d:
{
V_15 = (RuntimeObject*)NULL;
}
IL_0330:
{
RuntimeObject* L_164 = V_1;
RuntimeObject* L_165 = V_15;
FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 * L_166 = (FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 *)il2cpp_codegen_object_new(FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4_il2cpp_TypeInfo_var);
FilterCacheItem__ctor_m9398DF7D02FBE4926AFB8D768F6F0936E0929181(L_166, L_164, L_165, /*hidden argument*/NULL);
V_16 = L_166;
RuntimeObject* L_167 = ___cache3;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_168 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineFilterKeys_12();
int32_t L_169 = ___pipelineType0;
NullCheck(L_168);
int32_t L_170 = L_169;
Guid_t L_171 = (L_168)->GetAt(static_cast<il2cpp_array_size_t>(L_170));
Guid_t L_172 = L_171;
RuntimeObject * L_173 = Box(Guid_t_il2cpp_TypeInfo_var, &L_172);
FilterCacheItem_tDA029760025F0503AD352DE639152D69CA138DA4 * L_174 = V_16;
NullCheck(L_167);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_167, L_173, L_174);
RuntimeObject* L_175 = ___cache3;
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_176 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineAttributeFilterKeys_13();
int32_t L_177 = ___pipelineType0;
NullCheck(L_176);
int32_t L_178 = L_177;
Guid_t L_179 = (L_176)->GetAt(static_cast<il2cpp_array_size_t>(L_178));
Guid_t L_180 = L_179;
RuntimeObject * L_181 = Box(Guid_t_il2cpp_TypeInfo_var, &L_180);
NullCheck(L_175);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(10 /* System.Void System.Collections.IDictionary::Remove(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_175, L_181);
}
IL_0368:
{
RuntimeObject* L_182 = V_2;
return L_182;
}
}
// System.Collections.ICollection System.ComponentModel.TypeDescriptor::PipelineInitialize(System.Int32,System.Collections.ICollection,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_PipelineInitialize_mE238329E4034835777FC35289A14EA9A1397CF66 (int32_t ___pipelineType0, RuntimeObject* ___members1, RuntimeObject* ___cache2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_PipelineInitialize_mE238329E4034835777FC35289A14EA9A1397CF66_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
{
RuntimeObject* L_0 = ___cache2;
if (!L_0)
{
goto IL_00c3;
}
}
{
V_0 = (bool)1;
RuntimeObject* L_1 = ___cache2;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_2 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineInitializeKeys_10();
int32_t L_3 = ___pipelineType0;
NullCheck(L_2);
int32_t L_4 = L_3;
Guid_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
Guid_t L_6 = L_5;
RuntimeObject * L_7 = Box(Guid_t_il2cpp_TypeInfo_var, &L_6);
NullCheck(L_1);
RuntimeObject * L_8 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_1, L_7);
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var));
RuntimeObject* L_9 = V_1;
if (!L_9)
{
goto IL_0067;
}
}
{
RuntimeObject* L_10 = V_1;
NullCheck(L_10);
int32_t L_11 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_10);
RuntimeObject* L_12 = ___members1;
NullCheck(L_12);
int32_t L_13 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_12);
if ((!(((uint32_t)L_11) == ((uint32_t)L_13))))
{
goto IL_0067;
}
}
{
RuntimeObject* L_14 = V_1;
NullCheck(L_14);
RuntimeObject* L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_14);
V_2 = L_15;
RuntimeObject* L_16 = ___members1;
NullCheck(L_16);
RuntimeObject* L_17 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_16);
V_3 = L_17;
goto IL_0057;
}
IL_0045:
{
RuntimeObject* L_18 = V_2;
NullCheck(L_18);
RuntimeObject * L_19 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_18);
RuntimeObject* L_20 = V_3;
NullCheck(L_20);
RuntimeObject * L_21 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_20);
if ((((RuntimeObject*)(RuntimeObject *)L_19) == ((RuntimeObject*)(RuntimeObject *)L_21)))
{
goto IL_0057;
}
}
{
V_0 = (bool)0;
goto IL_0067;
}
IL_0057:
{
RuntimeObject* L_22 = V_2;
NullCheck(L_22);
bool L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_22);
if (!L_23)
{
goto IL_0067;
}
}
{
RuntimeObject* L_24 = V_3;
NullCheck(L_24);
bool L_25 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_24);
if (L_25)
{
goto IL_0045;
}
}
IL_0067:
{
bool L_26 = V_0;
if (L_26)
{
goto IL_00c3;
}
}
{
RuntimeObject* L_27 = ___cache2;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_28 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineMergeKeys_11();
int32_t L_29 = ___pipelineType0;
NullCheck(L_28);
int32_t L_30 = L_29;
Guid_t L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
Guid_t L_32 = L_31;
RuntimeObject * L_33 = Box(Guid_t_il2cpp_TypeInfo_var, &L_32);
NullCheck(L_27);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(10 /* System.Void System.Collections.IDictionary::Remove(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_27, L_33);
RuntimeObject* L_34 = ___cache2;
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_35 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineFilterKeys_12();
int32_t L_36 = ___pipelineType0;
NullCheck(L_35);
int32_t L_37 = L_36;
Guid_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
Guid_t L_39 = L_38;
RuntimeObject * L_40 = Box(Guid_t_il2cpp_TypeInfo_var, &L_39);
NullCheck(L_34);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(10 /* System.Void System.Collections.IDictionary::Remove(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_34, L_40);
RuntimeObject* L_41 = ___cache2;
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_42 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineAttributeFilterKeys_13();
int32_t L_43 = ___pipelineType0;
NullCheck(L_42);
int32_t L_44 = L_43;
Guid_t L_45 = (L_42)->GetAt(static_cast<il2cpp_array_size_t>(L_44));
Guid_t L_46 = L_45;
RuntimeObject * L_47 = Box(Guid_t_il2cpp_TypeInfo_var, &L_46);
NullCheck(L_41);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(10 /* System.Void System.Collections.IDictionary::Remove(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_41, L_47);
RuntimeObject* L_48 = ___cache2;
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_49 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineInitializeKeys_10();
int32_t L_50 = ___pipelineType0;
NullCheck(L_49);
int32_t L_51 = L_50;
Guid_t L_52 = (L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_51));
Guid_t L_53 = L_52;
RuntimeObject * L_54 = Box(Guid_t_il2cpp_TypeInfo_var, &L_53);
RuntimeObject* L_55 = ___members1;
NullCheck(L_48);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_48, L_54, L_55);
}
IL_00c3:
{
RuntimeObject* L_56 = ___members1;
return L_56;
}
}
// System.Collections.ICollection System.ComponentModel.TypeDescriptor::PipelineMerge(System.Int32,System.Collections.ICollection,System.Collections.ICollection,System.Object,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeDescriptor_PipelineMerge_m12CD63D0457BCA451AF9635E4E754A1E27122E65 (int32_t ___pipelineType0, RuntimeObject* ___primary1, RuntimeObject* ___secondary2, RuntimeObject * ___instance3, RuntimeObject* ___cache4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_PipelineMerge_m12CD63D0457BCA451AF9635E4E754A1E27122E65_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
bool V_4 = false;
RuntimeObject* V_5 = NULL;
RuntimeObject* V_6 = NULL;
RuntimeObject * V_7 = NULL;
RuntimeObject* V_8 = NULL;
RuntimeObject * V_9 = NULL;
RuntimeObject* V_10 = NULL;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_11 = NULL;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_12 = NULL;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* V_13 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___secondary2;
if (!L_0)
{
goto IL_000b;
}
}
{
RuntimeObject* L_1 = ___secondary2;
NullCheck(L_1);
int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_1);
if (L_2)
{
goto IL_000d;
}
}
IL_000b:
{
RuntimeObject* L_3 = ___primary1;
return L_3;
}
IL_000d:
{
RuntimeObject* L_4 = ___cache4;
if (!L_4)
{
goto IL_00bb;
}
}
{
RuntimeObject* L_5 = ___cache4;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_6 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineMergeKeys_11();
int32_t L_7 = ___pipelineType0;
NullCheck(L_6);
int32_t L_8 = L_7;
Guid_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
Guid_t L_10 = L_9;
RuntimeObject * L_11 = Box(Guid_t_il2cpp_TypeInfo_var, &L_10);
NullCheck(L_5);
RuntimeObject * L_12 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_5, L_11);
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_12, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var));
RuntimeObject* L_13 = V_1;
if (!L_13)
{
goto IL_00bb;
}
}
{
RuntimeObject* L_14 = V_1;
NullCheck(L_14);
int32_t L_15 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_14);
RuntimeObject* L_16 = ___primary1;
NullCheck(L_16);
int32_t L_17 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_16);
RuntimeObject* L_18 = ___secondary2;
NullCheck(L_18);
int32_t L_19 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_18);
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_19))))))
{
goto IL_00bb;
}
}
{
RuntimeObject* L_20 = V_1;
NullCheck(L_20);
RuntimeObject* L_21 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_20);
V_2 = L_21;
RuntimeObject* L_22 = ___primary1;
NullCheck(L_22);
RuntimeObject* L_23 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_22);
V_3 = L_23;
V_4 = (bool)1;
goto IL_0072;
}
IL_005f:
{
RuntimeObject* L_24 = V_3;
NullCheck(L_24);
RuntimeObject * L_25 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_24);
RuntimeObject* L_26 = V_2;
NullCheck(L_26);
RuntimeObject * L_27 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_26);
if ((((RuntimeObject*)(RuntimeObject *)L_25) == ((RuntimeObject*)(RuntimeObject *)L_27)))
{
goto IL_0072;
}
}
{
V_4 = (bool)0;
goto IL_0082;
}
IL_0072:
{
RuntimeObject* L_28 = V_3;
NullCheck(L_28);
bool L_29 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_28);
if (!L_29)
{
goto IL_0082;
}
}
{
RuntimeObject* L_30 = V_2;
NullCheck(L_30);
bool L_31 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_30);
if (L_31)
{
goto IL_005f;
}
}
IL_0082:
{
bool L_32 = V_4;
if (!L_32)
{
goto IL_00b5;
}
}
{
RuntimeObject* L_33 = ___secondary2;
NullCheck(L_33);
RuntimeObject* L_34 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_33);
V_5 = L_34;
goto IL_00a4;
}
IL_0090:
{
RuntimeObject* L_35 = V_5;
NullCheck(L_35);
RuntimeObject * L_36 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_35);
RuntimeObject* L_37 = V_2;
NullCheck(L_37);
RuntimeObject * L_38 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_37);
if ((((RuntimeObject*)(RuntimeObject *)L_36) == ((RuntimeObject*)(RuntimeObject *)L_38)))
{
goto IL_00a4;
}
}
{
V_4 = (bool)0;
goto IL_00b5;
}
IL_00a4:
{
RuntimeObject* L_39 = V_5;
NullCheck(L_39);
bool L_40 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_39);
if (!L_40)
{
goto IL_00b5;
}
}
{
RuntimeObject* L_41 = V_2;
NullCheck(L_41);
bool L_42 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_41);
if (L_42)
{
goto IL_0090;
}
}
IL_00b5:
{
bool L_43 = V_4;
if (!L_43)
{
goto IL_00bb;
}
}
{
RuntimeObject* L_44 = V_1;
return L_44;
}
IL_00bb:
{
RuntimeObject* L_45 = ___primary1;
NullCheck(L_45);
int32_t L_46 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_45);
RuntimeObject* L_47 = ___secondary2;
NullCheck(L_47);
int32_t L_48 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_47);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_49 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C(L_49, ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)L_48)), /*hidden argument*/NULL);
V_0 = L_49;
RuntimeObject* L_50 = ___primary1;
NullCheck(L_50);
RuntimeObject* L_51 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_50);
V_6 = L_51;
}
IL_00d6:
try
{ // begin try (depth: 1)
{
goto IL_00ea;
}
IL_00d8:
{
RuntimeObject* L_52 = V_6;
NullCheck(L_52);
RuntimeObject * L_53 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_52);
V_7 = L_53;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_54 = V_0;
RuntimeObject * L_55 = V_7;
NullCheck(L_54);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_54, L_55);
}
IL_00ea:
{
RuntimeObject* L_56 = V_6;
NullCheck(L_56);
bool L_57 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_56);
if (L_57)
{
goto IL_00d8;
}
}
IL_00f3:
{
IL2CPP_LEAVE(0x10A, FINALLY_00f5);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00f5;
}
FINALLY_00f5:
{ // begin finally (depth: 1)
{
RuntimeObject* L_58 = V_6;
V_8 = ((RuntimeObject*)IsInst((RuntimeObject*)L_58, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_59 = V_8;
if (!L_59)
{
goto IL_0109;
}
}
IL_0102:
{
RuntimeObject* L_60 = V_8;
NullCheck(L_60);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_60);
}
IL_0109:
{
IL2CPP_END_FINALLY(245)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(245)
{
IL2CPP_JUMP_TBL(0x10A, IL_010a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_010a:
{
RuntimeObject* L_61 = ___secondary2;
NullCheck(L_61);
RuntimeObject* L_62 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_61);
V_6 = L_62;
}
IL_0112:
try
{ // begin try (depth: 1)
{
goto IL_0126;
}
IL_0114:
{
RuntimeObject* L_63 = V_6;
NullCheck(L_63);
RuntimeObject * L_64 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_63);
V_9 = L_64;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_65 = V_0;
RuntimeObject * L_66 = V_9;
NullCheck(L_65);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_65, L_66);
}
IL_0126:
{
RuntimeObject* L_67 = V_6;
NullCheck(L_67);
bool L_68 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_67);
if (L_68)
{
goto IL_0114;
}
}
IL_012f:
{
IL2CPP_LEAVE(0x146, FINALLY_0131);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0131;
}
FINALLY_0131:
{ // begin finally (depth: 1)
{
RuntimeObject* L_69 = V_6;
V_8 = ((RuntimeObject*)IsInst((RuntimeObject*)L_69, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_70 = V_8;
if (!L_70)
{
goto IL_0145;
}
}
IL_013e:
{
RuntimeObject* L_71 = V_8;
NullCheck(L_71);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_71);
}
IL_0145:
{
IL2CPP_END_FINALLY(305)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(305)
{
IL2CPP_JUMP_TBL(0x146, IL_0146)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0146:
{
RuntimeObject* L_72 = ___cache4;
if (!L_72)
{
goto IL_0210;
}
}
{
int32_t L_73 = ___pipelineType0;
switch (L_73)
{
case 0:
{
goto IL_0161;
}
case 1:
{
goto IL_0182;
}
case 2:
{
goto IL_01a4;
}
}
}
{
goto IL_01c6;
}
IL_0161:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_74 = V_0;
NullCheck(L_74);
int32_t L_75 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_74);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_76 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_75);
V_11 = L_76;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_77 = V_0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_78 = V_11;
NullCheck(L_77);
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_77, (RuntimeArray *)(RuntimeArray *)L_78, 0);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_79 = V_11;
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_80 = (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)il2cpp_codegen_object_new(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var);
AttributeCollection__ctor_m1EBB330147608510FB1B60549BA95812EA2A1190(L_80, L_79, /*hidden argument*/NULL);
V_10 = L_80;
goto IL_01c9;
}
IL_0182:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_81 = V_0;
NullCheck(L_81);
int32_t L_82 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_81);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_83 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_82);
V_12 = L_83;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_84 = V_0;
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_85 = V_12;
NullCheck(L_84);
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_84, (RuntimeArray *)(RuntimeArray *)L_85, 0);
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_86 = V_12;
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_87 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D(L_87, L_86, (bool)1, /*hidden argument*/NULL);
V_10 = L_87;
goto IL_01c9;
}
IL_01a4:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_88 = V_0;
NullCheck(L_88);
int32_t L_89 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_88);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_90 = (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)SZArrayNew(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var, (uint32_t)L_89);
V_13 = L_90;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_91 = V_0;
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_92 = V_13;
NullCheck(L_91);
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_91, (RuntimeArray *)(RuntimeArray *)L_92, 0);
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_93 = V_13;
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_94 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5(L_94, L_93, (bool)1, /*hidden argument*/NULL);
V_10 = L_94;
goto IL_01c9;
}
IL_01c6:
{
V_10 = (RuntimeObject*)NULL;
}
IL_01c9:
{
RuntimeObject* L_95 = ___cache4;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_96 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineMergeKeys_11();
int32_t L_97 = ___pipelineType0;
NullCheck(L_96);
int32_t L_98 = L_97;
Guid_t L_99 = (L_96)->GetAt(static_cast<il2cpp_array_size_t>(L_98));
Guid_t L_100 = L_99;
RuntimeObject * L_101 = Box(Guid_t_il2cpp_TypeInfo_var, &L_100);
RuntimeObject* L_102 = V_10;
NullCheck(L_95);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_95, L_101, L_102);
RuntimeObject* L_103 = ___cache4;
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_104 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineFilterKeys_12();
int32_t L_105 = ___pipelineType0;
NullCheck(L_104);
int32_t L_106 = L_105;
Guid_t L_107 = (L_104)->GetAt(static_cast<il2cpp_array_size_t>(L_106));
Guid_t L_108 = L_107;
RuntimeObject * L_109 = Box(Guid_t_il2cpp_TypeInfo_var, &L_108);
NullCheck(L_103);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(10 /* System.Void System.Collections.IDictionary::Remove(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_103, L_109);
RuntimeObject* L_110 = ___cache4;
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_111 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineAttributeFilterKeys_13();
int32_t L_112 = ___pipelineType0;
NullCheck(L_111);
int32_t L_113 = L_112;
Guid_t L_114 = (L_111)->GetAt(static_cast<il2cpp_array_size_t>(L_113));
Guid_t L_115 = L_114;
RuntimeObject * L_116 = Box(Guid_t_il2cpp_TypeInfo_var, &L_115);
NullCheck(L_110);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(10 /* System.Void System.Collections.IDictionary::Remove(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_110, L_116);
}
IL_0210:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_117 = V_0;
return L_117;
}
}
// System.Void System.ComponentModel.TypeDescriptor::RaiseRefresh(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RaiseRefresh_m59D4457847547E4C32159C2F24E1DDDA1D34F60C (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_RaiseRefresh_m59D4457847547E4C32159C2F24E1DDDA1D34F60C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_0 = VolatileRead((RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 **)(((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get_address_of_Refreshed_15()));
V_0 = L_0;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_2 = V_0;
RuntimeObject * L_3 = ___component0;
RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * L_4 = (RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 *)il2cpp_codegen_object_new(RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650_il2cpp_TypeInfo_var);
RefreshEventArgs__ctor_mE6F6B0E8B783784BF676F37DCB9C196E5064928D(L_4, L_3, /*hidden argument*/NULL);
NullCheck(L_2);
RefreshEventHandler_Invoke_mF3ADA58FAFE8E56B53F99B9717A4D3E252575FF5(L_2, L_4, /*hidden argument*/NULL);
}
IL_001a:
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::RaiseRefresh(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RaiseRefresh_m75708E2026685B087D03E5383F08E65F1608332C (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_RaiseRefresh_m75708E2026685B087D03E5383F08E65F1608332C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_0 = VolatileRead((RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 **)(((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get_address_of_Refreshed_15()));
V_0 = L_0;
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_2 = V_0;
Type_t * L_3 = ___type0;
RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 * L_4 = (RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650 *)il2cpp_codegen_object_new(RefreshEventArgs_tAC29F8AEEF1CB6B4ADD8BC4DD0A66366A4700650_il2cpp_TypeInfo_var);
RefreshEventArgs__ctor_mEC162508026E43A0B4E193163E6ED7D6B682D342(L_4, L_3, /*hidden argument*/NULL);
NullCheck(L_2);
RefreshEventHandler_Invoke_mF3ADA58FAFE8E56B53F99B9717A4D3E252575FF5(L_2, L_4, /*hidden argument*/NULL);
}
IL_001a:
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_Refresh_m9229980150993B812922316474D9806CB2B23B66 (RuntimeObject * ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_Refresh_m9229980150993B812922316474D9806CB2B23B66_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_Refresh_mEC7669AD5516911D4C54E02A9F073CF89E59DC6E(L_0, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_Refresh_mEC7669AD5516911D4C54E02A9F073CF89E59DC6E (RuntimeObject * ___component0, bool ___refreshReflectionProvider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_Refresh_mEC7669AD5516911D4C54E02A9F073CF89E59DC6E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
RuntimeObject* V_1 = NULL;
Type_t * V_2 = NULL;
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * V_3 = NULL;
bool V_4 = false;
RuntimeObject* V_5 = NULL;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_6;
memset((&V_6), 0, sizeof(V_6));
Type_t * V_7 = NULL;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_8 = NULL;
ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * V_9 = NULL;
RuntimeObject* V_10 = NULL;
int32_t V_11 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject * L_0 = ___component0;
if (L_0)
{
goto IL_0004;
}
}
{
return;
}
IL_0004:
{
V_0 = (bool)0;
bool L_1 = ___refreshReflectionProvider1;
if (!L_1)
{
goto IL_00f9;
}
}
{
RuntimeObject * L_2 = ___component0;
NullCheck(L_2);
Type_t * L_3 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_2, /*hidden argument*/NULL);
V_2 = L_3;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_4 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
V_3 = L_4;
V_4 = (bool)0;
}
IL_001c:
try
{ // begin try (depth: 1)
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_5 = V_3;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_5, (bool*)(&V_4), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_6 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
NullCheck(L_6);
RuntimeObject* L_7 = VirtFuncInvoker0< RuntimeObject* >::Invoke(31 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_6);
V_5 = L_7;
}
IL_0030:
try
{ // begin try (depth: 2)
{
goto IL_00cb;
}
IL_0035:
{
RuntimeObject* L_8 = V_5;
NullCheck(L_8);
RuntimeObject * L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_8);
V_6 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_9, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
RuntimeObject * L_10 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_6), /*hidden argument*/NULL);
V_7 = ((Type_t *)IsInstClass((RuntimeObject*)L_10, Type_t_il2cpp_TypeInfo_var));
Type_t * L_11 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_12 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_11, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0065;
}
}
IL_005b:
{
Type_t * L_13 = V_2;
Type_t * L_14 = V_7;
NullCheck(L_13);
bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_13, L_14);
if (L_15)
{
goto IL_0078;
}
}
IL_0065:
{
Type_t * L_16 = V_7;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_17, /*hidden argument*/NULL);
bool L_19 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_16, L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_00cb;
}
}
IL_0078:
{
RuntimeObject * L_20 = DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_6), /*hidden argument*/NULL);
V_8 = ((TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)CastclassSealed((RuntimeObject*)L_20, TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var));
goto IL_0093;
}
IL_0088:
{
V_0 = (bool)1;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_21 = V_8;
NullCheck(L_21);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_22 = L_21->get_Next_2();
V_8 = L_22;
}
IL_0093:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_23 = V_8;
if (!L_23)
{
goto IL_00a5;
}
}
IL_0097:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_24 = V_8;
NullCheck(L_24);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_25 = L_24->get_Provider_3();
if (!((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 *)IsInstSealed((RuntimeObject*)L_25, ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var)))
{
goto IL_0088;
}
}
IL_00a5:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_26 = V_8;
if (!L_26)
{
goto IL_00cb;
}
}
IL_00a9:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_27 = V_8;
NullCheck(L_27);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_28 = L_27->get_Provider_3();
V_9 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 *)CastclassSealed((RuntimeObject*)L_28, ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var));
ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * L_29 = V_9;
Type_t * L_30 = V_2;
NullCheck(L_29);
bool L_31 = ReflectTypeDescriptionProvider_IsPopulated_mDA141741A260991A87C6B4C7EE84FAB26220A534(L_29, L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00cb;
}
}
IL_00c1:
{
V_0 = (bool)1;
ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * L_32 = V_9;
Type_t * L_33 = V_2;
NullCheck(L_32);
ReflectTypeDescriptionProvider_Refresh_m6C8F1779B16BB22FAAABA8E16E5DB5AB1025DF89(L_32, L_33, /*hidden argument*/NULL);
}
IL_00cb:
{
RuntimeObject* L_34 = V_5;
NullCheck(L_34);
bool L_35 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_34);
if (L_35)
{
goto IL_0035;
}
}
IL_00d7:
{
IL2CPP_LEAVE(0xF9, FINALLY_00d9);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00d9;
}
FINALLY_00d9:
{ // begin finally (depth: 2)
{
RuntimeObject* L_36 = V_5;
V_10 = ((RuntimeObject*)IsInst((RuntimeObject*)L_36, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_37 = V_10;
if (!L_37)
{
goto IL_00ed;
}
}
IL_00e6:
{
RuntimeObject* L_38 = V_10;
NullCheck(L_38);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_38);
}
IL_00ed:
{
IL2CPP_END_FINALLY(217)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(217)
{
IL2CPP_END_CLEANUP(0xF9, FINALLY_00ee);
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00ee;
}
FINALLY_00ee:
{ // begin finally (depth: 1)
{
bool L_39 = V_4;
if (!L_39)
{
goto IL_00f8;
}
}
IL_00f2:
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_40 = V_3;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_40, /*hidden argument*/NULL);
}
IL_00f8:
{
IL2CPP_END_FINALLY(238)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(238)
{
IL2CPP_JUMP_TBL(0xF9, IL_00f9)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00f9:
{
RuntimeObject * L_41 = ___component0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RuntimeObject* L_42 = TypeDescriptor_GetCache_mC7540D2FBAB562E689ED1BC2399D3F3C31D97145(L_41, /*hidden argument*/NULL);
V_1 = L_42;
bool L_43 = V_0;
if (L_43)
{
goto IL_0106;
}
}
{
RuntimeObject* L_44 = V_1;
if (!L_44)
{
goto IL_0175;
}
}
IL_0106:
{
RuntimeObject* L_45 = V_1;
if (!L_45)
{
goto IL_0164;
}
}
{
V_11 = 0;
goto IL_0159;
}
IL_010e:
{
RuntimeObject* L_46 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_47 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineFilterKeys_12();
int32_t L_48 = V_11;
NullCheck(L_47);
int32_t L_49 = L_48;
Guid_t L_50 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
Guid_t L_51 = L_50;
RuntimeObject * L_52 = Box(Guid_t_il2cpp_TypeInfo_var, &L_51);
NullCheck(L_46);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(10 /* System.Void System.Collections.IDictionary::Remove(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_46, L_52);
RuntimeObject* L_53 = V_1;
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_54 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineMergeKeys_11();
int32_t L_55 = V_11;
NullCheck(L_54);
int32_t L_56 = L_55;
Guid_t L_57 = (L_54)->GetAt(static_cast<il2cpp_array_size_t>(L_56));
Guid_t L_58 = L_57;
RuntimeObject * L_59 = Box(Guid_t_il2cpp_TypeInfo_var, &L_58);
NullCheck(L_53);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(10 /* System.Void System.Collections.IDictionary::Remove(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_53, L_59);
RuntimeObject* L_60 = V_1;
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_61 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineAttributeFilterKeys_13();
int32_t L_62 = V_11;
NullCheck(L_61);
int32_t L_63 = L_62;
Guid_t L_64 = (L_61)->GetAt(static_cast<il2cpp_array_size_t>(L_63));
Guid_t L_65 = L_64;
RuntimeObject * L_66 = Box(Guid_t_il2cpp_TypeInfo_var, &L_65);
NullCheck(L_60);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(10 /* System.Void System.Collections.IDictionary::Remove(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_60, L_66);
int32_t L_67 = V_11;
V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_67, (int32_t)1));
}
IL_0159:
{
int32_t L_68 = V_11;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_69 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__pipelineFilterKeys_12();
NullCheck(L_69);
if ((((int32_t)L_68) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_69)->max_length)))))))
{
goto IL_010e;
}
}
IL_0164:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F((int32_t*)(((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get_address_of__metadataVersion_4()), /*hidden argument*/NULL);
RuntimeObject * L_70 = ___component0;
TypeDescriptor_RaiseRefresh_m59D4457847547E4C32159C2F24E1DDDA1D34F60C(L_70, /*hidden argument*/NULL);
}
IL_0175:
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_Refresh_m3EE0C2B17D9683C6C719C590D0D9744D16F58027 (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_Refresh_m3EE0C2B17D9683C6C719C590D0D9744D16F58027_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * V_1 = NULL;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_4;
memset((&V_4), 0, sizeof(V_4));
Type_t * V_5 = NULL;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_6 = NULL;
ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * V_7 = NULL;
RuntimeObject* V_8 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000a;
}
}
{
return;
}
IL_000a:
{
V_0 = (bool)0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_2 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
V_1 = L_2;
V_2 = (bool)0;
}
IL_0014:
try
{ // begin try (depth: 1)
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_3 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_3, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_4 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
NullCheck(L_4);
RuntimeObject* L_5 = VirtFuncInvoker0< RuntimeObject* >::Invoke(31 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_4);
V_3 = L_5;
}
IL_0027:
try
{ // begin try (depth: 2)
{
goto IL_00c1;
}
IL_002c:
{
RuntimeObject* L_6 = V_3;
NullCheck(L_6);
RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_6);
V_4 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_7, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
RuntimeObject * L_8 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_4), /*hidden argument*/NULL);
V_5 = ((Type_t *)IsInstClass((RuntimeObject*)L_8, Type_t_il2cpp_TypeInfo_var));
Type_t * L_9 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_10 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_9, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_005b;
}
}
IL_0051:
{
Type_t * L_11 = ___type0;
Type_t * L_12 = V_5;
NullCheck(L_11);
bool L_13 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_11, L_12);
if (L_13)
{
goto IL_006e;
}
}
IL_005b:
{
Type_t * L_14 = V_5;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
bool L_17 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_14, L_16, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_00c1;
}
}
IL_006e:
{
RuntimeObject * L_18 = DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_4), /*hidden argument*/NULL);
V_6 = ((TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)CastclassSealed((RuntimeObject*)L_18, TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var));
goto IL_0089;
}
IL_007e:
{
V_0 = (bool)1;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_19 = V_6;
NullCheck(L_19);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_20 = L_19->get_Next_2();
V_6 = L_20;
}
IL_0089:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_21 = V_6;
if (!L_21)
{
goto IL_009b;
}
}
IL_008d:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_22 = V_6;
NullCheck(L_22);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_23 = L_22->get_Provider_3();
if (!((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 *)IsInstSealed((RuntimeObject*)L_23, ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var)))
{
goto IL_007e;
}
}
IL_009b:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_24 = V_6;
if (!L_24)
{
goto IL_00c1;
}
}
IL_009f:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_25 = V_6;
NullCheck(L_25);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_26 = L_25->get_Provider_3();
V_7 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 *)CastclassSealed((RuntimeObject*)L_26, ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var));
ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * L_27 = V_7;
Type_t * L_28 = ___type0;
NullCheck(L_27);
bool L_29 = ReflectTypeDescriptionProvider_IsPopulated_mDA141741A260991A87C6B4C7EE84FAB26220A534(L_27, L_28, /*hidden argument*/NULL);
if (!L_29)
{
goto IL_00c1;
}
}
IL_00b7:
{
V_0 = (bool)1;
ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * L_30 = V_7;
Type_t * L_31 = ___type0;
NullCheck(L_30);
ReflectTypeDescriptionProvider_Refresh_m6C8F1779B16BB22FAAABA8E16E5DB5AB1025DF89(L_30, L_31, /*hidden argument*/NULL);
}
IL_00c1:
{
RuntimeObject* L_32 = V_3;
NullCheck(L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_32);
if (L_33)
{
goto IL_002c;
}
}
IL_00cc:
{
IL2CPP_LEAVE(0xEC, FINALLY_00ce);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00ce;
}
FINALLY_00ce:
{ // begin finally (depth: 2)
{
RuntimeObject* L_34 = V_3;
V_8 = ((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_8;
if (!L_35)
{
goto IL_00e1;
}
}
IL_00da:
{
RuntimeObject* L_36 = V_8;
NullCheck(L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_36);
}
IL_00e1:
{
IL2CPP_END_FINALLY(206)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(206)
{
IL2CPP_END_CLEANUP(0xEC, FINALLY_00e2);
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00e2;
}
FINALLY_00e2:
{ // begin finally (depth: 1)
{
bool L_37 = V_2;
if (!L_37)
{
goto IL_00eb;
}
}
IL_00e5:
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_38 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_38, /*hidden argument*/NULL);
}
IL_00eb:
{
IL2CPP_END_FINALLY(226)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(226)
{
IL2CPP_JUMP_TBL(0xEC, IL_00ec)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00ec:
{
bool L_39 = V_0;
if (!L_39)
{
goto IL_0100;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F((int32_t*)(((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get_address_of__metadataVersion_4()), /*hidden argument*/NULL);
Type_t * L_40 = ___type0;
TypeDescriptor_RaiseRefresh_m75708E2026685B087D03E5383F08E65F1608332C(L_40, /*hidden argument*/NULL);
}
IL_0100:
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Reflection.Module)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_Refresh_mF1572C257E75B5BBBA5468FE0FB982ACB33F8E90 (Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * ___module0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_Refresh_mF1572C257E75B5BBBA5468FE0FB982ACB33F8E90_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * V_1 = NULL;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_4;
memset((&V_4), 0, sizeof(V_4));
Type_t * V_5 = NULL;
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * V_6 = NULL;
ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * V_7 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_8 = NULL;
int32_t V_9 = 0;
Type_t * V_10 = NULL;
RuntimeObject* V_11 = NULL;
RuntimeObject* V_12 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * L_0 = ___module0;
IL2CPP_RUNTIME_CLASS_INIT(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_il2cpp_TypeInfo_var);
bool L_1 = Module_op_Equality_m3AEF6BCA2C1DA42DEF271D9C168AD6F5DFFA497A(L_0, (Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000a;
}
}
{
return;
}
IL_000a:
{
V_0 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)NULL;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_2 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
V_1 = L_2;
V_2 = (bool)0;
}
IL_0014:
try
{ // begin try (depth: 1)
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_3 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_3, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_4 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__providerTable_0();
NullCheck(L_4);
RuntimeObject* L_5 = VirtFuncInvoker0< RuntimeObject* >::Invoke(31 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_4);
V_3 = L_5;
}
IL_0027:
try
{ // begin try (depth: 2)
{
goto IL_0106;
}
IL_002c:
{
RuntimeObject* L_6 = V_3;
NullCheck(L_6);
RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_6);
V_4 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_7, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
RuntimeObject * L_8 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_4), /*hidden argument*/NULL);
V_5 = ((Type_t *)IsInstClass((RuntimeObject*)L_8, Type_t_il2cpp_TypeInfo_var));
Type_t * L_9 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_10 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_9, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0060;
}
}
IL_0051:
{
Type_t * L_11 = V_5;
NullCheck(L_11);
Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * L_12 = VirtFuncInvoker0< Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * >::Invoke(15 /* System.Reflection.Module System.Reflection.MemberInfo::get_Module() */, L_11);
Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * L_13 = ___module0;
NullCheck(L_12);
bool L_14 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_12, L_13);
if (L_14)
{
goto IL_0076;
}
}
IL_0060:
{
Type_t * L_15 = V_5;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_16, /*hidden argument*/NULL);
bool L_18 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_15, L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0106;
}
}
IL_0076:
{
RuntimeObject * L_19 = DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_4), /*hidden argument*/NULL);
V_6 = ((TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 *)CastclassSealed((RuntimeObject*)L_19, TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1_il2cpp_TypeInfo_var));
goto IL_00a2;
}
IL_0086:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_20 = V_0;
if (L_20)
{
goto IL_008f;
}
}
IL_0089:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_21 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_21, /*hidden argument*/NULL);
V_0 = L_21;
}
IL_008f:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_22 = V_0;
Type_t * L_23 = V_5;
Type_t * L_24 = V_5;
NullCheck(L_22);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_22, L_23, L_24);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_25 = V_6;
NullCheck(L_25);
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_26 = L_25->get_Next_2();
V_6 = L_26;
}
IL_00a2:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_27 = V_6;
if (!L_27)
{
goto IL_00b4;
}
}
IL_00a6:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_28 = V_6;
NullCheck(L_28);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_29 = L_28->get_Provider_3();
if (!((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 *)IsInstSealed((RuntimeObject*)L_29, ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var)))
{
goto IL_0086;
}
}
IL_00b4:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_30 = V_6;
if (!L_30)
{
goto IL_0106;
}
}
IL_00b8:
{
TypeDescriptionNode_t8C5D3A02DB612FFE1DE12251E49EC265DE6B81E1 * L_31 = V_6;
NullCheck(L_31);
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_32 = L_31->get_Provider_3();
V_7 = ((ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 *)CastclassSealed((RuntimeObject*)L_32, ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675_il2cpp_TypeInfo_var));
ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * L_33 = V_7;
Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * L_34 = ___module0;
NullCheck(L_33);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_35 = ReflectTypeDescriptionProvider_GetPopulatedTypes_mC33B39A2E560A2A7137D85F6A93ECE1F5B269D3B(L_33, L_34, /*hidden argument*/NULL);
V_8 = L_35;
V_9 = 0;
goto IL_00fe;
}
IL_00d5:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_36 = V_8;
int32_t L_37 = V_9;
NullCheck(L_36);
int32_t L_38 = L_37;
Type_t * L_39 = (L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
V_10 = L_39;
ReflectTypeDescriptionProvider_t5736798A27F452CE006C4DBBCC78EC7928B79675 * L_40 = V_7;
Type_t * L_41 = V_10;
NullCheck(L_40);
ReflectTypeDescriptionProvider_Refresh_m6C8F1779B16BB22FAAABA8E16E5DB5AB1025DF89(L_40, L_41, /*hidden argument*/NULL);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_42 = V_0;
if (L_42)
{
goto IL_00ee;
}
}
IL_00e8:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_43 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_43, /*hidden argument*/NULL);
V_0 = L_43;
}
IL_00ee:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_44 = V_0;
Type_t * L_45 = V_10;
Type_t * L_46 = V_10;
NullCheck(L_44);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_44, L_45, L_46);
int32_t L_47 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1));
}
IL_00fe:
{
int32_t L_48 = V_9;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_49 = V_8;
NullCheck(L_49);
if ((((int32_t)L_48) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length)))))))
{
goto IL_00d5;
}
}
IL_0106:
{
RuntimeObject* L_50 = V_3;
NullCheck(L_50);
bool L_51 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_50);
if (L_51)
{
goto IL_002c;
}
}
IL_0111:
{
IL2CPP_LEAVE(0x131, FINALLY_0113);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0113;
}
FINALLY_0113:
{ // begin finally (depth: 2)
{
RuntimeObject* L_52 = V_3;
V_11 = ((RuntimeObject*)IsInst((RuntimeObject*)L_52, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_53 = V_11;
if (!L_53)
{
goto IL_0126;
}
}
IL_011f:
{
RuntimeObject* L_54 = V_11;
NullCheck(L_54);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_54);
}
IL_0126:
{
IL2CPP_END_FINALLY(275)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(275)
{
IL2CPP_END_CLEANUP(0x131, FINALLY_0127);
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0127;
}
FINALLY_0127:
{ // begin finally (depth: 1)
{
bool L_55 = V_2;
if (!L_55)
{
goto IL_0130;
}
}
IL_012a:
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_56 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_56, /*hidden argument*/NULL);
}
IL_0130:
{
IL2CPP_END_FINALLY(295)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(295)
{
IL2CPP_JUMP_TBL(0x131, IL_0131)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0131:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_57 = V_0;
if (!L_57)
{
goto IL_017b;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * L_58 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get_Refreshed_15();
if (!L_58)
{
goto IL_017b;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_59 = V_0;
NullCheck(L_59);
RuntimeObject* L_60 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_59);
NullCheck(L_60);
RuntimeObject* L_61 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_60);
V_12 = L_61;
}
IL_0148:
try
{ // begin try (depth: 1)
{
goto IL_015b;
}
IL_014a:
{
RuntimeObject* L_62 = V_12;
NullCheck(L_62);
RuntimeObject * L_63 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_62);
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_RaiseRefresh_m75708E2026685B087D03E5383F08E65F1608332C(((Type_t *)CastclassClass((RuntimeObject*)L_63, Type_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
}
IL_015b:
{
RuntimeObject* L_64 = V_12;
NullCheck(L_64);
bool L_65 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_64);
if (L_65)
{
goto IL_014a;
}
}
IL_0164:
{
IL2CPP_LEAVE(0x17B, FINALLY_0166);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0166;
}
FINALLY_0166:
{ // begin finally (depth: 1)
{
RuntimeObject* L_66 = V_12;
V_11 = ((RuntimeObject*)IsInst((RuntimeObject*)L_66, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_67 = V_11;
if (!L_67)
{
goto IL_017a;
}
}
IL_0173:
{
RuntimeObject* L_68 = V_11;
NullCheck(L_68);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_68);
}
IL_017a:
{
IL2CPP_END_FINALLY(358)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(358)
{
IL2CPP_JUMP_TBL(0x17B, IL_017b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_017b:
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_Refresh_m7FAA7FE3754BE2B7DAA44DEC226F1451FEFB3143 (Assembly_t * ___assembly0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_Refresh_m7FAA7FE3754BE2B7DAA44DEC226F1451FEFB3143_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ModuleU5BU5D_t5A96D0D19A757DE3D576E4EB81BE0FD6326DBB6E* V_0 = NULL;
int32_t V_1 = 0;
{
Assembly_t * L_0 = ___assembly0;
bool L_1 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_0, (Assembly_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000a;
}
}
{
return;
}
IL_000a:
{
Assembly_t * L_2 = ___assembly0;
NullCheck(L_2);
ModuleU5BU5D_t5A96D0D19A757DE3D576E4EB81BE0FD6326DBB6E* L_3 = Assembly_GetModules_m83EF56F7C280AEA8B27779E1B438B5DBD65CD690(L_2, /*hidden argument*/NULL);
V_0 = L_3;
V_1 = 0;
goto IL_0021;
}
IL_0015:
{
ModuleU5BU5D_t5A96D0D19A757DE3D576E4EB81BE0FD6326DBB6E* L_4 = V_0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_Refresh_mF1572C257E75B5BBBA5468FE0FB982ACB33F8E90(L_7, /*hidden argument*/NULL);
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0021:
{
int32_t L_9 = V_1;
ModuleU5BU5D_t5A96D0D19A757DE3D576E4EB81BE0FD6326DBB6E* L_10 = V_0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))))
{
goto IL_0015;
}
}
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::RemoveAssociation(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RemoveAssociation_m1C3673E59BB67895F9462F6BD390BFFEA7CFEA63 (RuntimeObject * ___primary0, RuntimeObject * ___secondary1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_RemoveAssociation_m1C3673E59BB67895F9462F6BD390BFFEA7CFEA63_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
int32_t V_4 = 0;
RuntimeObject * V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject * L_0 = ___primary0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralE3B7C980D763196E9D134C3EC1C3DE0DED54E5CE, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_RemoveAssociation_m1C3673E59BB67895F9462F6BD390BFFEA7CFEA63_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___secondary1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralE059FC6904F0A3146139802D09BC08D1C34F0E25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeDescriptor_RemoveAssociation_m1C3673E59BB67895F9462F6BD390BFFEA7CFEA63_RuntimeMethod_var);
}
IL_001c:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_4 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__associationTable_3();
il2cpp_codegen_memory_barrier();
V_0 = L_4;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_5 = V_0;
if (!L_5)
{
goto IL_008b;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = V_0;
RuntimeObject * L_7 = ___primary0;
NullCheck(L_6);
RuntimeObject * L_8 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_6, L_7);
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_8, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var));
RuntimeObject* L_9 = V_1;
if (!L_9)
{
goto IL_008b;
}
}
{
RuntimeObject* L_10 = V_1;
V_2 = L_10;
V_3 = (bool)0;
}
IL_003b:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_11 = V_2;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_11, (bool*)(&V_3), /*hidden argument*/NULL);
RuntimeObject* L_12 = V_1;
NullCheck(L_12);
int32_t L_13 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_12);
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1));
goto IL_007a;
}
IL_004f:
{
RuntimeObject* L_14 = V_1;
int32_t L_15 = V_4;
NullCheck(L_14);
RuntimeObject * L_16 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_14, L_15);
NullCheck(((WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D *)CastclassClass((RuntimeObject*)L_16, WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D_il2cpp_TypeInfo_var)));
RuntimeObject * L_17 = VirtFuncInvoker0< RuntimeObject * >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, ((WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D *)CastclassClass((RuntimeObject*)L_16, WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D_il2cpp_TypeInfo_var)));
V_5 = L_17;
RuntimeObject * L_18 = V_5;
if (!L_18)
{
goto IL_006c;
}
}
IL_0067:
{
RuntimeObject * L_19 = V_5;
RuntimeObject * L_20 = ___secondary1;
if ((!(((RuntimeObject*)(RuntimeObject *)L_19) == ((RuntimeObject*)(RuntimeObject *)L_20))))
{
goto IL_0074;
}
}
IL_006c:
{
RuntimeObject* L_21 = V_1;
int32_t L_22 = V_4;
NullCheck(L_21);
InterfaceActionInvoker1< int32_t >::Invoke(10 /* System.Void System.Collections.IList::RemoveAt(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_21, L_22);
}
IL_0074:
{
int32_t L_23 = V_4;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1));
}
IL_007a:
{
int32_t L_24 = V_4;
if ((((int32_t)L_24) >= ((int32_t)0)))
{
goto IL_004f;
}
}
IL_007f:
{
IL2CPP_LEAVE(0x8B, FINALLY_0081);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0081;
}
FINALLY_0081:
{ // begin finally (depth: 1)
{
bool L_25 = V_3;
if (!L_25)
{
goto IL_008a;
}
}
IL_0084:
{
RuntimeObject* L_26 = V_2;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_26, /*hidden argument*/NULL);
}
IL_008a:
{
IL2CPP_END_FINALLY(129)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(129)
{
IL2CPP_JUMP_TBL(0x8B, IL_008b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_008b:
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::RemoveAssociations(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RemoveAssociations_mC32F5B12534541E6C2426ECCD01E3686DC5584FE (RuntimeObject * ___primary0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_RemoveAssociations_mC32F5B12534541E6C2426ECCD01E3686DC5584FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
{
RuntimeObject * L_0 = ___primary0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralE3B7C980D763196E9D134C3EC1C3DE0DED54E5CE, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_RemoveAssociations_mC32F5B12534541E6C2426ECCD01E3686DC5584FE_RuntimeMethod_var);
}
IL_000e:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_2 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__associationTable_3();
il2cpp_codegen_memory_barrier();
V_0 = L_2;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = V_0;
if (!L_3)
{
goto IL_0020;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = V_0;
RuntimeObject * L_5 = ___primary0;
NullCheck(L_4);
VirtActionInvoker1< RuntimeObject * >::Invoke(39 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_4, L_5);
}
IL_0020:
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::RemoveProvider(System.ComponentModel.TypeDescriptionProvider,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RemoveProvider_m6AC5F6B0977537915ED5D177715CF02DA4E6F3C6 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, Type_t * ___type1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_RemoveProvider_m6AC5F6B0977537915ED5D177715CF02DA4E6F3C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = ___provider0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral90C5D1358D128117989FC21F2897A25C99205E50, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_RemoveProvider_m6AC5F6B0977537915ED5D177715CF02DA4E6F3C6_RuntimeMethod_var);
}
IL_000e:
{
Type_t * L_2 = ___type1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0022;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TypeDescriptor_RemoveProvider_m6AC5F6B0977537915ED5D177715CF02DA4E6F3C6_RuntimeMethod_var);
}
IL_0022:
{
Type_t * L_5 = ___type1;
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_6 = ___provider0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_NodeRemove_mA49498A2B87FC037CE2A9C6D26CDF6043FEFC122(L_5, L_6, /*hidden argument*/NULL);
Type_t * L_7 = ___type1;
TypeDescriptor_RaiseRefresh_m75708E2026685B087D03E5383F08E65F1608332C(L_7, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::RemoveProvider(System.ComponentModel.TypeDescriptionProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RemoveProvider_m64D37F2DD488312D85314715D4F41DDCFF14D588 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_RemoveProvider_m64D37F2DD488312D85314715D4F41DDCFF14D588_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = ___provider0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral90C5D1358D128117989FC21F2897A25C99205E50, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_RemoveProvider_m64D37F2DD488312D85314715D4F41DDCFF14D588_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___instance1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeDescriptor_RemoveProvider_m64D37F2DD488312D85314715D4F41DDCFF14D588_RuntimeMethod_var);
}
IL_001c:
{
RuntimeObject * L_4 = ___instance1;
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_5 = ___provider0;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_NodeRemove_mA49498A2B87FC037CE2A9C6D26CDF6043FEFC122(L_4, L_5, /*hidden argument*/NULL);
RuntimeObject * L_6 = ___instance1;
TypeDescriptor_RaiseRefresh_m59D4457847547E4C32159C2F24E1DDDA1D34F60C(L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RemoveProviderTransparent_m01E159D92DF8529B013003E7490F438A20F9150D (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, Type_t * ___type1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_RemoveProviderTransparent_m01E159D92DF8529B013003E7490F438A20F9150D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = ___provider0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral90C5D1358D128117989FC21F2897A25C99205E50, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_RemoveProviderTransparent_m01E159D92DF8529B013003E7490F438A20F9150D_RuntimeMethod_var);
}
IL_000e:
{
Type_t * L_2 = ___type1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0022;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TypeDescriptor_RemoveProviderTransparent_m01E159D92DF8529B013003E7490F438A20F9150D_RuntimeMethod_var);
}
IL_0022:
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_5 = ___provider0;
Type_t * L_6 = ___type1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_RemoveProvider_m6AC5F6B0977537915ED5D177715CF02DA4E6F3C6(L_5, L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_RemoveProviderTransparent_m26D6ACC950A85E69D6EB21C0F1DBE28789E3E043 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ___provider0, RuntimeObject * ___instance1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_RemoveProviderTransparent_m26D6ACC950A85E69D6EB21C0F1DBE28789E3E043_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = ___provider0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral90C5D1358D128117989FC21F2897A25C99205E50, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_RemoveProviderTransparent_m26D6ACC950A85E69D6EB21C0F1DBE28789E3E043_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___instance1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeDescriptor_RemoveProviderTransparent_m26D6ACC950A85E69D6EB21C0F1DBE28789E3E043_RuntimeMethod_var);
}
IL_001c:
{
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_4 = ___provider0;
RuntimeObject * L_5 = ___instance1;
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
TypeDescriptor_RemoveProvider_m64D37F2DD488312D85314715D4F41DDCFF14D588(L_4, L_5, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.ComponentModel.TypeDescriptor::ShouldHideMember(System.ComponentModel.MemberDescriptor,System.Attribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeDescriptor_ShouldHideMember_m7530A7627AB76EB292A22E86DA7D4B1A8DFEAF01 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___member0, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * ___attribute1, const RuntimeMethod* method)
{
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_0 = NULL;
{
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_0 = ___member0;
if (!L_0)
{
goto IL_0006;
}
}
{
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_1 = ___attribute1;
if (L_1)
{
goto IL_0008;
}
}
IL_0006:
{
return (bool)1;
}
IL_0008:
{
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_2 = ___member0;
NullCheck(L_2);
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_3 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, L_2);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_4 = ___attribute1;
NullCheck(L_4);
Type_t * L_5 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_4, /*hidden argument*/NULL);
NullCheck(L_3);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_6 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_3, L_5);
V_0 = L_6;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_7 = V_0;
if (L_7)
{
goto IL_0027;
}
}
{
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_8 = ___attribute1;
NullCheck(L_8);
bool L_9 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Attribute::IsDefaultAttribute() */, L_8);
return (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
}
IL_0027:
{
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_10 = ___attribute1;
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_11 = V_0;
NullCheck(L_10);
bool L_12 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(5 /* System.Boolean System.Attribute::Match(System.Object) */, L_10, L_11);
return (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.ComponentModel.TypeDescriptor::SortDescriptorArray(System.Collections.IList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_SortDescriptorArray_mF1BF8FDE18108198B6E5CF6B31909A7F544F649C (RuntimeObject* ___infos0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor_SortDescriptorArray_mF1BF8FDE18108198B6E5CF6B31909A7F544F649C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___infos0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralE06528401F91994FE8F0216AE8D798BA948D62F0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeDescriptor_SortDescriptorArray_mF1BF8FDE18108198B6E5CF6B31909A7F544F649C_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___infos0;
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_3 = ArrayList_Adapter_m72B987518E0C05216B4AD5BF8B54047FBC43F56E(L_2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D_il2cpp_TypeInfo_var);
MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D * L_4 = ((MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D_StaticFields*)il2cpp_codegen_static_fields_for(MemberDescriptorComparer_t08208596E93DE2FB4472AB31B0316F98B288506D_il2cpp_TypeInfo_var))->get_Instance_0();
NullCheck(L_3);
VirtActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void System.Collections.ArrayList::Sort(System.Collections.IComparer) */, L_3, L_4);
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::Trace(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_Trace_mA9D5446CDED02A129B18F812E6860DE63EE68CBB (String_t* ___message0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.ComponentModel.TypeDescriptor::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor__cctor_m93DDEDF2D6E089FEFA7A29B425C854E1E04E6145 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeDescriptor__cctor_m93DDEDF2D6E089FEFA7A29B425C854E1E04E6145_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * L_0 = (WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF *)il2cpp_codegen_object_new(WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF_il2cpp_TypeInfo_var);
WeakHashtable__ctor_mE6517A855F67EE9584AF60DB7BC3AF5B2D58C249(L_0, /*hidden argument*/NULL);
((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->set__providerTable_0(L_0);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_1, /*hidden argument*/NULL);
((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->set__providerTypeTable_1(L_1);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_2, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->set__defaultProviders_2(L_2);
BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 * L_3 = (BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 *)il2cpp_codegen_object_new(BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0_il2cpp_TypeInfo_var);
BooleanSwitch__ctor_m6F066AB4D9A1AF132569B625CB857AE671F94C0B(L_3, _stringLiteral79292189B5C0A7B6DE3BDA58667E26472826017E, _stringLiteralDFC7BE8AA4DBFC6FFC24F7485405960CE6429E88, /*hidden argument*/NULL);
((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->set_TraceDescriptor_6(L_3);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_4 = (GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*)(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*)SZArrayNew(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF_il2cpp_TypeInfo_var, (uint32_t)3);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_5 = L_4;
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_6 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (Guid_t )L_6);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_7 = L_5;
Guid_t L_8 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (Guid_t )L_8);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_9 = L_7;
Guid_t L_10 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (Guid_t )L_10);
((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->set__pipelineInitializeKeys_10(L_9);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_11 = (GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*)(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*)SZArrayNew(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF_il2cpp_TypeInfo_var, (uint32_t)3);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_12 = L_11;
Guid_t L_13 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (Guid_t )L_13);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_14 = L_12;
Guid_t L_15 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(1), (Guid_t )L_15);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_16 = L_14;
Guid_t L_17 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(2), (Guid_t )L_17);
((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->set__pipelineMergeKeys_11(L_16);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_18 = (GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*)(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*)SZArrayNew(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF_il2cpp_TypeInfo_var, (uint32_t)3);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_19 = L_18;
Guid_t L_20 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (Guid_t )L_20);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_21 = L_19;
Guid_t L_22 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(1), (Guid_t )L_22);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_23 = L_21;
Guid_t L_24 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(2), (Guid_t )L_24);
((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->set__pipelineFilterKeys_12(L_23);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_25 = (GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*)(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*)SZArrayNew(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF_il2cpp_TypeInfo_var, (uint32_t)3);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_26 = L_25;
Guid_t L_27 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_26);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (Guid_t )L_27);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_28 = L_26;
Guid_t L_29 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_28);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(1), (Guid_t )L_29);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_30 = L_28;
Guid_t L_31 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
NullCheck(L_30);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(2), (Guid_t )L_31);
((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->set__pipelineAttributeFilterKeys_13(L_30);
RuntimeObject * L_32 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_32, /*hidden argument*/NULL);
((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->set__internalSyncObject_14(L_32);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_get_Count_mAA1EA8D4BE590EE7F7E469876FB503F2A0F0E4B0_inline (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_propCount_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* PropertyTabAttribute_get_TabScopes_m9A00F379D99A89E766BA35314A680F98A05FB033_inline (PropertyTabAttribute_tCC9C7766C8A49D5FEDB5C51D2391A9301F3CCBE8 * __this, const RuntimeMethod* method)
{
{
PropertyTabScopeU5BU5D_t06DD8B6326FEE6EB77AA915202CFE3C2ABAC7260* L_0 = __this->get_tabScopes_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ReadOnlyAttribute_get_IsReadOnly_m0626C74195DDB464E767AFE4CB8C205C267C8866_inline (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_isReadOnly_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool RecommendedAsConfigurableAttribute_get_RecommendedAsConfigurable_m4C6A004F4A4059573D320A02842B43A60B3F1B92_inline (RecommendedAsConfigurableAttribute_t193A3D07F4735EB535DD6960352C6C9A38E12B55 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_recommendedAsConfigurable_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * AmbientValueAttribute_get_Value_mAF197402AF2951D9F41882A7E8E2AC99946EF5DF_inline (AmbientValueAttribute_t9B10538B74BF90773C9F720E1D1E1B10BC63715E * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_value_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AttributeProviderAttribute_get_TypeName_m83FA0949577D518981558E3A01BA14647565A0DC_inline (AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__typeName_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AttributeProviderAttribute_get_PropertyName_mC7A169CDA2E8BE87946A71872C41F0C768D1C80B_inline (AttributeProviderAttribute_t8EC0C13032FE51365470EF1C6FDE9E8B1C33B068 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__propertyName_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline (Exception_t * __this, const RuntimeMethod* method)
{
{
Exception_t * L_0 = __this->get__innerException_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * ExtenderProvidedPropertyAttribute_get_ReceiverType_mE35ED6058DEBE1160D17BF385E2C46E161085E33_inline (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_receiverType_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__key_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ProvidePropertyAttribute_get_ReceiverTypeName_m66AECE2E8CB9069B1A1EC02C17BE84B4D176BB82_inline (ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_receiverTypeName_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ProvidePropertyAttribute_get_PropertyName_mCFB6B8ECE17E7FFD9FA7D5EE4FB0FACEDE552AEC_inline (ProvidePropertyAttribute_tF58AE8F88029C5D1249A8A149173482A9BB08BC3 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_propertyName_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * ReflectPropertyDescriptor_ExtenderGetReceiverType_mEACD75A498F4FEA40302981092B93DBBC95EB1FA_inline (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_receiverType_43();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8_inline (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_typeName_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DefaultEventAttribute_get_Name_m1134D3145164417819FEABD3FB749DB89E09A098_inline (DefaultEventAttribute_tD1A10417C052CE865C43023F6DCC33CF54D3D846 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_name_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DefaultPropertyAttribute_get_Name_mE3DA224DF16CD92E047FF0CD3DAC7157300B82EB_inline (DefaultPropertyAttribute_t4C049F2905F3ABDE9B9592627B6133AE49050AA7 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_name_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EditorAttribute_get_EditorTypeName_m0C6CD2A9C2905C7E774825F77B26BF6D842C6090_inline (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_typeName_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EditorAttribute_get_EditorBaseTypeName_m41C1E4DD17CF8A2C14A8C8A8E783687FF2C241D1_inline (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_baseTypeName_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_stringLength_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t RefreshPropertiesAttribute_get_RefreshProperties_m032066929987C4135416100E001053C6E2EC76A6_inline (RefreshPropertiesAttribute_tC6E685EE61C7BFE437F9ABAE7AB9B5B83FEB3DC1 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_refresh_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool RunInstallerAttribute_get_RunInstaller_m29805E321147B984D5A79337CEE0882E99706EF9_inline (RunInstallerAttribute_t40A160B1D7133CC1797AD183B581E785D6F99CB3 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_runInstaller_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * AsyncCompletedEventArgs_get_UserState_mD4969188EBD6FB528946BA46B875A0CD619FC240_inline (AsyncCompletedEventArgs_tADCBE47368F4D8B198B46D332B27EE38C8B5F8B7 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_userState_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool SettingsBindableAttribute_get_Bindable_m5BAAD91FCA8DE2EF3ACCEBB8B7C1419A1A4F820D_inline (SettingsBindableAttribute_t85FF311AAFAED1C12B3773CB10D8D29DAB791664 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__bindable_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ToolboxItemFilterAttribute_get_FilterType_mFCBA328F82DDB9F4DEBE1E0058858D94988B57E1_inline (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_filterType_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ToolboxItemFilterAttribute_get_FilterString_m1A808BD26BC9CB3A41704B4E666590DA2CA88B84_inline (ToolboxItemFilterAttribute_tB15560039BF68E3DC316F8718947E3E7A54C6910 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_filterString_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* ComNativeDescriptionProvider_get_Handler_mFDAA26D067DE2DE3A878E18B6E305D122366C6F9_inline (ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__handler_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ComNativeDescriptionProvider_set_Handler_m413D6825B451C480C8311EEB516FDE590D405542_inline (ComNativeDescriptionProvider_tC63084A6A9080BAA8FB16E20E2847C18E5E3907D * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set__handler_2(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TypeDescriptionProviderAttribute_get_TypeName_m6C47AACE737391F28BD1C0A762AABBECA8DB8F75_inline (TypeDescriptionProviderAttribute_t387A574F4C3912AEA8435C46CC377BDA93F29034 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__typeName_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DesignerAttribute_get_DesignerBaseTypeName_mAD0CC16E016DAE5EB60C58A0B7BC5E5361BF1525_inline (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_designerBaseTypeName_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DesignerAttribute_get_DesignerTypeName_mD51D180F6C7BCA066BE47F54C6082B78088F662B_inline (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_designerTypeName_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ExtenderProvidedPropertyAttribute_get_ExtenderProperty_mB56FFEF61D8278AFFA0FB91710E1A37795738E47_inline (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method)
{
{
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_0 = __this->get_extenderProperty_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* ExtenderProvidedPropertyAttribute_get_Provider_m54BFFEFF3AF82BD3F36AC3A1D473FAC53CF368C6_inline (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_provider_1();
return L_0;
}
}